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/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: 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 } 209 }
211 210
212 #author-website { 211 #author-website {
213 color: #999; 212 color: #999;
214 overflow: hidden; 213 overflow: hidden;
215 white-space: nowrap; 214 white-space: nowrap;
216 width: 240px; 215 width: 240px;
217 } 216 }
218 217
219 /* [hidden] does display:none, but its priority is too low. */ 218 /* [hidden] does display:none, but its priority is too low. */
220 [hidden] { 219 [hidden],
220 body[custom] [visibleif]:not([visibleif~='custom']),
221 body:not([custom]) [visibleif~='custom'] {
221 display: none !important; 222 display: none !important;
222 } 223 }
223 224
224 .progress-bar { 225 .progress-bar {
225 background-color: rgba(255, 255, 255, 0.7); 226 background-color: rgba(255, 255, 255, 0.7);
226 height: 6px; 227 height: 6px;
227 position: absolute; 228 position: absolute;
228 top: 62px; 229 top: 62px;
229 width: 100%; 230 width: 100%;
230 } 231 }
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 height: 30px; 302 height: 30px;
302 } 303 }
303 304
304 #wallpaper-selection-container input[type='file']::-webkit-file-upload-button { 305 #wallpaper-selection-container input[type='file']::-webkit-file-upload-button {
305 height: 30px; 306 height: 30px;
306 } 307 }
307 308
308 #wallpaper-selection-container .remember-icon { 309 #wallpaper-selection-container .remember-icon {
309 content: url('../images/ui/remember.png'); 310 content: url('../images/ui/remember.png');
310 } 311 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698