2012-08-29 18:15:05 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Admin styles for the Database Logging module.
|
|
|
|
*/
|
|
|
|
|
2010-04-28 20:08:39 +00:00
|
|
|
.form-item-type,
|
|
|
|
.form-item-severity {
|
2012-12-17 21:35:51 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 1em; /* LTR */
|
|
|
|
margin-top: 0;
|
|
|
|
max-width: 30%;
|
2007-04-30 11:12:35 +00:00
|
|
|
}
|
2010-01-03 21:01:04 +00:00
|
|
|
#dblog-filter-form .form-actions {
|
2012-12-17 21:35:51 +00:00
|
|
|
display: inline-block;
|
|
|
|
padding: 3ex 0 0;
|
|
|
|
vertical-align: top;
|
2010-01-03 21:01:04 +00:00
|
|
|
}
|
2013-01-30 03:59:25 +00:00
|
|
|
tr.dblog-user.odd .active {
|
2007-04-10 10:10:27 +00:00
|
|
|
background: #ddf;
|
|
|
|
}
|
2013-01-30 03:59:25 +00:00
|
|
|
tr.dblog-user.even .active {
|
2007-04-10 10:10:27 +00:00
|
|
|
background: #cce;
|
|
|
|
}
|
2013-01-30 03:59:25 +00:00
|
|
|
tr.dblog-error.odd .active {
|
2007-04-10 10:10:27 +00:00
|
|
|
background: #ffc9c9;
|
|
|
|
}
|
2013-01-30 03:59:25 +00:00
|
|
|
tr.dblog-error.even .active {
|
2007-04-10 10:10:27 +00:00
|
|
|
background: #eeb9b9;
|
|
|
|
}
|
2013-01-30 03:59:25 +00:00
|
|
|
tr.dblog-warning.odd .active {
|
|
|
|
background: #fffdca;
|
|
|
|
}
|
|
|
|
tr.dblog-warning.even .active {
|
|
|
|
background: #eeedbd;
|
|
|
|
}
|
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:49 +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,
|
2012-07-25 15:17:07 +00:00
|
|
|
table#admin-dblog tr.dblog-emergency td.icon {
|
2010-09-09 15:47:03 +00:00
|
|
|
background-image: url(../../misc/message-16-error.png);
|
|
|
|
}
|