OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 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 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
858 } | 858 } |
859 | 859 |
860 .detail-icon[iconType="video"] { | 860 .detail-icon[iconType="video"] { |
861 background-image: url(../images/filetype_video.png); | 861 background-image: url(../images/filetype_video.png); |
862 } | 862 } |
863 | 863 |
864 .detail-icon[iconType="word"] { | 864 .detail-icon[iconType="word"] { |
865 background-image: url(../images/filetype_word.png); | 865 background-image: url(../images/filetype_word.png); |
866 } | 866 } |
867 | 867 |
| 868 .detail-icon[iconType="gdoc"] { |
| 869 background-image: url(../images/filetype_doc.png); |
| 870 } |
| 871 |
| 872 .detail-icon[iconType="gsheet"] { |
| 873 background-image: url(../images/filetype_spreadsheet.png); |
| 874 } |
| 875 |
| 876 .detail-icon[iconType="gslides"] { |
| 877 background-image: url(../images/filetype_presentation.png); |
| 878 } |
| 879 |
| 880 .detail-icon[iconType="gdraw"] { |
| 881 background-image: url(../images/filetype_drawing.png); |
| 882 } |
| 883 |
| 884 .detail-icon[iconType="gtable"] { |
| 885 background-image: url(../images/filetype_table.png); |
| 886 } |
| 887 |
868 /* The filename text in the preview pane. */ | 888 /* The filename text in the preview pane. */ |
869 .preview-filename { | 889 .preview-filename { |
870 -webkit-margin-start: 8px; | 890 -webkit-margin-start: 8px; |
871 color: #666; | 891 color: #666; |
872 font-weight: bold; | 892 font-weight: bold; |
873 margin-top: 10px; | 893 margin-top: 10px; |
874 overflow: hidden; | 894 overflow: hidden; |
875 text-overflow: ellipsis; | 895 text-overflow: ellipsis; |
876 white-space: nowrap; | 896 white-space: nowrap; |
877 } | 897 } |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
993 left: 0; | 1013 left: 0; |
994 width: 100%; | 1014 width: 100%; |
995 height: 100%; | 1015 height: 100%; |
996 border: none; | 1016 border: none; |
997 z-index: 100; | 1017 z-index: 100; |
998 } | 1018 } |
999 | 1019 |
1000 menu.file-context-menu { | 1020 menu.file-context-menu { |
1001 z-index: 4; | 1021 z-index: 4; |
1002 } | 1022 } |
OLD | NEW |