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.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | body { |
michael@0 | 6 | min-width: 330px; |
michael@0 | 7 | max-width: 100%; |
michael@0 | 8 | min-height: 330px; |
michael@0 | 9 | max-height: 100%; |
michael@0 | 10 | } |
michael@0 | 11 | |
michael@0 | 12 | #menu { |
michael@0 | 13 | position: absolute; |
michael@0 | 14 | top: 5px; |
michael@0 | 15 | color: gray; |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | .warningBackground { |
michael@0 | 19 | display: none; |
michael@0 | 20 | background: -moz-Dialog; |
michael@0 | 21 | width:100%; |
michael@0 | 22 | height:100%; |
michael@0 | 23 | z-index:10; |
michael@0 | 24 | top:0; |
michael@0 | 25 | left:0; |
michael@0 | 26 | position:fixed; |
michael@0 | 27 | } |
michael@0 | 28 | |
michael@0 | 29 | .warningMessage { |
michael@0 | 30 | color: -moz-FieldText; |
michael@0 | 31 | position: relative; |
michael@0 | 32 | min-width: 330px; |
michael@0 | 33 | max-width: 50em; |
michael@0 | 34 | margin: 4em auto; |
michael@0 | 35 | border: 1px solid ThreeDShadow; |
michael@0 | 36 | border-radius: 10px; |
michael@0 | 37 | padding: 3em; |
michael@0 | 38 | -moz-padding-start: 30px; |
michael@0 | 39 | background: -moz-Field; |
michael@0 | 40 | margin-left: auto; |
michael@0 | 41 | text-align: center; |
michael@0 | 42 | } |
michael@0 | 43 | |
michael@0 | 44 | .tab { |
michael@0 | 45 | display: none; |
michael@0 | 46 | } |
michael@0 | 47 | |
michael@0 | 48 | .active { |
michael@0 | 49 | display: block; |
michael@0 | 50 | } |
michael@0 | 51 | |
michael@0 | 52 | #menu .selected { |
michael@0 | 53 | color: blue; |
michael@0 | 54 | } |
michael@0 | 55 | |
michael@0 | 56 | #refreshdiv { |
michael@0 | 57 | top: 5px; |
michael@0 | 58 | position: absolute; |
michael@0 | 59 | right: 30px; |
michael@0 | 60 | } |