You are here

progress.css in Drupal 10

Progress bar specific styles.

File

core/themes/olivero/css/components/progress.css
View source
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/3084859
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Progress bar specific styles.
  10. */
  11. /*
  12. * Media query breakpoints.
  13. * Processed by postcss/postcss-custom-media.
  14. */
  15. /* Navigation related breakpoints */
  16. /* Grid related breakpoints */
  17. /* Grid shifts from 6 to 14 columns. */
  18. /* Width of the entire grid maxes out. */
  19. .progress__track {
  20. overflow: hidden;
  21. height: var(--sp);
  22. border: 1px solid var(--color--primary-40);
  23. border-radius: var(--border-radius);
  24. }
  25. .progress__bar {
  26. height: var(--sp);
  27. background-color: var(--color--primary-40);
  28. }
  29. [dir="ltr"] .progress__percentage {
  30. margin-left: 1rem;
  31. }
  32. [dir="rtl"] .progress__percentage {
  33. margin-right: 1rem;
  34. }