Browse Source

Fix loading dropdown rules

pull/2300/head
jlukic 10 years ago
parent
commit
dac96b485b
1 changed files with 10 additions and 3 deletions
  1. 13
      src/definitions/modules/dropdown.less

13
src/definitions/modules/dropdown.less

@ -774,12 +774,13 @@ select.ui.dropdown {
content: ''; content: '';
top: 50%; top: 50%;
left: 50%; left: 50%;
box-shadow: 0px 0px 0px 1px transparent;
margin: @loaderMargin; margin: @loaderMargin;
width: @loaderSize; width: @loaderSize;
height: @loaderSize; height: @loaderSize;
animation: button-spin @loaderSpeed linear;
animation: dropdown-spin @loaderSpeed linear;
animation-iteration-count: infinite; animation-iteration-count: infinite;
border-radius: @circularRadius; border-radius: @circularRadius;
@ -787,10 +788,16 @@ select.ui.dropdown {
border-color: @loaderLineColor transparent transparent; border-color: @loaderLineColor transparent transparent;
border-style: solid; border-style: solid;
border-width: @loaderLineWidth; border-width: @loaderLineWidth;
box-shadow: 0px 0px 0px 1px transparent;
} }
@keyframes dropdown-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/*-------------------- /*--------------------

Loading…
Cancel
Save