first (largest) part of sync for both themes with toolkit windows theme changes in...
[themes.git] / LCARStrek / 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/. */
c79d2bbe 4
e0a15019
RK
5@import url('chrome://global/skin/in-content/common.css');
6
c79d2bbe
RK
7:root {
8 background-color: #000000;
9 color: #FF9F00;
4ed82c79 10 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
dae45075
RK
11 padding-inline-start: 2em;
12 padding-inline-end: 2em;
c79d2bbe
RK
13}
14
15body {
16 border: 1px solid #9C9CFF;
569543b3 17 border-radius: 10px;
c79d2bbe
RK
18 padding: 3em;
19 min-width: 30em;
20 max-width: 65em;
21 margin: 4em auto;
22 background-color: #000000;
23 color: #FF9F00;
24}
25
26h1 {
02920d2b 27 margin: 0 0 .6em;
c79d2bbe
RK
28 border-bottom: 1px solid #008484;
29 font-size: 160%;
30 font-weight: normal;
31}
32
33a {
34 text-decoration: none;
e0a15019 35 color: #3333FF;
c79d2bbe
RK
36}
37
e0a15019
RK
38td > a:visited {
39 color: #8050B0;
40}
41
42body > table > tbody > tr:hover a {
c79d2bbe
RK
43 color: #000000;
44}
45
46p {
47 font-size: 110%;
48}
49
50#UI_goUp {
51 margin-top: 0;
52 float: left;
53}
54
e0a15019
RK
55#UI_goUp:hover {
56 background-color: #FFCF00;
57}
58#UI_goUp:hover > a {
59 color: #000000;
60}
61
dae45075 62#UI_goUp:dir(rtl) {
ca710c53
RK
63 float: right;
64}
65
c79d2bbe
RK
66#UI_showHidden {
67 margin-top: 0;
68 float: right;
69}
70
dae45075 71#UI_showHidden:dir(rtl) {
ca710c53
RK
72 float: left;
73}
74
e0a15019
RK
75/* HACK: as the checkbox is inside the label, we need to leave the ugle native checkbox */
76#UI_showHidden > label > input[type="checkbox"] {
77 opacity: 1;
78 position: static;
79}
80#UI_showHidden > label:hover {
81 color: #FFCF00;
82}
83
c79d2bbe
RK
84table {
85 clear: both;
86 width: 90%;
87 margin: 0 auto;
88}
89
90thead {
91 font-size: 130%;
92}
93
94/* last modified */
95th:first-child {
ca710c53 96 text-align: center !important;
c79d2bbe
RK
97}
98
e0a15019 99th:hover {
c79d2bbe 100 background-color: #FFCF00;
e0a15019
RK
101}
102
103th:hover > a {
c79d2bbe
RK
104 color: #000000;
105}
106
2e88f3cc 107body > table > tbody > tr:hover {
e0a15019
RK
108 background-color: #FFCF00;
109 color: #000000;
c79d2bbe
RK
110}
111
112/* let 'Size' and 'Last Modified' take only as much space as they need and 'Name' all the rest */
113td:not(:first-child) {
114 width: 0;
115}
116
117.up {
118 padding: 0 .5em;
dae45075 119 margin-inline-start: 20px;
c79d2bbe
RK
120}
121
122.up::before {
dae45075
RK
123 margin-inline-end: 4px;
124 margin-inline-start: -20px;
c79d2bbe
RK
125 vertical-align: middle;
126 content: url("chrome://global/skin/dirListing/up.png");
127}
e0a15019
RK
128
129#UI_goUp:hover > .up::before {
130 content: url("chrome://global/skin/dirListing/up-hover.png");
131}