You are here

admin.css in Drupal 5

Same filename and directory in other branches
  1. 6 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;
}

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;
  margin-right: 1em;
  padding-right: 4px;
}

table.package {
  width: 100%;
}
table.package .description {
  width: 100%;
}
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;
}
table.system-status-report th  {
  background-repeat: no-repeat;
  background-position: 5px 50%;
  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;
}

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;
  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;
  30. margin-right: 1em;
  31. padding-right: 4px;
  32. }
  33. table.package {
  34. width: 100%;
  35. }
  36. table.package .description {
  37. width: 100%;
  38. }
  39. div.admin-dependencies, div.admin-required {
  40. font-size: 0.9em;
  41. color: #444;
  42. }
  43. span.admin-disabled {
  44. color: #800;
  45. }
  46. span.admin-enabled {
  47. color: #080;
  48. }
  49. span.admin-missing {
  50. color: #f00;
  51. }
  52. /**
  53. * Formatting for status report
  54. */
  55. table.system-status-report th {
  56. border-bottom: 1px solid #ccc;
  57. }
  58. table.system-status-report th, table.system-status-report tr.merge-up td {
  59. padding-left: 30px;
  60. }
  61. table.system-status-report th {
  62. background-repeat: no-repeat;
  63. background-position: 5px 50%;
  64. padding-top: 6px;
  65. padding-bottom: 6px;
  66. }
  67. table.system-status-report tr.error th {
  68. background-image: url(../../misc/watchdog-error.png);
  69. }
  70. table.system-status-report tr.warning th {
  71. background-image: url(../../misc/watchdog-warning.png);
  72. }
  73. table.system-status-report tr.ok th {
  74. background-image: url(../../misc/watchdog-ok.png);
  75. }
  76. /**
  77. * Formatting for theme configuration
  78. */
  79. .theme-settings-left {
  80. float: left;
  81. width: 49%;
  82. }
  83. .theme-settings-right {
  84. float: right;
  85. width: 49%;
  86. }
  87. .theme-settings-bottom {
  88. clear: both;
  89. }