blob: af931bde6ef46b7caa805eed80e8d48c638cb23b (
plain)
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
|
/*
* Class name.
*/
.class-name {white-space: nowrap;}
/*
* Config filter and count.
*/
#filter-heading, #count
{
font-size: 1.32em;
line-height: 1.4em;
color: #555;
margin: 1.2em 0 0 0;
}
#filter
{
font-family: monospace;
font-size: 0.94em;
text-align: left;
}
#selected-class {font-weight: bold;}
/*
* Config table.
*/
.config
{
margin-top: .8em;
margin-bottom: .8em;
padding-top: .4em;
padding-bottom: .4em;
}
.config:nth-child(even) {background-color: rgba(0, 0, 0, 0.07);}
.config th
{
width: 5.7em;
}
.config tr.name td .value,
.config tr.target td .value,
.config tr.classes td .value
{
/* <code> style. */
font-family: monospace;
font-size: 0.94em;
}
/* Re-styling of the classes row not to truncate the class list. */
.classes th
{
vertical-align: top;
}
.classes td
{
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
}
.classes td .value
{
white-space: normal;
}
|