2012-11-10 15:33:11 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Admin styles for the Database Logging module.
|
|
|
|
*/
|
|
|
|
|
2010-04-28 20:08:39 +00:00
|
|
|
.form-item-type,
|
|
|
|
.form-item-severity {
|
2007-05-27 17:57:48 +00:00
|
|
|
float: left; /* LTR */
|
|
|
|
padding-right: .8em; /* LTR */
|
2007-04-30 11:12:35 +00:00
|
|
|
margin: 0.1em;
|
2007-09-01 05:27:04 +00:00
|
|
|
/**
|
|
|
|
* In Opera 9, DOM elements with the property of "overflow: auto"
|
|
|
|
* will partially hide its contents with unnecessary scrollbars when
|
|
|
|
* its immediate child is floated without an explicit width set.
|
|
|
|
*/
|
|
|
|
width: 15em;
|
|
|
|
}
|
2010-01-03 21:01:04 +00:00
|
|
|
#dblog-filter-form .form-type-select select {
|
2007-09-01 05:27:04 +00:00
|
|
|
width: 100%;
|
2007-04-30 11:12:35 +00:00
|
|
|
}
|
2010-01-03 21:01:04 +00:00
|
|
|
#dblog-filter-form .form-actions {
|
|
|
|
float: left;
|
|
|
|
padding: 3ex 0 0 1em;
|
|
|
|
}
|
|
|
|
|
2007-04-10 10:10:27 +00:00
|
|
|
tr.dblog-user {
|
|
|
|
background: #ffd;
|
|
|
|
}
|
|
|
|
tr.dblog-user .active {
|
|
|
|
background: #eed;
|
|
|
|
}
|
|
|
|
tr.dblog-content {
|
|
|
|
background: #ddf;
|
|
|
|
}
|
|
|
|
tr.dblog-content .active {
|
|
|
|
background: #cce;
|
|
|
|
}
|
2010-04-28 20:08:39 +00:00
|
|
|
tr.dblog-page-not-found,
|
|
|
|
tr.dblog-access-denied {
|
2007-04-10 10:10:27 +00:00
|
|
|
background: #dfd;
|
|
|
|
}
|
2010-04-28 20:08:39 +00:00
|
|
|
tr.dblog-page-not-found .active,
|
|
|
|
tr.dblog-access-denied .active {
|
2007-04-10 10:10:27 +00:00
|
|
|
background: #cec;
|
|
|
|
}
|
|
|
|
tr.dblog-error {
|
|
|
|
background: #ffc9c9;
|
|
|
|
}
|
|
|
|
tr.dblog-error .active {
|
|
|
|
background: #eeb9b9;
|
|
|
|
}
|
2010-09-09 15:47:03 +00:00
|
|
|
table#admin-dblog td.icon {
|
|
|
|
background: no-repeat center;
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
table#admin-dblog tr.dblog-warning td.icon {
|
|
|
|
background-image: url(../../misc/message-16-warning.png);
|
|
|
|
}
|
2011-09-11 21:47:55 +00:00
|
|
|
table#admin-dblog tr.dblog-error td.icon,
|
|
|
|
table#admin-dblog tr.dblog-critical td.icon,
|
|
|
|
table#admin-dblog tr.dblog-alert td.icon,
|
|
|
|
table#admin-dblog tr.dblog-emerg td.icon {
|
2010-09-09 15:47:03 +00:00
|
|
|
background-image: url(../../misc/message-16-error.png);
|
|
|
|
}
|