| OLD | NEW |
| (Empty) |
| 1 /* Copyright 2015 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 table, | |
| 6 table td, | |
| 7 table th { | |
| 8 border: 1px solid #777; | |
| 9 border-collapse: collapse; | |
| 10 padding-left: 4px; | |
| 11 padding-right: 4px; | |
| 12 } | |
| 13 | |
| 14 table th { | |
| 15 background: rgb(224, 236, 255); | |
| 16 cursor: pointer; | |
| 17 padding-bottom: 4px; | |
| 18 padding-top: 4px; | |
| 19 white-space: nowrap; | |
| 20 } | |
| 21 | |
| 22 .origin-cell { | |
| 23 min-width: 500px; | |
| 24 } | |
| 25 | |
| 26 table tr:hover { | |
| 27 background: rgb(255, 255, 187); | |
| 28 } | |
| 29 | |
| 30 .sort-column::after { | |
| 31 content: '▲'; | |
| 32 } | |
| 33 | |
| 34 :host([sort-reverse]) .sort-column::after { | |
| 35 content: '▼'; | |
| 36 } | |
| 37 | |
| 38 paper-slider { | |
| 39 width: 300px; | |
| 40 --paper-slider-input: { | |
| 41 width: 70px; | |
| 42 }; | |
| 43 } | |
| OLD | NEW |