| OLD | NEW |
| 1 html.col-resize * { | 1 html.col-resize * { |
| 2 cursor: col-resize !important; | 2 cursor: col-resize !important; |
| 3 } | 3 } |
| 4 | 4 |
| 5 .table[hasElementFocus] > list > [lead] { | 5 .table[hasElementFocus] > list > [lead] { |
| 6 border-color: hsl(214, 91%, 65%); | 6 border-color: hsl(214, 91%, 65%); |
| 7 z-index: 2; | 7 z-index: 2; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .table[hasElementFocus] > list > [selected] { | 10 .table[hasElementFocus] > list > [selected] { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 border: 1px solid; | 34 border: 1px solid; |
| 35 } | 35 } |
| 36 | 36 |
| 37 .table-row { | 37 .table-row { |
| 38 width: 100%; | 38 width: 100%; |
| 39 text-align: start; | 39 text-align: start; |
| 40 display: -webkit-box; | 40 display: -webkit-box; |
| 41 } | 41 } |
| 42 | 42 |
| 43 .table-row-cell { | 43 .table-row-cell { |
| 44 display: -webkit-box; |
| 44 overflow: hidden; | 45 overflow: hidden; |
| 45 } | 46 } |
| 46 | 47 |
| 47 .table-row-cell > * { | 48 .table-row-cell > * { |
| 48 overflow: hidden; | 49 overflow: hidden; |
| 49 margin: 0 7px; | 50 margin: 0 7px; |
| 50 text-overflow: ellipsis; | 51 text-overflow: ellipsis; |
| 51 white-space: nowrap; | 52 white-space: nowrap; |
| 52 } | 53 } |
| 53 | 54 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 101 |
| 101 .table-header-splitter { | 102 .table-header-splitter { |
| 102 position: absolute; | 103 position: absolute; |
| 103 top: 0px; | 104 top: 0px; |
| 104 cursor: col-resize; | 105 cursor: col-resize; |
| 105 width: 5px; | 106 width: 5px; |
| 106 -webkit-margin-start: -1px; | 107 -webkit-margin-start: -1px; |
| 107 height: 100%; | 108 height: 100%; |
| 108 background-color: black; | 109 background-color: black; |
| 109 } | 110 } |
| OLD | NEW |