OLD | NEW |
---|---|
1 /** | 1 /** |
2 * Copyright 2016 The Chromium Authors. All rights reserved. | 2 * Copyright 2016 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 html, | 7 html, |
8 body, | 8 body, |
9 webview, | 9 webview, |
10 .section { | 10 .section { |
(...skipping 22 matching lines...) Expand all Loading... | |
33 #arc-support { | 33 #arc-support { |
34 flex: auto; | 34 flex: auto; |
35 overflow: hidden; | 35 overflow: hidden; |
36 width: 960px; | 36 width: 960px; |
37 } | 37 } |
38 | 38 |
39 #terms-view { | 39 #terms-view { |
40 width: 640px; | 40 width: 640px; |
41 } | 41 } |
42 | 42 |
43 .bubble-button > div { | |
khmel
2016/08/12 20:33:23
we have text for option smaller than in settings.
| |
44 height: 12px; | |
45 top: -8px; | |
46 width: 12px; | |
47 } | |
48 | |
43 .button-separator { | 49 .button-separator { |
44 width: 1px; | 50 width: 1px; |
45 } | 51 } |
46 | 52 |
47 .checkbox-container { | 53 .checkbox-container { |
48 margin: 0; | 54 margin: 0; |
49 padding: 0 8px 0 0; | 55 padding: 0 8px 0 0; |
50 } | 56 } |
51 | 57 |
52 .checkbox-option { | 58 .checkbox-option { |
(...skipping 12 matching lines...) Expand all Loading... | |
65 padding: 0; | 71 padding: 0; |
66 } | 72 } |
67 | 73 |
68 .content { | 74 .content { |
69 /* Default window inner height (688px) minus image caption height (300px) */ | 75 /* Default window inner height (688px) minus image caption height (300px) */ |
70 height: 388px; | 76 height: 388px; |
71 margin: 0; | 77 margin: 0; |
72 padding: 0; | 78 padding: 0; |
73 } | 79 } |
74 | 80 |
81 .controlled-setting-indicator { | |
khmel
2016/08/12 20:33:23
Same as before
| |
82 -webkit-margin-end: 3px; | |
83 -webkit-margin-start: 2px; | |
84 } | |
85 | |
86 .controlled-setting-indicator[controlled-by] > div { | |
87 background-size: 16px; | |
88 } | |
89 | |
75 .image-header { | 90 .image-header { |
76 display: block; | 91 display: block; |
77 height: 300px; | 92 height: 300px; |
78 padding: 0; | 93 padding: 0; |
79 width: 960px; | 94 width: 960px; |
80 } | 95 } |
81 | 96 |
82 .scrollable { | 97 .scrollable { |
83 flex: auto; | 98 flex: auto; |
84 margin: 0; | 99 margin: 0; |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
160 | 175 |
161 a:link { | 176 a:link { |
162 color: rgb(51, 103, 214); | 177 color: rgb(51, 103, 214); |
163 text-decoration: none; | 178 text-decoration: none; |
164 } | 179 } |
165 | 180 |
166 a:visited { | 181 a:visited { |
167 color: rgb(51, 103, 214); | 182 color: rgb(51, 103, 214); |
168 text-decoration: none; | 183 text-decoration: none; |
169 } | 184 } |
OLD | NEW |