tor-browser

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

main.css (1263B)


      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 @import "chrome://devtools/skin/variables.css";
      6 @import "chrome://devtools/skin/common.css";
      7 @import "chrome://devtools/skin/toolbars.css";
      8 
      9 @import "chrome://devtools/content/shared/components/tree/TreeView.css";
     10 @import "chrome://devtools/content/shared/components/tabs/Tabs.css";
     11 
     12 @import "general.css";
     13 @import "search-box.css";
     14 @import "toolbar.css";
     15 @import "json-panel.css";
     16 @import "text-panel.css";
     17 @import "headers-panel.css";
     18 
     19 /******************************************************************************/
     20 /* Panel Content */
     21 
     22 .tab-panel-inner {
     23  display: flex;
     24  flex-direction: column;
     25  height: 100%;
     26 }
     27 
     28 .panelContent {
     29  direction: ltr;
     30  overflow-y: auto;
     31  width: 100%;
     32  flex: 1;
     33  outline-offset: -2px;
     34 }
     35 
     36 /* The tree takes the entire horizontal space within the panel content. */
     37 .panelContent .treeTable {
     38  width: 100%;
     39  font-family: var(--monospace-font-family);
     40  outline-offset: -2px;
     41 }
     42 
     43 /* Make sure there is a little space between label and value columns. */
     44 .panelContent .treeTable .treeLabelCell {
     45  padding-right: 17px;
     46 }