-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.css
67 lines (54 loc) · 977 Bytes
/
options.css
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
body {
background-color: lightgrey;
min-width: 750px;
}
#recommended_description, #changed_description {
display: none;
}
#hotkey_entry {
margin-bottom: 0.5em;
}
#hotkey_entry tr:first-child th {
padding-bottom: 0.5em;
}
th.hotkey, input[name="hotkey"] {
width: 3em;
}
th.url, input[name="target"], input[name="match_prefix"] {
width: 25em;
}
th.checkbox {
/*
* Allow the th text to occupy space from its neighbors.
*/
display: inline-block;
white-space: nowrap;
width: 2em;
margin-left: -5em; /* Hardcoded for the particular th text. */
}
td.checkbox {
width: 2em;
text-align: center;
}
.restore {
display: none;
}
#open_advanced {
margin-top: 1em;
}
#open_advanced > a {
color: grey;
text-decoration: none;
cursor: pointer;
}
#advanced {
display: none;
}
#warning {
display: none;
color: red;
font-weight: bold;
}
input.invalid {
background-color: pink;
}