system-admin--modules.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * System admin module: modules page.
  10. */
  11. .system-modules thead > tr {
  12. border: 0;
  13. }
  14. .system-modules div.incompatible {
  15. font-weight: bold;
  16. }
  17. .system-modules td.checkbox {
  18. width: 4%;
  19. min-width: 25px;
  20. padding-left: 1rem; /* LTR */
  21. }
  22. [dir="rtl"] .system-modules td.checkbox {
  23. padding-right: 1rem;
  24. }
  25. .system-modules td.module {
  26. width: 25%;
  27. }
  28. .system-modules td {
  29. vertical-align: top;
  30. }
  31. .system-modules label,
  32. .system-modules-uninstall label {
  33. color: #1d1d1d;
  34. font-size: 1.15em;
  35. }
  36. .system-modules details {
  37. color: #5c5c5b;
  38. }
  39. .system-modules details[open] {
  40. overflow: visible;
  41. height: auto;
  42. white-space: normal;
  43. }
  44. .system-modules details[open] summary .text {
  45. text-transform: none;
  46. -webkit-hyphens: auto;
  47. -ms-hyphens: auto;
  48. hyphens: auto;
  49. }
  50. .system-modules td details a {
  51. color: #5c5c5b;
  52. border: 0;
  53. }
  54. .system-modules td details {
  55. margin: 0;
  56. border: 0;
  57. }
  58. .system-modules td details summary {
  59. padding: 0;
  60. cursor: default;
  61. text-transform: none;
  62. font-weight: normal;
  63. }
  64. .system-modules td {
  65. padding-left: 0; /* LTR */
  66. }
  67. [dir="rtl"] .system-modules td {
  68. padding-right: 0;
  69. padding-left: 12px;
  70. }
  71. @media screen and (max-width: 40em) {
  72. .system-modules td.name {
  73. width: 20%;
  74. }
  75. .system-modules td.description {
  76. width: 40%;
  77. }
  78. }
  79. .system-modules .requirements {
  80. max-width: 490px;
  81. padding: 5px 0;
  82. }
  83. .system-modules .links {
  84. overflow: hidden; /* prevents collapse */
  85. }
  86. .system-modules .checkbox {
  87. margin: 0 5px;
  88. }
  89. .system-modules .checkbox .form-item {
  90. margin-top: 0;
  91. margin-bottom: 0;
  92. }
  93. .admin-requirements,
  94. .admin-required {
  95. color: #666;
  96. font-size: 0.9em;
  97. }
  98. .admin-enabled {
  99. color: #080;
  100. }
  101. .admin-missing {
  102. color: #f00;
  103. }
  104. .module-link {
  105. display: block;
  106. float: left; /* LTR */
  107. margin-top: 2px;
  108. padding: 2px 20px;
  109. white-space: nowrap;
  110. }
  111. [dir="rtl"] .module-link {
  112. float: right;
  113. }
  114. .module-link-help {
  115. background: url(../../images/core/787878/questionmark-disc.svg) 0 50% no-repeat; /* LTR */
  116. }
  117. [dir="rtl"] .module-link-help {
  118. background-position: top 50% right 0;
  119. }
  120. .module-link-permissions {
  121. background: url(../../images/core/787878/key.svg) 0 50% no-repeat; /* LTR */
  122. }
  123. [dir="rtl"] .module-link-permissions {
  124. background-position: top 50% right 0;
  125. }
  126. .module-link-configure {
  127. background: url(../../images/core/787878/cog.svg) 0 50% no-repeat; /* LTR */
  128. }
  129. [dir="rtl"] .module-link-configure {
  130. background-position: top 50% right 0;
  131. }