| 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.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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 /* A single directory name in the list of path breadcrumbs. */ | 379 /* A single directory name in the list of path breadcrumbs. */ |
| 380 .breadcrumb-path { | 380 .breadcrumb-path { |
| 381 color: rgb(38, 86, 146); | 381 color: rgb(38, 86, 146); |
| 382 cursor: pointer; | 382 cursor: pointer; |
| 383 overflow: hidden; | 383 overflow: hidden; |
| 384 text-overflow: ellipsis; | 384 text-overflow: ellipsis; |
| 385 white-space: nowrap; | 385 white-space: nowrap; |
| 386 } | 386 } |
| 387 | 387 |
| 388 /* The final breadcrumb, representing the current directory. */ | 388 /* The final breadcrumb, representing the current directory. */ |
| 389 .breadcrumb-last { | 389 .breadcrumb-non-clickable { |
| 390 color: black; | 390 color: black; |
| 391 cursor: default; | 391 cursor: default; |
| 392 } | 392 } |
| 393 | 393 |
| 394 /* The > arrow between breadcrumbs. */ | 394 /* The > arrow between breadcrumbs. */ |
| 395 | 395 |
| 396 .breadcrumbs .separator { | 396 .breadcrumbs .separator { |
| 397 background-image: url('../images/breadcrumb-separator.png'); | 397 background-image: url('../images/breadcrumb-separator.png'); |
| 398 background-position: center center; | 398 background-position: center center; |
| 399 background-repeat: no-repeat; | 399 background-repeat: no-repeat; |
| (...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1190 border-right-width: 0; | 1190 border-right-width: 0; |
| 1191 margin: 0; | 1191 margin: 0; |
| 1192 min-width: 0; | 1192 min-width: 0; |
| 1193 padding: 0; | 1193 padding: 0; |
| 1194 width: 0; | 1194 width: 0; |
| 1195 } | 1195 } |
| 1196 | 1196 |
| 1197 .dialog-container:not([gdata]) #gdata-settings > * { | 1197 .dialog-container:not([gdata]) #gdata-settings > * { |
| 1198 display: none; | 1198 display: none; |
| 1199 } | 1199 } |
| OLD | NEW |