1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/themes/windows/global/aboutCache.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,66 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +h2 { 1.9 + margin-top: 2em; 1.10 +} 1.11 + 1.12 +table { 1.13 + table-layout: fixed; 1.14 + width: 100%; 1.15 + margin-bottom: 1em; 1.16 + padding: 0.5em 0; 1.17 + border-radius: 10px; 1.18 +} 1.19 + 1.20 +#disk, 1.21 +#memory, 1.22 +#offline { 1.23 + background-color: rgba(0, 0, 0, .1); 1.24 +} 1.25 + 1.26 +th { 1.27 + width: 14em; 1.28 + white-space: nowrap; 1.29 + text-align: end; 1.30 +} 1.31 + 1.32 +td { 1.33 + font-family: -moz-fixed; 1.34 + word-wrap: break-word; 1.35 +} 1.36 + 1.37 +#col-key { 1.38 + width: 60%; 1.39 +} 1.40 + 1.41 +#col-dataSize, 1.42 +#col-fetchCount, 1.43 +#col-lastModified, 1.44 +#col-expires { 1.45 + width: 13%; 1.46 +} 1.47 + 1.48 +#entries > tbody > tr:nth-child(odd) { 1.49 + background-color: rgba(0, 0, 0, .03); 1.50 +} 1.51 + 1.52 +#entries > tbody > tr:nth-child(even) { 1.53 + background-color: rgba(0, 0, 0, .06); 1.54 +} 1.55 + 1.56 +#entries > tbody > tr > td { 1.57 + padding: .5em 0; 1.58 + text-align: center; 1.59 +} 1.60 + 1.61 +#entries > thead > tr > th { 1.62 + text-align: center; 1.63 + white-space: normal; 1.64 +} 1.65 + 1.66 +#entries > thead > tr > th:first-child, 1.67 +#entries > tbody > tr > td:first-child { 1.68 + text-align: start; 1.69 +}