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 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1026 white-space: nowrap; | 1026 white-space: nowrap; |
1027 padding-right: 5px; | 1027 padding-right: 5px; |
1028 } | 1028 } |
1029 | 1029 |
1030 .task-item > img { | 1030 .task-item > img { |
1031 -webkit-margin-end: 5px; | 1031 -webkit-margin-end: 5px; |
1032 } | 1032 } |
1033 | 1033 |
1034 /* The selection summary text at the bottom of the preview pane. */ | 1034 /* The selection summary text at the bottom of the preview pane. */ |
1035 .preview-summary { | 1035 .preview-summary { |
| 1036 -webkit-box-flex: 1; |
1036 color: #666666; | 1037 color: #666666; |
1037 overflow: hidden; | 1038 overflow: hidden; |
1038 padding: 5px; | 1039 padding: 5px; |
1039 text-overflow: ellipsis; | 1040 text-overflow: ellipsis; |
1040 white-space: nowrap; | 1041 white-space: nowrap; |
1041 vertical-align: middle; | 1042 vertical-align: middle; |
1042 } | 1043 } |
1043 | 1044 |
1044 .dialog-footer .filename-label { | 1045 .dialog-footer .filename-label { |
1045 -webkit-box-orient: horizontal; | 1046 -webkit-box-orient: horizontal; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 | 1099 |
1099 div.offline { | 1100 div.offline { |
1100 -webkit-box-pack: center; | 1101 -webkit-box-pack: center; |
1101 display: -webkit-box; | 1102 display: -webkit-box; |
1102 } | 1103 } |
1103 | 1104 |
1104 div.offline > * { | 1105 div.offline > * { |
1105 -webkit-box-align: center; | 1106 -webkit-box-align: center; |
1106 display: -webkit-box; | 1107 display: -webkit-box; |
1107 } | 1108 } |
OLD | NEW |