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 } | 8 } |
9 | 9 |
10 #date { | 10 #date { |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 .is-active #controlled-by a { | 179 .is-active #controlled-by a { |
180 color: rgb(51, 103, 214); | 180 color: rgb(51, 103, 214); |
181 } | 181 } |
182 | 182 |
183 #remove-wrapper { | 183 #remove-wrapper { |
184 align-self: flex-start; | 184 align-self: flex-start; |
185 margin: 0; | 185 margin: 0; |
186 } | 186 } |
187 | 187 |
188 #remove { | 188 #remove { |
189 --iron-icon-height: 16px; | |
190 --iron-icon-width: 16px; | |
191 --layout-inline: { | |
192 /* HACK(dbeam): we probably shouldn't be overriding Polymer like this. */ | |
193 }; | |
194 color: #969696; | 189 color: #969696; |
| 190 font-size: 16px; |
195 height: 16px; | 191 height: 16px; |
| 192 line-height: 17px; /* TODO(dbeam): why is this necesssary? */ |
196 padding: 8px; | 193 padding: 8px; |
197 width: 16px; | 194 width: 16px; |
198 } | 195 } |
199 | 196 |
200 #incognito { | 197 #incognito { |
201 bottom: 20px; | 198 bottom: 20px; |
202 content: -webkit-image-set( | 199 content: -webkit-image-set( |
203 url(chrome://downloads/1x/incognito_marker.png) 1x, | 200 url(chrome://downloads/1x/incognito_marker.png) 1x, |
204 url(chrome://downloads/2x/incognito_marker.png) 2x); | 201 url(chrome://downloads/2x/incognito_marker.png) 2x); |
205 position: absolute; | 202 position: absolute; |
206 right: 10px; | 203 right: 10px; |
207 } | 204 } |
OLD | NEW |