Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | h2 { |
michael@0 | 6 | margin-top: 2em; |
michael@0 | 7 | } |
michael@0 | 8 | |
michael@0 | 9 | table { |
michael@0 | 10 | table-layout: fixed; |
michael@0 | 11 | width: 100%; |
michael@0 | 12 | margin-bottom: 1em; |
michael@0 | 13 | padding: 0.5em 0; |
michael@0 | 14 | border-radius: 10px; |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | #disk, |
michael@0 | 18 | #memory, |
michael@0 | 19 | #offline { |
michael@0 | 20 | background-color: rgba(0, 0, 0, .1); |
michael@0 | 21 | } |
michael@0 | 22 | |
michael@0 | 23 | th { |
michael@0 | 24 | width: 14em; |
michael@0 | 25 | white-space: nowrap; |
michael@0 | 26 | text-align: end; |
michael@0 | 27 | } |
michael@0 | 28 | |
michael@0 | 29 | td { |
michael@0 | 30 | font-family: -moz-fixed; |
michael@0 | 31 | word-wrap: break-word; |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | #col-key { |
michael@0 | 35 | width: 60%; |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | #col-dataSize, |
michael@0 | 39 | #col-fetchCount, |
michael@0 | 40 | #col-lastModified, |
michael@0 | 41 | #col-expires { |
michael@0 | 42 | width: 13%; |
michael@0 | 43 | } |
michael@0 | 44 | |
michael@0 | 45 | #entries > tbody > tr:nth-child(odd) { |
michael@0 | 46 | background-color: rgba(0, 0, 0, .03); |
michael@0 | 47 | } |
michael@0 | 48 | |
michael@0 | 49 | #entries > tbody > tr:nth-child(even) { |
michael@0 | 50 | background-color: rgba(0, 0, 0, .06); |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | #entries > tbody > tr > td { |
michael@0 | 54 | padding: .5em 0; |
michael@0 | 55 | text-align: center; |
michael@0 | 56 | } |
michael@0 | 57 | |
michael@0 | 58 | #entries > thead > tr > th { |
michael@0 | 59 | text-align: center; |
michael@0 | 60 | white-space: normal; |
michael@0 | 61 | } |
michael@0 | 62 | |
michael@0 | 63 | #entries > thead > tr > th:first-child, |
michael@0 | 64 | #entries > tbody > tr > td:first-child { |
michael@0 | 65 | text-align: start; |
michael@0 | 66 | } |