Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
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/. */
5 /* ===== preferences.css =====================================================
6 == Styles used by the XUL prefwindow element.
7 ======================================================================= */
9 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
11 /* ::::: dialog ::::: */
13 prefwindow {
14 padding: 0px;
15 }
17 prefpane {
18 padding: 8px;
19 }
21 prefwindow[type="child"] {
22 padding: 8px;
23 }
25 prefwindow[type="child"] > prefpane {
26 padding: 0px;
27 }
29 .prefWindow-dlgbuttons {
30 padding-bottom: 8px;
31 -moz-padding-start: 8px;
32 -moz-padding-end: 8px;
33 }
35 prefwindow[type="child"] .prefWindow-dlgbuttons {
36 padding: 0px;
37 }
39 radio[pane] {
40 -moz-appearance: none;
41 min-width: 4.5em;
42 margin: 0;
43 padding: 3px;
44 color: -moz-FieldText;
45 }
47 .paneSelector {
48 -moz-appearance: listbox;
49 margin: 8px 8px 0 8px;
50 padding: 0;
51 }
53 .paneButtonIcon {
54 width: 32px;
55 height: 32px;
56 }
58 radio[pane][selected="true"] {
59 background-color: Highlight;
60 color: HighlightText;
61 }