tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

exceptionDialog.css (693B)


      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/. */
      4 
      5 :root {
      6  max-width: 40em;
      7  min-width: 35em;
      8  min-height: 24em;
      9 }
     10 
     11 #warningSupplemental,
     12 .description {
     13  font-weight: var(--font-weight-bold);
     14 }
     15 
     16 .longDescription {
     17  padding-bottom: 1em;
     18 }
     19 
     20 #warningText,
     21 #warningSupplemental,
     22 #headerDescription,
     23 .longDescription {
     24  /* Don't let these affect the min horizontal size of the dialog */
     25  contain: inline-size;
     26  white-space: pre-wrap;
     27 }
     28 
     29 .description:empty,
     30 .longDescription:empty {
     31  display: none;
     32 }
     33 
     34 #locationTextBox {
     35  flex: 1;
     36 }