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

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

Issue 10226001: Dropping files into the root list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes Created 8 years, 8 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) 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 html.col-resize * { 5 html.col-resize * {
6 cursor: col-resize !important; 6 cursor: col-resize !important;
7 } 7 }
8 8
9 /* Outer frame of the dialog. */ 9 /* Outer frame of the dialog. */
10 body { 10 body {
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 216
217 list.roots-list > * { 217 list.roots-list > * {
218 background-color: #e6e6e6; 218 background-color: #e6e6e6;
219 border: none; 219 border: none;
220 border-radius: 0; 220 border-radius: 0;
221 height: 39px; 221 height: 39px;
222 margin: 0; 222 margin: 0;
223 padding: 0 5px; 223 padding: 0 5px;
224 } 224 }
225 225
226 list.roots-list > .accepts,
226 list.roots-list > [lead][selected], 227 list.roots-list > [lead][selected],
227 list.roots-list > [lead], 228 list.roots-list > [lead],
228 list.roots-list > [selected], 229 list.roots-list > [selected],
229 list.roots-list > [anchor] { 230 list.roots-list > [anchor] {
230 background-color: rgb(204, 219, 243); 231 background-color: rgb(204, 219, 243);
231 background-image: none; 232 background-image: none;
232 border-bottom: 1px solid rgb(195, 210, 233); 233 border-bottom: 1px solid rgb(195, 210, 233);
233 border-top: 1px solid rgb(195, 210, 233); 234 border-top: 1px solid rgb(195, 210, 233);
234 height: 37px; 235 height: 37px;
235 } 236 }
236 237
238 list.roots-list > .accepts:hover,
237 list.roots-list > [lead]:hover, 239 list.roots-list > [lead]:hover,
238 list.roots-list > [lead][selected]:hover, 240 list.roots-list > [lead][selected]:hover,
239 list.roots-list > [selected]:hover, 241 list.roots-list > [selected]:hover,
240 list.roots-list > [anchor]:hover { 242 list.roots-list > [anchor]:hover {
241 background-color: rgb(193, 211, 236) !important; 243 background-color: rgb(193, 211, 236) !important;
242 border-bottom: 1px solid transparent !important; 244 border-bottom: 1px solid transparent !important;
243 border-top: 1px solid transparent !important; 245 border-top: 1px solid transparent !important;
244 height: 37px !important; 246 height: 37px !important;
245 } 247 }
246 248
(...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after
1150 } 1152 }
1151 1153
1152 body[ash] .dialog-title, 1154 body[ash] .dialog-title,
1153 body[type='full-page'] [invisibleif='full-page'], 1155 body[type='full-page'] [invisibleif='full-page'],
1154 body:not([type='full-page']) [visibleif='full-page'], 1156 body:not([type='full-page']) [visibleif='full-page'],
1155 body:not([type='saveas-file']) [visibleif='saveas-file'], 1157 body:not([type='saveas-file']) [visibleif='saveas-file'],
1156 body:not([type='saveas-file']):not([type='full-page']) 1158 body:not([type='saveas-file']):not([type='full-page'])
1157 [visibleif='saveas-file full-page'] { 1159 [visibleif='saveas-file full-page'] {
1158 display: none; 1160 display: none;
1159 } 1161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698