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 999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1010 | 1010 |
1011 #detail-table > list, | 1011 #detail-table > list, |
1012 .thumbnail-grid { | 1012 .thumbnail-grid { |
1013 -webkit-box-flex: 1; | 1013 -webkit-box-flex: 1; |
1014 } | 1014 } |
1015 | 1015 |
1016 body[new-ui] .main-panel #detail-table > list { | 1016 body[new-ui] .main-panel #detail-table > list { |
1017 padding-bottom: 52px; /* height of the preview panel */ | 1017 padding-bottom: 52px; /* height of the preview panel */ |
1018 } | 1018 } |
1019 | 1019 |
| 1020 body[new-ui] .main-panel #detail-table > list > .drag-selection-border { |
| 1021 -webkit-box-sizing: border-box; |
| 1022 background-color: rgba(255, 255, 255, 0.3); |
| 1023 border: 2px solid rgba(255, 255, 255, 0.6); |
| 1024 border-radius: 0; /* Override the style of cr.ui.List */ |
| 1025 outline: 1px solid rgba(0, 0, 0, 0.1); |
| 1026 padding: 0; /* Override the style of cr.ui.List */ |
| 1027 position: absolute; |
| 1028 z-index: 2; |
| 1029 } |
| 1030 |
1020 .spinner { | 1031 .spinner { |
1021 background-image: url('../images/common/spinner.svg'); | 1032 background-image: url('../images/common/spinner.svg'); |
1022 background-size: 100%; | 1033 background-size: 100%; |
1023 height: 22px; | 1034 height: 22px; |
1024 left: 50%; | 1035 left: 50%; |
1025 margin-left: -11px; | 1036 margin-left: -11px; |
1026 margin-top: -11px; | 1037 margin-top: -11px; |
1027 opacity: 0.5; | 1038 opacity: 0.5; |
1028 position: absolute; | 1039 position: absolute; |
1029 top: 50%; | 1040 top: 50%; |
(...skipping 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2460 body[new-ui] #iframe-drag-area { | 2471 body[new-ui] #iframe-drag-area { |
2461 -webkit-app-region: drag; | 2472 -webkit-app-region: drag; |
2462 height: 45px; | 2473 height: 45px; |
2463 left: 64px; | 2474 left: 64px; |
2464 position: absolute; | 2475 position: absolute; |
2465 right: 70px; | 2476 right: 70px; |
2466 top: 0; | 2477 top: 0; |
2467 width: auto; | 2478 width: auto; |
2468 z-index: 101; | 2479 z-index: 101; |
2469 } | 2480 } |
OLD | NEW |