OLD | NEW |
| (Empty) |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 | |
5 #website-settings-page { | |
6 min-height: 445px; | |
7 min-width: 540px; | |
8 } | |
9 | |
10 #website-settings-edit-page { | |
11 min-width: 540px; | |
12 } | |
13 | |
14 .website-column-headers { | |
15 padding: 3px 0 6px; | |
16 } | |
17 | |
18 .website-header-controls { | |
19 align-items: center; | |
20 display: flex; | |
21 justify-content: space-between; | |
22 } | |
23 | |
24 .website-header-controls > div { | |
25 font-weight: bold; | |
26 } | |
27 | |
28 #allowed-origin-list-title { | |
29 font-size: 1.3em; | |
30 } | |
31 | |
32 #website-settings-search-box { | |
33 width: 165px; | |
34 } | |
35 | |
36 #website-settings-page .action-area { | |
37 padding-bottom: 20px; | |
38 } | |
39 | |
40 .website-list-content-area { | |
41 display: flex; | |
42 flex-direction: column; | |
43 } | |
44 | |
45 .permission-name { | |
46 -webkit-margin-start: 7px; | |
47 font-size: 13px; | |
48 width: 300px; | |
49 } | |
50 | |
51 #website-settings-edit-page .permission-selection-option { | |
52 -webkit-margin-end: 20px; | |
53 -webkit-margin-start: 35px; | |
54 width: 12em; | |
55 } | |
56 | |
57 #website-settings-permission-column { | |
58 -webkit-margin-start: 8px; | |
59 } | |
60 | |
61 .website-properties { | |
62 -webkit-margin-start: 8px; | |
63 margin-bottom: 8px; | |
64 padding-bottom: 4px; | |
65 } | |
66 | |
67 .website-property-area { | |
68 align-items: center; | |
69 display: flex; | |
70 justify-content: space-between; | |
71 margin-bottom: 8px; | |
72 } | |
73 | |
74 .website-property-button { | |
75 margin-bottom: 9em; | |
76 } | |
77 | |
78 #website-title { | |
79 -webkit-padding-start: 21px; | |
80 font-size: 15px; | |
81 line-height: 20px; | |
82 margin-bottom: 22px; | |
83 margin-top: 0; | |
84 } | |
85 | |
86 #website-settings-page .content-area { | |
87 padding: auto 20px; | |
88 } | |
89 | |
90 #website-settings-page .action-area { | |
91 padding: auto 20px; | |
92 | |
93 } | |
94 | |
95 #website-settings-edit-page .action-area { | |
96 padding: auto 20px; | |
97 | |
98 } | |
99 | |
100 .origin-permission-list { | |
101 border: 1px solid #d9d9d9; | |
102 height: 192px; | |
103 padding-top: 4px; | |
104 } | |
105 | |
106 #website-settings-edit-page .website-property-button { | |
107 min-width: 70px; | |
108 } | |
109 | |
110 #website-settings-edit-page .website-property-controls { | |
111 min-width: 165px; | |
112 } | |
113 | |
114 #website-settings-global-controls { | |
115 align-items: center; | |
116 display: flex; | |
117 margin-bottom: 24px; | |
118 } | |
119 | |
120 #global-setting { | |
121 -webkit-margin-start: 35px; | |
122 flex: 1; | |
123 } | |
124 | |
125 /* Styles for the origin list elements in the website settings page. */ | |
126 .origin-list { | |
127 border: 1px solid #d9d9d9; | |
128 font-size: 13px; | |
129 height: 192px; | |
130 margin: 5px 0 0; | |
131 } | |
132 | |
133 #website-settings-page .blocked-origin-list { | |
134 height: 128px; | |
135 min-height: 128px; | |
136 } | |
137 | |
138 #website-settings-page .nonsplit-origin-list { | |
139 height: 357px; | |
140 min-height: 357px; | |
141 } | |
142 | |
143 #origin-list-item { | |
144 height: 30px; | |
145 } | |
146 | |
147 .local-storage-usage { | |
148 color: #7f7f7f; | |
149 margin: auto 0; | |
150 } | |
151 | |
152 list.origin-list .favicon-cell { | |
153 -webkit-margin-start: 6px; | |
154 -webkit-padding-start: 21px; | |
155 } | |
156 | |
157 list.origin-list .favicon-cell { | |
158 -webkit-margin-start: 5px; | |
159 -webkit-padding-start: 21px; | |
160 font-size: 13px; | |
161 } | |
162 | |
163 .permission-option { | |
164 align-items: center; | |
165 display: flex; | |
166 justify-content: space-between; | |
167 margin-top: 4px; | |
168 } | |
OLD | NEW |