toolkit/components/prompts/content/tabprompts.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.

     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 /* Tab Modal Prompt boxes */
     6 tabmodalprompt {
     7   width: 100%;
     8   height: 100%;
     9   -moz-box-pack: center;
    10   -moz-box-orient: vertical;
    11 }
    13 .mainContainer {
    14   min-width: 20em;
    15   min-height: 12em;
    16 }
    18 .info\.title {
    19   margin-bottom: 1em !important;
    20   font-weight: bold;
    21 }
    23 .info\.body {
    24   margin: 0 !important;
    25   -moz-user-focus: normal;
    26   -moz-user-select: text;
    27   cursor: text !important;
    28   white-space: pre-wrap;
    29   unicode-bidi: -moz-plaintext;
    30 }
    32 label[value=""] {
    33   visibility: collapse;
    34 }

mercurial