Same filename and directory in other branches
  1. 5.x modules/system/admin.css
/*
** Formatting for administration page
*/
div.admin-panel {
  margin: 0;
  padding: 5px 5px 15px 5px;
}

div.admin-panel .description {
  margin: 0 0 3px;
  padding: 2px 0 3px 0;
}

div.admin-panel .body {
  padding: 0 4px 2px 8px; /* LTR */
}

div.admin {
  padding-top: 15px;
}

div.admin .left {
  float: left;
  width: 47%;
  margin-left: 1em;
}
div.admin .right {
  float: right;
  width: 47%;
  margin-right: 1em;
}

div.admin .expert-link {
  text-align: right; /* LTR */
  margin-right: 1em; /* LTR */
  padding-right: 4px; /* LTR */
}

table.package {
  width: 100%;
}
table.package .description {
  width: 100%;
}
table.package .version {
  direction: ltr;
}
div.admin-dependencies, div.admin-required {
  font-size: 0.9em;
  color: #444;
}
span.admin-disabled {
  color: #800;
}
span.admin-enabled {
  color: #080;
}
span.admin-missing {
  color: #f00;
}

/**
 * Formatting for status report
 */
table.system-status-report th {
  border-bottom: 1px solid #ccc;
}
table.system-status-report th, table.system-status-report tr.merge-up td {
  padding-left: 30px; /* LTR */
}
table.system-status-report th {
  background-repeat: no-repeat;
  background-position: 5px 50%; /* LTR */
  padding-top: 6px;
  padding-bottom: 6px;
}
table.system-status-report tr.error th {
  background-image: url(../../misc/watchdog-error.png);
}
table.system-status-report tr.warning th {
  background-image: url(../../misc/watchdog-warning.png);
}
table.system-status-report tr.ok th {
  background-image: url(../../misc/watchdog-ok.png);
}

/**
 * Formatting for theme configuration
 */
.theme-settings-left {
  float: left;
  width: 49%;
}
.theme-settings-right {
  float: right;
  width: 49%;
}
.theme-settings-bottom {
  clear: both;
}

/**
 * Formatting for theme overview
 */
table.screenshot {
  margin-right: 1em; /* LTR */
}
.theme-info h2 {
  margin-bottom: 0;
}
.theme-info p {
  margin-top: 0;
}


/**
 * Date and time settings page
 */
.date-container {
  overflow: auto;
  clear: left; /* LTR */
}
.date-container .form-item {
  margin-top: 0;
}
.date-container .select-container, .date-container .custom-container {
  float: left; /* LTR */
}
.date-container .custom-container {
  margin-left: 15px; /* LTR */
  width: 50%;
}
html.js .custom-container label {
  visibility: hidden;
}

File

modules/system/admin.css
View source
  1. /*
  2. ** Formatting for administration page
  3. */
  4. div.admin-panel {
  5. margin: 0;
  6. padding: 5px 5px 15px 5px;
  7. }
  8. div.admin-panel .description {
  9. margin: 0 0 3px;
  10. padding: 2px 0 3px 0;
  11. }
  12. div.admin-panel .body {
  13. padding: 0 4px 2px 8px; /* LTR */
  14. }
  15. div.admin {
  16. padding-top: 15px;
  17. }
  18. div.admin .left {
  19. float: left;
  20. width: 47%;
  21. margin-left: 1em;
  22. }
  23. div.admin .right {
  24. float: right;
  25. width: 47%;
  26. margin-right: 1em;
  27. }
  28. div.admin .expert-link {
  29. text-align: right; /* LTR */
  30. margin-right: 1em; /* LTR */
  31. padding-right: 4px; /* LTR */
  32. }
  33. table.package {
  34. width: 100%;
  35. }
  36. table.package .description {
  37. width: 100%;
  38. }
  39. table.package .version {
  40. direction: ltr;
  41. }
  42. div.admin-dependencies, div.admin-required {
  43. font-size: 0.9em;
  44. color: #444;
  45. }
  46. span.admin-disabled {
  47. color: #800;
  48. }
  49. span.admin-enabled {
  50. color: #080;
  51. }
  52. span.admin-missing {
  53. color: #f00;
  54. }
  55. /**
  56. * Formatting for status report
  57. */
  58. table.system-status-report th {
  59. border-bottom: 1px solid #ccc;
  60. }
  61. table.system-status-report th, table.system-status-report tr.merge-up td {
  62. padding-left: 30px; /* LTR */
  63. }
  64. table.system-status-report th {
  65. background-repeat: no-repeat;
  66. background-position: 5px 50%; /* LTR */
  67. padding-top: 6px;
  68. padding-bottom: 6px;
  69. }
  70. table.system-status-report tr.error th {
  71. background-image: url(../../misc/watchdog-error.png);
  72. }
  73. table.system-status-report tr.warning th {
  74. background-image: url(../../misc/watchdog-warning.png);
  75. }
  76. table.system-status-report tr.ok th {
  77. background-image: url(../../misc/watchdog-ok.png);
  78. }
  79. /**
  80. * Formatting for theme configuration
  81. */
  82. .theme-settings-left {
  83. float: left;
  84. width: 49%;
  85. }
  86. .theme-settings-right {
  87. float: right;
  88. width: 49%;
  89. }
  90. .theme-settings-bottom {
  91. clear: both;
  92. }
  93. /**
  94. * Formatting for theme overview
  95. */
  96. table.screenshot {
  97. margin-right: 1em; /* LTR */
  98. }
  99. .theme-info h2 {
  100. margin-bottom: 0;
  101. }
  102. .theme-info p {
  103. margin-top: 0;
  104. }
  105. /**
  106. * Date and time settings page
  107. */
  108. .date-container {
  109. overflow: auto;
  110. clear: left; /* LTR */
  111. }
  112. .date-container .form-item {
  113. margin-top: 0;
  114. }
  115. .date-container .select-container, .date-container .custom-container {
  116. float: left; /* LTR */
  117. }
  118. .date-container .custom-container {
  119. margin-left: 15px; /* LTR */
  120. width: 50%;
  121. }
  122. html.js .custom-container label {
  123. visibility: hidden;
  124. }