autocomplete-loading.module.css

Same filename in this branch
  1. 11.x core/themes/olivero/css/components/autocomplete-loading.module.css
  2. 11.x core/themes/stable9/css/system/components/autocomplete-loading.module.css
  3. 11.x core/themes/claro/css/components/autocomplete-loading.module.css
  4. 11.x core/modules/system/css/components/autocomplete-loading.module.css
  5. 11.x core/misc/components/autocomplete-loading.module.css
Same filename and directory in other branches
  1. 9 core/themes/olivero/css/components/autocomplete-loading.module.css
  2. 9 core/themes/stable9/css/system/components/autocomplete-loading.module.css
  3. 9 core/themes/claro/css/components/autocomplete-loading.module.css
  4. 9 core/themes/stable/css/system/components/autocomplete-loading.module.css
  5. 9 core/modules/system/css/components/autocomplete-loading.module.css
  6. 8.9.x core/themes/claro/css/components/autocomplete-loading.module.css
  7. 8.9.x core/themes/stable/css/system/components/autocomplete-loading.module.css
  8. 8.9.x core/modules/system/css/components/autocomplete-loading.module.css
  9. 10 core/themes/olivero/css/components/autocomplete-loading.module.css
  10. 10 core/themes/stable9/css/system/components/autocomplete-loading.module.css
  11. 10 core/themes/claro/css/components/autocomplete-loading.module.css
  12. 10 core/modules/system/css/components/autocomplete-loading.module.css

Visual styles for animated throbber.

See also

autocomplete.js

File

core/themes/stable9/css/core/components/autocomplete-loading.module.css

View source
  1. /**
  2. * @file
  3. * Visual styles for animated throbber.
  4. *
  5. * @see autocomplete.js
  6. */
  7. .js input.form-autocomplete {
  8. background-image: url(../../../../../misc/throbber-inactive.png);
  9. background-repeat: no-repeat;
  10. background-position: 100% center; /* LTR */
  11. }
  12. .js[dir="rtl"] input.form-autocomplete {
  13. background-position: 0% center;
  14. }
  15. .js input.form-autocomplete.ui-autocomplete-loading {
  16. background-image: url(../../../../../misc/throbber-active.gif);
  17. background-position: 100% center; /* LTR */
  18. }
  19. .js[dir="rtl"] input.form-autocomplete.ui-autocomplete-loading {
  20. background-position: 0% center;
  21. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.