1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/* $Id: admin.css,v 1.18.2.1 2008/04/25 21:01:54 goba Exp $ */
/*
** 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;
}
|