OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /* Outer frame of the dialog. */ | 7 /* Outer frame of the dialog. */ |
8 body { | 8 body { |
9 -webkit-box-flex: 1; | 9 -webkit-box-flex: 1; |
10 -webkit-box-orient: vertical; | 10 -webkit-box-orient: vertical; |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 background-repeat: no-repeat; | 318 background-repeat: no-repeat; |
319 height: 24px; | 319 height: 24px; |
320 width: 24px; | 320 width: 24px; |
321 } | 321 } |
322 | 322 |
323 /* Icon for files in the detail list. */ | 323 /* Icon for files in the detail list. */ |
324 .detail-icon[iconType="audio"] { | 324 .detail-icon[iconType="audio"] { |
325 background-image: url(../images/filetype_audio.png); | 325 background-image: url(../images/filetype_audio.png); |
326 } | 326 } |
327 | 327 |
| 328 .detail-icon[iconType="device"] { |
| 329 background-image: url(../images/filetype_device.png); |
| 330 } |
| 331 |
328 .detail-icon[iconType="doc"] { | 332 .detail-icon[iconType="doc"] { |
329 background-image: url(../images/filetype_doc.png); | 333 background-image: url(../images/filetype_doc.png); |
330 } | 334 } |
331 | 335 |
332 .detail-icon[iconType="folder"] { | 336 .detail-icon[iconType="folder"] { |
333 background-image: url(../images/filetype_folder.png); | 337 background-image: url(../images/filetype_folder.png); |
334 } | 338 } |
335 | 339 |
336 .detail-icon[iconType="html"] { | 340 .detail-icon[iconType="html"] { |
337 background-image: url(../images/filetype_html.png); | 341 background-image: url(../images/filetype_html.png); |
(...skipping 12 matching lines...) Expand all Loading... |
350 } | 354 } |
351 | 355 |
352 .detail-icon[iconType="spreadsheet"] { | 356 .detail-icon[iconType="spreadsheet"] { |
353 background-image: url(../images/filetype_spreadsheet.png); | 357 background-image: url(../images/filetype_spreadsheet.png); |
354 } | 358 } |
355 | 359 |
356 .detail-icon[iconType="text"] { | 360 .detail-icon[iconType="text"] { |
357 background-image: url(../images/filetype_text.png); | 361 background-image: url(../images/filetype_text.png); |
358 } | 362 } |
359 | 363 |
| 364 .detail-icon[iconType="unreadable"] { |
| 365 background-image: url(../images/filetype_unreadable_device.png); |
| 366 } |
| 367 |
360 .detail-icon[iconType="video"] { | 368 .detail-icon[iconType="video"] { |
361 background-image: url(../images/filetype_video.png); | 369 background-image: url(../images/filetype_video.png); |
362 } | 370 } |
363 | 371 |
364 /* The filename text in the preview pane. */ | 372 /* The filename text in the preview pane. */ |
365 .preview-filename { | 373 .preview-filename { |
366 -webkit-margin-start: 8px; | 374 -webkit-margin-start: 8px; |
367 color: #666; | 375 color: #666; |
368 font-weight: bold; | 376 font-weight: bold; |
369 margin-top: 10px; | 377 margin-top: 10px; |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ | 530 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ |
523 .overlay-pane { | 531 .overlay-pane { |
524 position: absolute; | 532 position: absolute; |
525 top: 0; | 533 top: 0; |
526 left: 0; | 534 left: 0; |
527 width: 100%; | 535 width: 100%; |
528 height: 100%; | 536 height: 100%; |
529 border: none; | 537 border: none; |
530 z-index: 100; | 538 z-index: 100; |
531 } | 539 } |
OLD | NEW |