Issue #2395853 by LewisNyman, Manjit.Singh, nlisgo, pjbaert, Branislav Bujisic, pguillard, gavin.hughes, onelittlebecca, alisonjo2786, camoa, DickJohnson, manmohandream, davidhernandez, kgoel: Split system.module.css and system.theme.css files into SMACSS style components
2015-08-07 11:39:17 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Visual styles for animated throbber.
|
|
|
|
*
|
|
|
|
* @see autocomplete.js
|
|
|
|
*/
|
|
|
|
|
|
|
|
.js input.form-autocomplete {
|
2024-04-24 00:42:45 +00:00
|
|
|
background-image: url(../throbber-inactive.png);
|
Issue #2395853 by LewisNyman, Manjit.Singh, nlisgo, pjbaert, Branislav Bujisic, pguillard, gavin.hughes, onelittlebecca, alisonjo2786, camoa, DickJohnson, manmohandream, davidhernandez, kgoel: Split system.module.css and system.theme.css files into SMACSS style components
2015-08-07 11:39:17 +00:00
|
|
|
background-repeat: no-repeat;
|
2019-04-01 17:16:16 +00:00
|
|
|
background-position: 100% center; /* LTR */
|
Issue #2395853 by LewisNyman, Manjit.Singh, nlisgo, pjbaert, Branislav Bujisic, pguillard, gavin.hughes, onelittlebecca, alisonjo2786, camoa, DickJohnson, manmohandream, davidhernandez, kgoel: Split system.module.css and system.theme.css files into SMACSS style components
2015-08-07 11:39:17 +00:00
|
|
|
}
|
|
|
|
.js[dir="rtl"] input.form-autocomplete {
|
|
|
|
background-position: 0% center;
|
|
|
|
}
|
|
|
|
.js input.form-autocomplete.ui-autocomplete-loading {
|
2024-04-24 00:42:45 +00:00
|
|
|
background-image: url(../throbber-active.gif);
|
Issue #2395853 by LewisNyman, Manjit.Singh, nlisgo, pjbaert, Branislav Bujisic, pguillard, gavin.hughes, onelittlebecca, alisonjo2786, camoa, DickJohnson, manmohandream, davidhernandez, kgoel: Split system.module.css and system.theme.css files into SMACSS style components
2015-08-07 11:39:17 +00:00
|
|
|
background-position: 100% center; /* LTR */
|
|
|
|
}
|
|
|
|
.js[dir="rtl"] input.form-autocomplete.ui-autocomplete-loading {
|
|
|
|
background-position: 0% center;
|
|
|
|
}
|