b2g/chrome/content/desktop.css

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 #controls {
michael@0 2 position: absolute;
michael@0 3 left: 0;
michael@0 4 bottom:0;
michael@0 5 right: 0;
michael@0 6 height: 30px;
michael@0 7 background-color: -moz-dialog;
michael@0 8 }
michael@0 9
michael@0 10 #home-button {
michael@0 11 margin: auto;
michael@0 12 margin-top: 3px;
michael@0 13 width: 24px;
michael@0 14 height: 24px;
michael@0 15 background: #eee url("images/desktop/home-black.png") center no-repeat;
michael@0 16 border: 1px solid #888;
michael@0 17 border-radius: 12px;
michael@0 18 display: block;
michael@0 19 }
michael@0 20
michael@0 21 #home-button::-moz-focus-inner {
michael@0 22 padding: 0;
michael@0 23 border: 0;
michael@0 24 }
michael@0 25
michael@0 26 #home-button:hover {
michael@0 27 background-image: url("images/desktop/home-white.png");
michael@0 28 background-color: #ccc;
michael@0 29 border-color: #555;
michael@0 30 }
michael@0 31
michael@0 32 #home-button.active {
michael@0 33 background-image: url("images/desktop/home-white.png");
michael@0 34 background-color: #888;
michael@0 35 border-color: black;
michael@0 36 }
michael@0 37
michael@0 38 #rotate-button {
michael@0 39 position: absolute;
michael@0 40 top: 3px;
michael@0 41 bottom: 3px;
michael@0 42 right: 3px;
michael@0 43 width: 24px;
michael@0 44 height: 24px;
michael@0 45 background: #eee url("images/desktop/rotate.png") center no-repeat;
michael@0 46 border: 1px solid #888;
michael@0 47 border-radius: 12px;
michael@0 48 display: block;
michael@0 49 }
michael@0 50
michael@0 51 #rotate-button:hover {
michael@0 52 background-color: #ccc;
michael@0 53 border-color: #555;
michael@0 54 }
michael@0 55
michael@0 56 #rotate-button.active {
michael@0 57 background-color: #888;
michael@0 58 border-color: black;
michael@0 59 }

mercurial