OLD | NEW |
1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 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 #available-icons { | 5 #available-icons { |
6 -webkit-margin-start: 16px; | 6 -webkit-margin-start: 16px; |
7 margin-top: 16px; | 7 margin-top: 16px; |
8 } | 8 } |
9 | 9 |
10 #available-icons paper-button { | 10 #available-icons img { |
11 padding: 4px; | 11 border: 1px solid rgba(0, 0, 0, 0.15); |
| 12 border-radius: 4px; |
| 13 height: 64px; |
| 14 padding: 3px; |
| 15 width: 64px; |
| 16 } |
| 17 |
| 18 #available-icons img.iron-selected { |
| 19 border: 2px solid rgb(0, 102, 204); |
| 20 padding: 2px; |
12 } | 21 } |
13 | 22 |
14 #preview-pane { | 23 #preview-pane { |
15 flex-shrink: 0; | 24 flex-shrink: 0; |
16 margin: 18px 10px 0 0; | 25 margin: 18px 10px 0 0; |
17 width: 228px; | 26 width: 228px; |
18 } | 27 } |
19 | 28 |
20 #preview-pane img { | 29 #preview-pane img { |
21 border: solid 1px #cacaca; | 30 border: solid 1px #cacaca; |
22 border-radius: 4px; | 31 border-radius: 4px; |
23 max-height: 220px; | 32 max-height: 220px; |
24 max-width: 220px; | 33 max-width: 220px; |
25 padding: 3px; | 34 padding: 3px; |
26 } | 35 } |
27 | |
28 .user-image { | |
29 height: 64px; | |
30 width: 64px; | |
31 } | |
OLD | NEW |