OLD | NEW |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 :host { | 5 :host { |
6 display: flex; | 6 display: flex; |
7 flex-direction: column; | 7 flex-direction: column; |
8 margin: 12px 0; | 8 margin: 12px 0; |
9 } | 9 } |
10 | 10 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 color: rgb(239, 108, 0); | 132 color: rgb(239, 108, 0); |
133 } | 133 } |
134 | 134 |
135 #progress { | 135 #progress { |
136 --paper-progress-active-color: rgb(54, 126, 237); | 136 --paper-progress-active-color: rgb(54, 126, 237); |
137 --paper-progress-container-color: rgb(223, 222, 223); | 137 --paper-progress-container-color: rgb(223, 222, 223); |
138 width: auto; | 138 width: auto; |
139 } | 139 } |
140 | 140 |
141 .controls { | 141 .controls { |
142 -webkit-margin-start: -8px; | 142 -webkit-margin-start: -.57em; |
143 } | 143 } |
144 | 144 |
145 #cancel, | 145 #cancel, |
146 #retry, | 146 #retry, |
147 .keep, | 147 .keep, |
148 .discard { | 148 .discard { |
149 color: #5a5a5a; | 149 color: #5a5a5a; |
150 } | 150 } |
151 | 151 |
| 152 #show { |
| 153 margin: .7em .57em; |
| 154 } |
| 155 |
152 #controlled-by { | 156 #controlled-by { |
153 -webkit-margin-start: 8px; | 157 -webkit-margin-start: 8px; |
154 } | 158 } |
155 | 159 |
156 #controlled-by, | 160 #controlled-by, |
157 #controlled-by a { | 161 #controlled-by a { |
158 color: #5a5a5a; | 162 color: #5a5a5a; |
159 } | 163 } |
160 | 164 |
161 .is-active #controlled-by { | 165 .is-active #controlled-by { |
(...skipping 21 matching lines...) Expand all Loading... |
183 width: 16px; | 187 width: 16px; |
184 } | 188 } |
185 | 189 |
186 #incognito { | 190 #incognito { |
187 bottom: 20px; | 191 bottom: 20px; |
188 content: -webkit-image-set(url(1x/incognito_marker.png) 1x, | 192 content: -webkit-image-set(url(1x/incognito_marker.png) 1x, |
189 url(2x/incognito_marker.png) 2x); | 193 url(2x/incognito_marker.png) 2x); |
190 position: absolute; | 194 position: absolute; |
191 right: 10px; | 195 right: 10px; |
192 } | 196 } |
OLD | NEW |