Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: chrome/browser/resources/options2/chromeos/change_picture_options.css

Issue 8895023: Options2: Pull the trigger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DIAF. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #images-grid {
2 -webkit-user-drag: none;
3 -webkit-user-select: none;
4 margin: 10px;
5 outline: none;
6 padding: 10px;
7 }
8
9 #images-grid * {
10 margin: 0;
11 padding: 0;
12 }
13
14 #images-grid img {
15 background-color: white;
16 height: 64px;
17 vertical-align: middle;
18 width: 64px;
19 }
20
21 #images-grid [role=listitem] {
22 border-radius: 4px;
23 border: 1px solid rgba(0, 0, 0, 0.15);
24 display: inline-block;
25 margin: 10px;
26 padding: 3px;
27 }
28
29 #images-grid [selected] {
30 border: 2px solid #06c;
31 padding: 2px;
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698