Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright 2014 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 body { | |
| 6 margin: 10px 20px; | |
| 7 } | |
| 8 | |
| 9 section { | |
| 10 margin-top: 40px; | |
| 11 } | |
| 12 | |
| 13 table { | |
| 14 border: 1px solid gray; | |
| 15 border-spacing: 0; | |
| 16 margin-top: 15px; | |
| 17 width: 600px; | |
| 18 } | |
| 19 | |
| 20 thead { | |
| 21 background-color: rgb(220, 240, 255); | |
| 22 font-weight: bold; | |
| 23 } | |
| 24 | |
| 25 tbody { | |
| 26 border-top: 1px solid gray; | |
| 27 height: 200px; | |
| 28 overflow-x: hidden; | |
| 29 overflow-y: scroll; | |
| 30 } | |
| 31 | |
| 32 td { | |
| 33 padding: 5px; | |
| 34 text-align: left; | |
| 35 } | |
| 36 | |
| 37 td::first-letter { | |
| 38 text-transform: capitalize; | |
|
Dan Beam
2014/12/20 00:15:40
this probably doesn't internationalize well
| |
| 39 } | |
| 40 | |
| 41 .confirmed, | |
| 42 .valid { | |
| 43 color: green; | |
| 44 } | |
| 45 | |
| 46 .done { | |
| 47 color: darkGray; | |
| 48 } | |
| 49 | |
| 50 .invalid { | |
| 51 color: red; | |
| 52 } | |
| 53 | |
| 54 .directives td { | |
| 55 width: 190px; | |
| 56 } | |
| 57 | |
| 58 .tokens td { | |
| 59 width: 140px; | |
| 60 } | |
| 61 | |
| 62 table td.spacer { | |
| 63 width: 5px; | |
| 64 } | |
| 65 | |
| 66 tbody, | |
| 67 thead > tr { | |
| 68 display: block; | |
| 69 } | |
| OLD | NEW |