blob: b13e0b443057bcb1828f4b02264067b22428aa29 (
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
|
/*
Copyright (c) 2010 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
*/
.exception-pattern {
-webkit-box-flex: 1;
-webkit-margin-end: 10px;
-webkit-margin-start: 14px;
}
.exception-setting {
-webkit-margin-end: 20px;
display: inline-block;
width: 100px;
}
select.exception-setting {
vertical-align: middle;
}
/* Hacks to make the <select> align better with the <input>. */
html[toolkit=gtk] select.exception-setting {
height: 22px;
margin-top: 1px;
}
#exception-column-headers {
-webkit-margin-start: 17px;
display: -webkit-box;
margin-top: 17px;
}
#exception-column-headers > div {
font-weight: bold;
}
#exception-pattern-column {
-webkit-box-flex: 1;
}
#exception-behavior-column {
width: 140px;
}
.otr-explanation {
font-style: italic;
}
#content-settings-exceptions-area list {
margin-bottom: 10px;
margin-top: 4px;
}
#plugins-tab {
display: block;
margin: 7px 0px;
}
|