autocomplete-loading.module.pcss.css
Same filename in this branch
Same filename in other branches
- 8.9.x core/themes/claro/css/components/autocomplete-loading.module.pcss.css
- 10 core/themes/olivero/css/components/autocomplete-loading.module.pcss.css
- 10 core/themes/claro/css/components/autocomplete-loading.module.pcss.css
- 11.x core/themes/olivero/css/components/autocomplete-loading.module.pcss.css
- 11.x core/themes/claro/css/components/autocomplete-loading.module.pcss.css
Visual styles for autocomplete input field.
File
-
core/
themes/ olivero/ css/ components/ autocomplete-loading.module.pcss.css
View source
- /**
- * @file
- * Visual styles for autocomplete input field.
- */
-
- @import "../base/variables.pcss.css";
-
- :root {
- --autocomplete-search-icon-url: url("../../images/magnifying-glass.svg");
- --autocomplete-throbber-icon-url: url("../../images/throbber.svg");
- --autocomplete-throbber-IE-icon-url: url("../../images/throbber.gif");
- --autocomplete-throbber-IE-size: 1.125rem 1.125rem; /* 18 18 */
- --autocomplete-icon-right-offset: var(--sp1);
- }
-
- html.js .form-autocomplete {
- padding-inline-end: var(--sp3);
- background-color: var(--color--white);
- background-image: var(--autocomplete-search-icon-url);
- background-repeat: no-repeat;
- background-position: right var(--autocomplete-icon-right-offset) center; /* LTR */
-
- &:disabled {
- background-color: var(--color--gray-90);
- }
-
- &.ui-autocomplete-loading {
- background: var(--autocomplete-throbber-icon-url) no-repeat right var(--autocomplete-icon-right-offset) center;
- }
- }
-
- html.js[dir="rtl"] .form-autocomplete {
- background-color: var(--color--white);
- background-image: var(--autocomplete-search-icon-url);
- background-repeat: no-repeat;
- background-position: left var(--autocomplete-icon-right-offset) center;
-
- &:disabled {
- background-color: var(--color--gray-90);
- }
-
- &.ui-autocomplete-loading {
- background: var(--autocomplete-throbber-icon-url) no-repeat left var(--autocomplete-icon-right-offset) 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: var(--autocomplete-throbber-IE-icon-url) no-repeat right var(--autocomplete-icon-right-offset) center / var(--autocomplete-throbber-IE-size);
- }
-
- /* stylelint-disable-next-line selector-type-no-unknown */
- _:-ms-fullscreen,
- html[dir=rtl].js .form-autocomplete.ui-autocomplete-loading {
- background: var(--autocomplete-throbber-IE-icon-url) no-repeat left var(--autocomplete-icon-right-offset) center / var(--autocomplete-throbber-IE-size);
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.