blob: 4cb5af1200158539474b9587d6f14532a02cdc9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
.image-picker {
-webkit-user-drag: none;
-webkit-user-select: none;
margin: 10px;
outline: none;
padding: 10px;
width: 600px;
}
.image-picker * {
margin: 0;
padding: 0;
}
.image-picker img {
background-color: white;
height: 64px;
vertical-align: middle;
width: 64px;
}
.image-picker [role=listitem] {
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 4px;
display: inline-block;
margin: 10px;
padding: 3px;
}
.image-picker [selected] {
border: 2px solid rgb(0, 102, 204);
padding: 2px;
}
|