blob: 30e01d197fcc6ea40b450b8ff1462f6213dac9eb (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/* Copyright (c) 2012 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. */
#content-settings-page {
min-width: 620px;
}
#content-settings-exceptions-area {
min-width: 540px;
}
.exception-pattern {
-webkit-box-flex: 1;
-webkit-margin-end: 10px;
-webkit-margin-start: 14px;
}
.exception-setting {
display: inline-block;
width: 120px;
}
select.exception-setting {
vertical-align: middle;
}
#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: 145px;
}
.otr-explanation {
font-style: italic;
}
#content-settings-exceptions-area list {
margin-bottom: 10px;
margin-top: 4px;
}
#disable-plugins-container {
/* Same as .checkbox and .radio padding. Using padding instead of margin
* to ensure minimum height for tap target. */
padding: 7px 0;
}
#group-indicator {
margin-left: 5px;
}
div[role='listitem'][controlled-by] {
color: #666;
font-style: italic;
position: relative;
}
.section-header {
-webkit-margin-start: -18px;
margin-bottom: 0.8em;
}
.section-header > h3 {
display: inline;
}
.settings-list div[role='listitem'][controlled-by='policy'],
.settings-list div[role='listitem'][controlled-by='extension'] {
background: rgb(250, 230, 146);
border-bottom: 1px solid rgb(201, 189, 141);
border-top: 0;
}
.sublabel {
-webkit-margin-start: 2em;
}
.media-device-control {
display: table-row;
}
.media-device-control > span {
display: table-cell;
min-width: 145px;
}
.media-device-control > select {
display: table-cell;
margin: 5px 0;
width: 12em;
}
.exception-setting.media-audio-setting {
width: 6em;
}
.exception-setting.media-video-setting {
width: 6.5em;
}
#media-column-header {
display: -webkit-box;
}
#media-audio-column {
width: 6em;
}
#media-video-column {
width: 8.5em;
}
|