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

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

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes 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 #images-grid {
2 -webkit-user-drag: none;
3 -webkit-user-select: none;
4 margin: 10px;
5 outline: none;
6 padding: 10px;
7 width: 600px;
8 }
9
10 #images-grid * {
11 margin: 0;
12 padding: 0;
13 }
14
15 #images-grid img {
16 background-color: white;
17 height: 64px;
18 vertical-align: middle;
19 width: 64px;
20 }
21
22 #images-grid [role=listitem] {
23 border-radius: 4px;
24 border: 1px solid rgba(0, 0, 0, 0.15);
25 display: inline-block;
26 margin: 10px;
27 padding: 3px;
28 }
29
30 #images-grid [selected] {
31 border: 2px solid #06c;
32 padding: 2px;
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698