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 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1560 } | 1560 } |
1561 | 1561 |
1562 /* Table splitter element */ | 1562 /* Table splitter element */ |
1563 .table-header-splitter { | 1563 .table-header-splitter { |
1564 -webkit-border-start: 1px #d4d4d4 solid; | 1564 -webkit-border-start: 1px #d4d4d4 solid; |
1565 background-color: inherit; | 1565 background-color: inherit; |
1566 height: 27px; | 1566 height: 27px; |
1567 } | 1567 } |
1568 | 1568 |
1569 body[new-ui] .table-header-splitter { | 1569 body[new-ui] .table-header-splitter { |
1570 display: none; | 1570 background-image: -webkit-image-set( |
| 1571 url('../images/files/ui/new-ui/vertical_separator.png') 1x, |
| 1572 url('../images/files/ui/new-ui/2x/vertical_separator.png') 2x); |
| 1573 background-position: center; |
| 1574 background-repeat: repeat-y; |
| 1575 border: none; |
| 1576 height: 20px; |
| 1577 top: 10px; |
| 1578 width: 5px; |
1571 } | 1579 } |
1572 | 1580 |
1573 /* Container for a table header. */ | 1581 /* Container for a table header. */ |
1574 .table-header { | 1582 .table-header { |
1575 background-color: #f5f5f5; | 1583 background-color: #f5f5f5; |
1576 border-bottom: 1px #d2d2d2 solid; | 1584 border-bottom: 1px #d2d2d2 solid; |
1577 box-sizing: border-box; | 1585 box-sizing: border-box; |
1578 height: 27px; | 1586 height: 27px; |
1579 } | 1587 } |
1580 | 1588 |
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2363 body[new-ui] #iframe-drag-area { | 2371 body[new-ui] #iframe-drag-area { |
2364 -webkit-app-region: drag; | 2372 -webkit-app-region: drag; |
2365 height: 45px; | 2373 height: 45px; |
2366 left: 64px; | 2374 left: 64px; |
2367 position: absolute; | 2375 position: absolute; |
2368 right: 70px; | 2376 right: 70px; |
2369 top: 0; | 2377 top: 0; |
2370 width: auto; | 2378 width: auto; |
2371 z-index: 101; | 2379 z-index: 101; |
2372 } | 2380 } |
OLD | NEW |