OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 .image-picker { | 5 .image-picker { |
6 -webkit-user-drag: none; | 6 -webkit-user-drag: none; |
7 -webkit-user-select: none; | 7 -webkit-user-select: none; |
8 margin: 10px; | 8 margin: 10px; |
9 outline: none; | 9 outline: none; |
10 padding: 10px; | 10 padding: 10px; |
11 width: 600px; | 11 width: 600px; |
12 } | 12 } |
13 | 13 |
14 .image-picker * { | 14 .image-picker * { |
15 margin: 0; | 15 margin: 0; |
16 padding: 0; | 16 padding: 0; |
17 } | 17 } |
18 | 18 |
19 .image-picker img { | 19 .image-picker img { |
20 background-color: white; | 20 background-color: white; |
21 height: 64px; | 21 height: 64px; |
22 vertical-align: middle; | 22 vertical-align: middle; |
23 width: 64px; | 23 width: 64px; |
24 } | 24 } |
25 | 25 |
26 .image-picker [role=listitem] { | 26 .image-picker [role=option] { |
Evan Stade
2012/05/07 20:58:02
add (single) quotes
| |
27 border: 1px solid rgba(0, 0, 0, 0.15); | 27 border: 1px solid rgba(0, 0, 0, 0.15); |
28 border-radius: 4px; | 28 border-radius: 4px; |
29 display: inline-block; | 29 display: inline-block; |
30 margin: 10px; | 30 margin: 10px; |
31 padding: 3px; | 31 padding: 3px; |
32 } | 32 } |
33 | 33 |
34 .image-picker [selected] { | 34 .image-picker [selected] { |
35 border: 2px solid rgb(0, 102, 204); | 35 border: 2px solid rgb(0, 102, 204); |
36 padding: 2px; | 36 padding: 2px; |
37 } | 37 } |
OLD | NEW |