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.col-resize * { | 5 html.col-resize * { |
6 cursor: col-resize !important; | 6 cursor: col-resize !important; |
7 } | 7 } |
8 | 8 |
9 .table[hasElementFocus] > list > [lead] { | 9 .table[hasElementFocus] > list > [lead] { |
10 border-color: hsl(214, 91%, 65%); | 10 border-color: hsl(214, 91%, 65%); |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 margin: 0 7px; | 81 margin: 0 7px; |
82 overflow: hidden; | 82 overflow: hidden; |
83 text-overflow: ellipsis; | 83 text-overflow: ellipsis; |
84 white-space: nowrap; | 84 white-space: nowrap; |
85 } | 85 } |
86 | 86 |
87 .table-header-label > * { | 87 .table-header-label > * { |
88 padding: 0 12px; | 88 padding: 0 12px; |
89 } | 89 } |
90 | 90 |
91 .table-header-sort-image-desc:after { | 91 .table-header-sort-image-desc::after { |
92 -webkit-padding-start: 5px; | 92 -webkit-padding-start: 5px; |
93 color: #888; | 93 color: #888; |
94 content: '\25be'; /* BLACK DOWN-POINTING SMALL TRIANGLE */ | 94 content: '\25be'; /* BLACK DOWN-POINTING SMALL TRIANGLE */ |
95 position: relative; | 95 position: relative; |
96 top: -2px; | 96 top: -2px; |
97 } | 97 } |
98 | 98 |
99 .table-header-sort-image-asc:after { | 99 .table-header-sort-image-asc::after { |
100 -webkit-padding-start: 5px; | 100 -webkit-padding-start: 5px; |
101 color: #888; | 101 color: #888; |
102 content: '\25b4'; /* BLACK UP-POINTING SMALL TRIANGLE */ | 102 content: '\25b4'; /* BLACK UP-POINTING SMALL TRIANGLE */ |
103 position: relative; | 103 position: relative; |
104 top: -2px; | 104 top: -2px; |
105 } | 105 } |
106 | 106 |
107 .table-header-splitter { | 107 .table-header-splitter { |
108 -webkit-margin-start: -1px; | 108 -webkit-margin-start: -1px; |
109 background-color: black; | 109 background-color: black; |
110 cursor: col-resize; | 110 cursor: col-resize; |
111 height: 100%; | 111 height: 100%; |
112 left: 0; | 112 left: 0; |
113 position: absolute; | 113 position: absolute; |
114 top: 0; | 114 top: 0; |
115 width: 5px; | 115 width: 5px; |
116 } | 116 } |
OLD | NEW |