| 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[has-element-focus] > list > [lead] { | 9 .table[has-element-focus] > list > [lead] { |
| 10 border-color: hsl(214, 91%, 65%); | 10 border-color: hsl(214, 91%, 65%); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 white-space: nowrap; | 56 white-space: nowrap; |
| 57 } | 57 } |
| 58 | 58 |
| 59 .table-header { | 59 .table-header { |
| 60 background-color: rgb(220, 220, 220); | 60 background-color: rgb(220, 220, 220); |
| 61 overflow: hidden; | 61 overflow: hidden; |
| 62 position: relative; | 62 position: relative; |
| 63 } | 63 } |
| 64 | 64 |
| 65 .table-header-inner { | 65 .table-header-inner { |
| 66 -webkit-user-select: none; | |
| 67 cursor: default; | 66 cursor: default; |
| 68 display: -webkit-box; | 67 display: -webkit-box; |
| 69 position: relative; | 68 position: relative; |
| 70 text-align: start; | 69 text-align: start; |
| 70 user-select: none; |
| 71 } | 71 } |
| 72 | 72 |
| 73 .table-header-cell { | 73 .table-header-cell { |
| 74 font-weight: normal; | 74 font-weight: normal; |
| 75 overflow: hidden; | 75 overflow: hidden; |
| 76 text-overflow: ellipsis; | 76 text-overflow: ellipsis; |
| 77 white-space: nowrap; | 77 white-space: nowrap; |
| 78 } | 78 } |
| 79 | 79 |
| 80 .table-header-label { | 80 .table-header-label { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 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 |