autocomplete-loading.module.css
Same filename in this branch
Same filename in other branches
- 8.9.x core/themes/claro/css/components/autocomplete-loading.module.css
- 8.9.x core/themes/stable/css/system/components/autocomplete-loading.module.css
- 8.9.x core/modules/system/css/components/autocomplete-loading.module.css
- 10 core/themes/olivero/css/components/autocomplete-loading.module.css
- 10 core/themes/stable9/css/system/components/autocomplete-loading.module.css
- 10 core/themes/claro/css/components/autocomplete-loading.module.css
- 10 core/modules/system/css/components/autocomplete-loading.module.css
- 11.x core/themes/olivero/css/components/autocomplete-loading.module.css
- 11.x core/themes/stable9/css/system/components/autocomplete-loading.module.css
- 11.x core/themes/claro/css/components/autocomplete-loading.module.css
- 11.x core/modules/system/css/components/autocomplete-loading.module.css
- 11.x core/misc/components/autocomplete-loading.module.css
- 11.x core/themes/stable9/css/core/components/autocomplete-loading.module.css
- 10 core/misc/components/autocomplete-loading.module.css
- 10 core/themes/stable9/css/core/components/autocomplete-loading.module.css
Visual styles for autocomplete input field.
File
-
core/
themes/ olivero/ css/ components/ autocomplete-loading.module.css
View source
- /*
- * DO NOT EDIT THIS FILE.
- * See the following change record for more information,
- * https://www.drupal.org/node/3084859
- * @preserve
- */
-
- /**
- * @file
- * Visual styles for autocomplete input field.
- */
-
- :root { /* 18 18 */
- }
-
- html[dir="ltr"].js .form-autocomplete {
- padding-right: 3.375rem;
- }
-
- html[dir="rtl"].js .form-autocomplete {
- padding-left: 3.375rem;
- }
-
- html.js .form-autocomplete {
- background-color: #fff;
- background-image: url("../../images/magnifying-glass.svg");
- background-repeat: no-repeat;
- background-position: right 18px center; /* LTR */
- }
-
- html.js .form-autocomplete:disabled {
- background-color: #f1f4f7;
- }
-
- html.js .form-autocomplete.ui-autocomplete-loading {
- background: url("../../images/throbber.svg") no-repeat right 1.125rem center;
- }
-
- html.js[dir="rtl"] .form-autocomplete {
- background-color: #fff;
- background-image: url("../../images/magnifying-glass.svg");
- background-repeat: no-repeat;
- background-position: left 18px center;
- }
-
- html.js[dir="rtl"] .form-autocomplete:disabled {
- background-color: #f1f4f7;
- }
-
- html.js[dir="rtl"] .form-autocomplete.ui-autocomplete-loading {
- background: url("../../images/throbber.svg") no-repeat left 1.125rem center;
- }
-
- /* IE11 does not animate inline SVG. */
-
- /* rtl:begin:ignore */
-
- /* stylelint-disable-next-line selector-type-no-unknown */
-
- _:-ms-fullscreen,
- html[dir=ltr].js .form-autocomplete.ui-autocomplete-loading {
- background: url("../../images/throbber.gif") no-repeat right 1.125rem center / 1.125rem 1.125rem;
- }
-
- /* stylelint-disable-next-line selector-type-no-unknown */
-
- _:-ms-fullscreen,
- html[dir=rtl].js .form-autocomplete.ui-autocomplete-loading {
- background: url("../../images/throbber.gif") no-repeat left 1.125rem center / 1.125rem 1.125rem;
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.