relicense to MPL2
[themes.git] / EarlyBlue / global / dirListing / dirListing.css
... / ...
CommitLineData
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5:root {
6 background-color: #CCD0DD;
7 color: #000000;
8 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
9 -moz-padding-start: 2em;
10 -moz-padding-end: 2em;
11}
12
13body {
14 border: 1px solid #666699;
15 border-radius: 10px;
16 padding: 3em;
17 min-width: 30em;
18 max-width: 65em;
19 margin: 4em auto;
20 background-color: #9999CC;
21 color: #000000;
22}
23
24h1 {
25 margin: 0 0 .6em;
26 border-bottom: 1px solid #666699;
27 font-size: 160%;
28 font-weight: normal;
29}
30
31a {
32 text-decoration: none;
33}
34
35a:hover {
36 text-decoration: underline;
37}
38
39p {
40 font-size: 110%;
41}
42
43#UI_goUp {
44 margin-top: 0;
45 float: left;
46}
47
48body[dir="rtl"] #UI_goUp {
49 float: right;
50}
51
52#UI_showHidden {
53 margin-top: 0;
54 float: right;
55}
56
57body[dir="rtl"] #UI_showHidden {
58 float: left;
59}
60
61table {
62 clear: both;
63 width: 90%;
64 margin: 0 auto;
65}
66
67thead {
68 font-size: 130%;
69}
70
71/* last modified */
72th:first-child {
73 text-align: center !important;
74}
75
76th:hover > a {
77 text-decoration: underline;
78}
79
80tbody > tr:hover {
81 outline: 1px solid #808080;
82 outline-radius: .3em;
83}
84
85/* let 'Size' and 'Last Modified' take only as much space as they need and 'Name' all the rest */
86td:not(:first-child) {
87 width: 0;
88}
89
90.up {
91 padding: 0 .5em;
92 -moz-margin-start: 20px;
93}
94
95.up::before {
96 -moz-margin-end: 4px;
97 -moz-margin-start: -20px;
98 vertical-align: middle;
99 content: url("chrome://global/skin/dirListing/up.png");
100}