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

Side by Side Diff: chrome/browser/resources/file_manager/foreground/css/file_manager.css

Issue 105433004: Files.app: Fix a CSS to hide the cancel button for non-cancelable progress items. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
« no previous file with comments | « no previous file | no next file » | 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) 2012 The Chromium Authors. All rights reserved. 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 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 /* The order of z-index: 5 /* The order of z-index:
6 * - 2: drag-selection-bodrder 6 * - 2: drag-selection-bodrder
7 * - 3: preview-panel 7 * - 3: preview-panel
8 * - 500: scrollbar 8 * - 500: scrollbar
9 * - 500: splitter 9 * - 500: splitter
10 * - 525: spinner 10 * - 525: spinner
(...skipping 2024 matching lines...) Expand 10 before | Expand all | Expand 10 after
2035 #progress-center:not(.opened) #progress-center-close-view.single ~ 2035 #progress-center:not(.opened) #progress-center-close-view.single ~
2036 button.toggle, 2036 button.toggle,
2037 #progress-center button.cancel { 2037 #progress-center button.cancel {
2038 background: -webkit-image-set( 2038 background: -webkit-image-set(
2039 url(../images/files/ui/close_bar.png) 1x, 2039 url(../images/files/ui/close_bar.png) 1x,
2040 url(../images/files/ui/2x/close_bar.png) 2x) 2040 url(../images/files/ui/2x/close_bar.png) 2x)
2041 no-repeat; 2041 no-repeat;
2042 } 2042 }
2043 2043
2044 #progress-center:not(.opened) 2044 #progress-center:not(.opened)
2045 #progress-center-close-view.single:not(.cancelable) button.toggle, 2045 #progress-center-close-view.single:not(.cancelable) ~ button.toggle,
2046 #progress-center li:not(.cancelable) button.cancel { 2046 #progress-center li:not(.cancelable) button.cancel {
2047 visibility: hidden; 2047 visibility: hidden;
2048 } 2048 }
2049 2049
2050 #progress-center.opened button.toggle { 2050 #progress-center.opened button.toggle {
2051 background: -webkit-image-set( 2051 background: -webkit-image-set(
2052 url(../images/files/ui/process_drawer_button_closed.png) 1x, 2052 url(../images/files/ui/process_drawer_button_closed.png) 1x,
2053 url(../images/files/ui/2x/process_drawer_button_closed.png) 2x) 2053 url(../images/files/ui/2x/process_drawer_button_closed.png) 2x)
2054 no-repeat; 2054 no-repeat;
2055 top: 10px; 2055 top: 10px;
2056 } 2056 }
2057 2057
2058 #progress-center.opened button.toggle:hover { 2058 #progress-center.opened button.toggle:hover {
2059 background: -webkit-image-set( 2059 background: -webkit-image-set(
2060 url(../images/files/ui/process_drawer_button_closed_hover.png) 1x, 2060 url(../images/files/ui/process_drawer_button_closed_hover.png) 1x,
2061 url(../images/files/ui/2x/process_drawer_button_closed_hover.png) 2x) 2061 url(../images/files/ui/2x/process_drawer_button_closed_hover.png) 2x)
2062 no-repeat; 2062 no-repeat;
2063 } 2063 }
2064 2064
2065 #progress-center.opened button.toggle:active { 2065 #progress-center.opened button.toggle:active {
2066 background: -webkit-image-set( 2066 background: -webkit-image-set(
2067 url(../images/files/ui/process_drawer_button_closed_pressed.png) 1x, 2067 url(../images/files/ui/process_drawer_button_closed_pressed.png) 1x,
2068 url(../images/files/ui/2x/process_drawer_button_closed_pressed.png) 2x) 2068 url(../images/files/ui/2x/process_drawer_button_closed_pressed.png) 2x)
2069 no-repeat; 2069 no-repeat;
2070 } 2070 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698