relicense to MPL2
[themes.git] / EarlyBlue / global / dirListing / dirListing.css
CommitLineData
9099c61d
RK
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/. */
4d12b027
RK
4
5:root {
6 background-color: #CCD0DD;
7 color: #000000;
4ed82c79 8 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
8caa872d
RK
9 -moz-padding-start: 2em;
10 -moz-padding-end: 2em;
4d12b027
RK
11}
12
13body {
14 border: 1px solid #666699;
569543b3 15 border-radius: 10px;
4d12b027 16 padding: 3em;
ecb2fda9
RK
17 min-width: 30em;
18 max-width: 65em;
4d12b027
RK
19 margin: 4em auto;
20 background-color: #9999CC;
21 color: #000000;
22}
23
24h1 {
02920d2b 25 margin: 0 0 .6em;
4d12b027
RK
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
ca710c53
RK
48body[dir="rtl"] #UI_goUp {
49 float: right;
50}
51
4d12b027
RK
52#UI_showHidden {
53 margin-top: 0;
54 float: right;
55}
56
ca710c53
RK
57body[dir="rtl"] #UI_showHidden {
58 float: left;
59}
60
4d12b027
RK
61table {
62 clear: both;
63 width: 90%;
64 margin: 0 auto;
65}
66
67thead {
68 font-size: 130%;
69}
70
6c5a63bb
RK
71/* last modified */
72th:first-child {
ca710c53 73 text-align: center !important;
4d12b027
RK
74}
75
6daee013 76th:hover > a {
4d12b027
RK
77 text-decoration: underline;
78}
79
6c5a63bb
RK
80tbody > tr:hover {
81 outline: 1px solid #808080;
cfae8c74 82 outline-radius: .3em;
4d12b027
RK
83}
84
85/* let 'Size' and 'Last Modified' take only as much space as they need and 'Name' all the rest */
ecb2fda9 86td:not(:first-child) {
4d12b027
RK
87 width: 0;
88}
89
6c5a63bb 90.up {
4d12b027 91 padding: 0 .5em;
6c5a63bb 92 -moz-margin-start: 20px;
4d12b027
RK
93}
94
95.up::before {
6c5a63bb
RK
96 -moz-margin-end: 4px;
97 -moz-margin-start: -20px;
98 vertical-align: middle;
4d12b027
RK
99 content: url("chrome://global/skin/dirListing/up.png");
100}