browser/devtools/sourceeditor/codemirror/dialog/dialog.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 .CodeMirror-dialog {
     2   position: absolute;
     3   left: 0; right: 0;
     4   background: white;
     5   z-index: 15;
     6   padding: .1em .8em;
     7   overflow: hidden;
     8   color: #333;
     9 }
    11 .CodeMirror-dialog-top {
    12   border-bottom: 1px solid #eee;
    13   top: 0;
    14 }
    16 .CodeMirror-dialog-bottom {
    17   border-top: 1px solid #eee;
    18   bottom: 0;
    19 }
    21 .CodeMirror-dialog input {
    22   border: none;
    23   outline: none;
    24   background: transparent;
    25   width: 20em;
    26   color: inherit;
    27   font-family: monospace;
    28 }
    30 .CodeMirror-dialog button {
    31   font-size: 70%;
    32 }

mercurial