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

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

Issue 9703031: Retry landing "Enable users change desktop background image from settings page in Chromeos Aura bui… (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Merge to trunk Created 8 years, 9 months 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 /* 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
3 * found in the LICENSE file. */
4
5 #images-grid {
6 -webkit-user-drag: none;
7 -webkit-user-select: none;
8 margin: 10px;
9 outline: none;
10 padding: 10px;
11 width: 600px;
12 }
13
14 #images-grid * {
15 margin: 0;
16 padding: 0;
17 }
18
19 #images-grid img {
20 background-color: white;
21 height: 64px;
22 vertical-align: middle;
23 width: 64px;
24 }
25
26 #images-grid [role=listitem] {
27 border: 1px solid rgba(0, 0, 0, 0.15);
28 border-radius: 4px;
29 display: inline-block;
30 margin: 10px;
31 padding: 3px;
32 }
33
34 #images-grid [selected] {
35 border: 2px solid rgb(0, 102, 204);
36 padding: 2px;
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698