tor-browser

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

unexpectedScriptLoad.css (1046B)


      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 https://mozilla.org/MPL/2.0/. */
      4 
      5 .dialogBox {
      6  overflow: hidden;
      7  min-height: 22em;
      8  min-width: 66ch;
      9 }
     10 
     11 .dialogTitleBar {
     12  display: flex;
     13  padding: 0.4em 0.2em;
     14  border-bottom: 1px solid var(--border-color);
     15 }
     16 
     17 .dialogTitle {
     18  font-weight: var(--heading-font-weight);
     19  text-align: center;
     20  user-select: none;
     21  flex: 1;
     22 }
     23 
     24 .dialogContent {
     25  display: block;
     26  margin-inline: 10px;
     27  padding-inline: 10px;
     28 }
     29 
     30 .scriptUrl {
     31  font-family: monospace;
     32  font-size: var(--font-size-small);
     33  color: var(--text-color-deemphasized);
     34  margin-top: 0.5em;
     35 }
     36 
     37 #actionContainer {
     38  display: flex;
     39  align-items: center;
     40  gap: 15px;
     41  justify-content: space-between;
     42  width: 100%;
     43 }
     44 
     45 #actionButtons {
     46  align-items: center; /* Centers elements vertically */
     47  gap: 5px;
     48  padding-block: 10px;
     49 }
     50 
     51 #telemetry-disabled-message {
     52  font-style: italic;
     53  padding-bottom: 5px;
     54 }