Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 %filter substitution
6 %include defines.inc
8 .list-item > a {
9 color: inherit;
10 text-decoration: none;
11 }
13 .list-item {
14 height: 4.8em;
15 font-size: 1em !important;
16 }
18 #private-downloads-list .list-item {
19 background-image: none;
20 background-color: #080a0b;
21 color: #ddd;
22 }
24 div.details {
25 background-color: #eef2f5;
26 }
28 #private-downloads-list div.details {
29 background-image: none;
30 background-color: #393e43;
31 }
33 li:active div.details,
34 #private-downloads-list li:active div.details {
35 background-image: none;
36 background-color: transparent;
37 }
39 .details {
40 margin-left: 4.8em;
41 padding: .5em;
42 min-height: 3.7em;
43 }
45 .date {
46 color: gray;
47 }
49 .domain,
50 .size {
51 display: inline;
52 }
54 .displayState {
55 color: gray;
56 margin-bottom: -3px; /* Prevent overflow that hides bottom border */
57 }
59 .size:after {
60 content: " - ";
61 white-space: pre;
62 }
64 #no-downloads-indicator {
65 display: none;
66 }
68 #private-downloads-list:empty + #normal-downloads-list:empty + #no-downloads-indicator {
69 display: block;
70 text-align: center;
71 padding-top: 3.9em;
72 }