2006-09-06 08:35:59 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2006-08-14 20:35:11 +00:00
|
|
|
/*
|
|
|
|
** Formatting for administration page
|
|
|
|
*/
|
|
|
|
div.admin-panel {
|
2006-08-27 07:44:55 +00:00
|
|
|
margin: 0;
|
2006-08-14 20:35:11 +00:00
|
|
|
padding: 5px 5px 15px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.admin-panel .description {
|
2006-08-27 07:44:55 +00:00
|
|
|
margin: 0 0 3px;
|
2006-08-14 20:35:11 +00:00
|
|
|
padding: 2px 0 3px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.admin-panel .body {
|
|
|
|
padding: 0 4px 2px 8px;
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2006-09-01 08:44:53 +00:00
|
|
|
|
2006-10-02 16:49:08 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-09-01 08:44:53 +00:00
|
|
|
/**
|
|
|
|
* 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');
|
|
|
|
}
|
2006-09-01 09:23:45 +00:00
|
|
|
table.system-status-report tr.ok th {
|
|
|
|
background-image: url('../../misc/watchdog-ok.png');
|
|
|
|
}
|