There seems to be a problem with select dropdowns that contain icons or flags. I can see this problem happening in the docs itself. (I use Chrome).

It seems this is caused by display: inline-block in the <i> element. I fixed this problem with:
.ui.dropdown .menu > .item > .flag {
display: inline;
}