OLD | NEW |
| (Empty) |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 | |
5 /* Derived from /ui/webui/resources/css/table.css. */ | |
6 | |
7 html.col-resize * { | |
8 cursor: col-resize !important; | |
9 } | |
10 | |
11 .table[hasElementFocus] > list > [lead] { | |
12 z-index: 2; | |
13 } | |
14 | |
15 .table-row { | |
16 display: -webkit-box; | |
17 text-align: start; | |
18 width: 100%; | |
19 } | |
20 | |
21 .table-row-cell { | |
22 display: -webkit-box; | |
23 overflow: hidden; | |
24 } | |
25 | |
26 .table-row-cell > * { | |
27 overflow: hidden; | |
28 text-overflow: ellipsis; | |
29 white-space: nowrap; | |
30 } | |
31 | |
32 .table-header { | |
33 overflow: hidden; | |
34 position: relative; | |
35 } | |
36 | |
37 .table-header-inner { | |
38 -webkit-user-select: none; | |
39 cursor: default; | |
40 display: -webkit-box; | |
41 position: relative; | |
42 text-align: start; | |
43 } | |
44 | |
45 .table-header-cell { | |
46 font-weight: normal; | |
47 overflow: hidden; | |
48 text-overflow: ellipsis; | |
49 white-space: nowrap; | |
50 } | |
51 | |
52 .table-header-label { | |
53 overflow: hidden; | |
54 text-overflow: ellipsis; | |
55 white-space: nowrap; | |
56 } | |
57 | |
58 .table-header-splitter { | |
59 cursor: col-resize; | |
60 height: 100%; | |
61 left: 0; | |
62 position: absolute; | |
63 top: 0; | |
64 } | |
OLD | NEW |