You are here

file.css in Drupal 10

Extends styles of the file link.

File

core/themes/claro/css/components/file.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. * Extends styles of the file link.
  10. */
  11. .file {
  12. min-height: calc(var(--space-m) + 0.0625rem);
  13. padding-left: var(--space-l); /* LTR */
  14. background-position: left 0.0625rem;
  15. background-size: var(--space-m) var(--space-m);
  16. font-size: var(--font-size-s);
  17. line-height: calc(18rem / 16);
  18. }
  19. [dir="rtl"] .file {
  20. padding-right: var(--space-l);
  21. }
  22. .file__size {
  23. color: var(--color-gray-800);
  24. }