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

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

Issue 1227413005: Disable Delete option for custom wallpapers when 'Surprise Me' is enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverted the combination.... Created 5 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/wallpaper_manager/js/wallpaper_manager.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 -webkit-app-region: drag; 10 -webkit-app-region: drag;
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 width: 240px; 266 width: 240px;
267 } 267 }
268 268
269 /* [hidden] does display:none, but its priority is too low. */ 269 /* [hidden] does display:none, but its priority is too low. */
270 [hidden], 270 [hidden],
271 body[custom] [visibleif]:not([visibleif~='custom']), 271 body[custom] [visibleif]:not([visibleif~='custom']),
272 body:not([custom]) [visibleif~='custom'] { 272 body:not([custom]) [visibleif~='custom'] {
273 display: none !important; 273 display: none !important;
274 } 274 }
275 275
276 body[surprise-me-disabled] [visibleif]:not([visibleif~='surprise-me-disabled']),
277 body:not([surprise-me-disabled]) [visibleif~='surprise-me-disabled'] {
278 display: none !important;
279 }
280
276 .progress-bar { 281 .progress-bar {
277 background-color: rgba(255, 255, 255, 0.7); 282 background-color: rgba(255, 255, 255, 0.7);
278 height: 6px; 283 height: 6px;
279 position: absolute; 284 position: absolute;
280 top: 62px; 285 top: 62px;
281 width: 100%; 286 width: 100%;
282 } 287 }
283 288
284 .progress-track { 289 .progress-track {
285 -webkit-transition: width 1ms linear; 290 -webkit-transition: width 1ms linear;
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 margin-right: 4px; 368 margin-right: 4px;
364 opacity: 0.7; 369 opacity: 0.7;
365 position: relative; 370 position: relative;
366 top: 4px; 371 top: 4px;
367 width: 17px; 372 width: 17px;
368 } 373 }
369 374
370 #surprise-me #checkbox.checked { 375 #surprise-me #checkbox.checked {
371 background-image: url(../images/ui/checkbox_checked.png); 376 background-image: url(../images/ui/checkbox_checked.png);
372 } 377 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/wallpaper_manager/js/wallpaper_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698