OLD | NEW |
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 { | 5 html { |
6 height: 100%; | 6 height: 100%; |
7 } | 7 } |
8 | 8 |
9 html.col-resize * { | 9 html.col-resize * { |
10 cursor: col-resize !important; | 10 cursor: col-resize !important; |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 div.root-eject { | 304 div.root-eject { |
305 -webkit-transition: opacity 70ms linear; | 305 -webkit-transition: opacity 70ms linear; |
306 background-image: -webkit-image-set( | 306 background-image: -webkit-image-set( |
307 url('../images/files/ui/eject.png') 1x, | 307 url('../images/files/ui/eject.png') 1x, |
308 url('../images/files/ui/2x/eject.png') 2x); | 308 url('../images/files/ui/2x/eject.png') 2x); |
309 background-position: center center; | 309 background-position: center center; |
310 background-repeat: no-repeat; | 310 background-repeat: no-repeat; |
311 cursor: pointer; | 311 cursor: pointer; |
312 height: 20px; | 312 height: 20px; |
313 margin-right: 6px; | 313 margin-right: 6px; |
314 opacity: 0; | 314 opacity: 0.7; |
315 width: 20px; | 315 width: 20px; |
316 } | 316 } |
317 | 317 |
318 div.root-eject:hover { | 318 div.root-eject:hover { |
319 opacity: 1; | 319 opacity: 1; |
320 } | 320 } |
321 | 321 |
322 .root-item[selected] > div.root-eject:not(:hover), | 322 .root-item[selected] > div.root-eject:not(:hover), |
323 .root-item:hover > div.root-eject:not(:hover) { | 323 .root-item:hover > div.root-eject:not(:hover) { |
324 opacity: 0.7; | 324 opacity: 0.7; |
(...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1614 } | 1614 } |
1615 | 1615 |
1616 #new-folder { | 1616 #new-folder { |
1617 margin-right: 30px; | 1617 margin-right: 30px; |
1618 } | 1618 } |
1619 | 1619 |
1620 #default-action-dialog { | 1620 #default-action-dialog { |
1621 min-width: 300px; | 1621 min-width: 300px; |
1622 width: auto; | 1622 width: auto; |
1623 } | 1623 } |
OLD | NEW |