| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 | 242 |
| 243 #roots-list li.root-item { | 243 #roots-list li.root-item { |
| 244 -webkit-box-align: center; | 244 -webkit-box-align: center; |
| 245 display: -webkit-box; | 245 display: -webkit-box; |
| 246 line-height: 22px; /* To accomodate for icons. */ | 246 line-height: 22px; /* To accomodate for icons. */ |
| 247 padding-left: 11px; | 247 padding-left: 11px; |
| 248 } | 248 } |
| 249 | 249 |
| 250 li.root-item > .root-label { | 250 li.root-item > .root-label { |
| 251 -webkit-box-flex: 1; | 251 -webkit-box-flex: 1; |
| 252 margin-right: 5px; | 252 margin: 0 2px; |
| 253 overflow: hidden; | 253 overflow: hidden; |
| 254 text-overflow: ellipsis; | 254 text-overflow: ellipsis; |
| 255 white-space: nowrap; | 255 white-space: nowrap; |
| 256 } | 256 } |
| 257 | 257 |
| 258 .volume-icon { | 258 .volume-icon { |
| 259 background-position: center center; | 259 background-position: center 2px; |
| 260 background-repeat: no-repeat; | 260 background-repeat: no-repeat; |
| 261 height: 24px; | 261 height: 24px; |
| 262 width: 24px; | 262 width: 24px; |
| 263 } | 263 } |
| 264 | 264 |
| 265 div.root-eject { | 265 div.root-eject { |
| 266 /* The transition commented out to work around crbug.com/157813 */ | 266 /* The transition commented out to work around crbug.com/157813 */ |
| 267 /*-webkit-transition: opacity 70ms linear;*/ | 267 /*-webkit-transition: opacity 70ms linear;*/ |
| 268 background-image: -webkit-image-set( | 268 background-image: -webkit-image-set( |
| 269 url('../images/files/ui/eject.png') 1x, | 269 url('../images/files/ui/eject.png') 1x, |
| (...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1634 | 1634 |
| 1635 #default-action-dialog { | 1635 #default-action-dialog { |
| 1636 min-width: 300px; | 1636 min-width: 300px; |
| 1637 width: auto; | 1637 width: auto; |
| 1638 } | 1638 } |
| 1639 | 1639 |
| 1640 .drive-welcome-wrapper { | 1640 .drive-welcome-wrapper { |
| 1641 /* drive_welcome.css will override it once loaded. */ | 1641 /* drive_welcome.css will override it once loaded. */ |
| 1642 display: none; | 1642 display: none; |
| 1643 } | 1643 } |
| OLD | NEW |