utility.css

Same filename and directory in other branches
  1. 11.x core/misc/dialog/off-canvas/css/utility.css
  2. 10 core/misc/dialog/off-canvas/css/utility.css

Utility classes.

File

core/themes/olivero/css/base/utility.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. * Utility classes.
  10. */
  11. /*
  12. ie11-autorow
  13. IE11 does not automatically place new rows, which leads to overlapping
  14. content. We can work around this (when we know that each grid item is
  15. going to span the full width) by setting each child to a new row.
  16. */
  17. .ie11-autorow > *:nth-child(1) {
  18. -ms-grid-row: 1;
  19. }
  20. .ie11-autorow > *:nth-child(2) {
  21. -ms-grid-row: 2;
  22. }
  23. .ie11-autorow > *:nth-child(3) {
  24. -ms-grid-row: 3;
  25. }
  26. .ie11-autorow > *:nth-child(4) {
  27. -ms-grid-row: 4;
  28. }
  29. .ie11-autorow > *:nth-child(5) {
  30. -ms-grid-row: 5;
  31. }
  32. .ie11-autorow > *:nth-child(6) {
  33. -ms-grid-row: 6;
  34. }
  35. .ie11-autorow > *:nth-child(7) {
  36. -ms-grid-row: 7;
  37. }
  38. .ie11-autorow > *:nth-child(8) {
  39. -ms-grid-row: 8;
  40. }
  41. .ie11-autorow > *:nth-child(9) {
  42. -ms-grid-row: 9;
  43. }
  44. .ie11-autorow > *:nth-child(10) {
  45. -ms-grid-row: 10;
  46. }

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