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

Side by Side Diff: chrome/browser/resources/chromeos/wallpaper_manager/css/wallpaper_manager.css

Issue 12769017: Add delete context menu for custom wallpapers and some ui tweaks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2013 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 html { 5 html {
6 height: 100%; 6 height: 100%;
7 } 7 }
8 8
9 body { 9 body {
10 background-color: rgba(20, 20, 20, 0.93); 10 background-color: rgba(20, 20, 20, 0.93);
11 color: #999; 11 color: #999;
12 font-size: 80%; 12 font-size: 80%;
13 height: 100%; 13 height: 100%;
14 margin: 0; 14 margin: 0;
15 padding: 0; 15 padding: 0;
16 } 16 }
17 17
18 .dialog-container { 18 .dialog-container {
19 -webkit-box-orient: vertical; 19 -webkit-box-orient: vertical;
20 border: 1px solid black;
21 display: -webkit-box; 20 display: -webkit-box;
22 overflow: hidden; 21 overflow: hidden;
23 } 22 }
24 23
25 .dialog-topbar { 24 .dialog-topbar {
26 -webkit-box-align: center; 25 -webkit-box-align: center;
27 display: -webkit-box; 26 display: -webkit-box;
28 height: 54px; 27 height: 54px;
29 overflow: hidden; 28 overflow: hidden;
30 padding: 0 15px; 29 padding: 0 15px;
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 } 210 }
212 211
213 #author-website { 212 #author-website {
214 color: #999; 213 color: #999;
215 overflow: hidden; 214 overflow: hidden;
216 white-space: nowrap; 215 white-space: nowrap;
217 width: 240px; 216 width: 240px;
218 } 217 }
219 218
220 /* [hidden] does display:none, but its priority is too low. */ 219 /* [hidden] does display:none, but its priority is too low. */
221 [hidden] { 220 [hidden],
221 body[custom] [visibleif]:not([visibleif~='custom']),
222 body:not([custom]) [visibleif~='custom'] {
222 display: none !important; 223 display: none !important;
223 } 224 }
224 225
225 .progress-bar { 226 .progress-bar {
226 background-color: rgba(255, 255, 255, 0.7); 227 background-color: rgba(255, 255, 255, 0.7);
227 height: 6px; 228 height: 6px;
228 position: absolute; 229 position: absolute;
229 top: 62px; 230 top: 62px;
230 width: 100%; 231 width: 100%;
231 } 232 }
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 margin-right: 4px; 318 margin-right: 4px;
318 opacity: 0.7; 319 opacity: 0.7;
319 position: relative; 320 position: relative;
320 top: 4px; 321 top: 4px;
321 width: 17px; 322 width: 17px;
322 } 323 }
323 324
324 #surprise-me #checkbox.checked { 325 #surprise-me #checkbox.checked {
325 background-image: url('../images/ui/checkbox_checked.png'); 326 background-image: url('../images/ui/checkbox_checked.png');
326 } 327 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698