root / drupal7 / modules / dblog / dblog.css @ 4da4932d
1 |
/**
|
---|---|
2 |
* @file
|
3 |
* Admin styles for the Database Logging module.
|
4 |
*/
|
5 |
|
6 |
.form-item-type,
|
7 |
.form-item-severity {
|
8 |
float: left; /* LTR */ |
9 |
padding-right: .8em; /* LTR */ |
10 |
margin: 0.1em; |
11 |
/**
|
12 |
* In Opera 9, DOM elements with the property of "overflow: auto"
|
13 |
* will partially hide its contents with unnecessary scrollbars when
|
14 |
* its immediate child is floated without an explicit width set.
|
15 |
*/
|
16 |
width: 15em; |
17 |
} |
18 |
#dblog-filter-form .form-type-select select { |
19 |
width: 100%; |
20 |
} |
21 |
#dblog-filter-form .form-actions { |
22 |
float: left; |
23 |
padding: 3ex 0 0 1em; |
24 |
} |
25 |
|
26 |
tr.dblog-user { |
27 |
background: #ffd; |
28 |
} |
29 |
tr.dblog-user .active { |
30 |
background: #eed; |
31 |
} |
32 |
tr.dblog-content { |
33 |
background: #ddf; |
34 |
} |
35 |
tr.dblog-content .active { |
36 |
background: #cce; |
37 |
} |
38 |
tr.dblog-page-not-found, |
39 |
tr.dblog-access-denied { |
40 |
background: #dfd; |
41 |
} |
42 |
tr.dblog-page-not-found .active, |
43 |
tr.dblog-access-denied .active { |
44 |
background: #cec; |
45 |
} |
46 |
tr.dblog-error { |
47 |
background: #ffc9c9; |
48 |
} |
49 |
tr.dblog-error .active { |
50 |
background: #eeb9b9; |
51 |
} |
52 |
table#admin-dblog td.icon { |
53 |
background: no-repeat center; |
54 |
width: 16px; |
55 |
} |
56 |
table#admin-dblog tr.dblog-warning td.icon { |
57 |
background-image: url(../../misc/message-16-warning.png); |
58 |
} |
59 |
table#admin-dblog tr.dblog-error td.icon, |
60 |
table#admin-dblog tr.dblog-critical td.icon, |
61 |
table#admin-dblog tr.dblog-alert td.icon, |
62 |
table#admin-dblog tr.dblog-emerg td.icon { |
63 |
background-image: url(../../misc/message-16-error.png); |
64 |
} |