off-canvas.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. * Settings tray specific styles.
  10. */
  11. [dir="ltr"] #drupal-off-canvas .form-type-boolean {
  12. margin-left: 0;
  13. }
  14. [dir="rtl"] #drupal-off-canvas .form-type-boolean {
  15. margin-right: 0;
  16. }
  17. #drupal-off-canvas .form-type-boolean {
  18. line-height: 1.125rem;
  19. }
  20. #drupal-off-canvas .form-type-boolean input[type="checkbox"],
  21. #drupal-off-canvas .form-type-boolean input[type="radio"] {
  22. float: none;
  23. width: 0.84375rem;
  24. height: 0.84375rem;
  25. transform: none;
  26. vertical-align: middle;
  27. }
  28. [dir="ltr"] #drupal-off-canvas .form-type-boolean .form-item__description {
  29. margin-left: 0;
  30. }
  31. [dir="rtl"] #drupal-off-canvas .form-type-boolean .form-item__description {
  32. margin-right: 0;
  33. }
  34. /* Necessary for Safari. */
  35. #drupal-off-canvas .olivero-details {
  36. border-top: solid 1px rgba(255, 255, 255, 0.25);
  37. border-bottom: solid 1px rgba(255, 255, 255, 0.25);
  38. box-shadow: none;
  39. }
  40. #drupal-off-canvas .olivero-details__wrapper {
  41. padding: 1.25rem;
  42. }
  43. /* Necessary for Safari. */
  44. #drupal-off-canvas .olivero-details__summary {
  45. display: block;
  46. list-style: disc outside none;
  47. list-style: initial;
  48. }
  49. #drupal-off-canvas .olivero-details__summary:focus {
  50. outline: solid 1px rgba(255, 255, 255, 0.25);
  51. }
  52. #drupal-off-canvas .olivero-details__summary:before {
  53. content: none;
  54. }
  55. #drupal-off-canvas .olivero-details__summary::-webkit-details-marker {
  56. display: inline-block;
  57. }
  58. /* Necessary for IE11. */
  59. #drupal-off-canvas .olivero-details__summary .details-title:before {
  60. content: none;
  61. }
  62. /* Necessary for Firefox. */
  63. @supports (list-style-type: disclosure-closed) {
  64. #drupal-off-canvas .olivero-details__summary {
  65. display: list-item;
  66. list-style-position: inside;
  67. list-style-type: disclosure-closed;
  68. }
  69. }
  70. /* Necessary for Firefox. */
  71. @supports (list-style-type: disclosure-open) {
  72. #drupal-off-canvas .olivero-details[open] .olivero-details__summary {
  73. list-style-type: disclosure-open;
  74. }
  75. }
  76. /* Necessary for Safari. */
  77. #drupal-off-canvas div {
  78. display: block;
  79. color: #ddd;
  80. font-size: 0.875rem;
  81. }