tor-browser

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

certManager.css (923B)


      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 /* Good enough support for equalsize=always for the cert manager use cases.
      6 * You probably shouldn't use this as-is elsewhere, this selector is somewhat
      7 * slow, it relies on stuff having display: flex, and you probably can use
      8 * something simpler if you need this */
      9 [equalsize="always"] > * {
     10  flex: 1;
     11  contain: inline-size;
     12 }
     13 
     14 treecol {
     15  flex: 1 auto;
     16  width: 0; /* Don't let intrinsic sizes affect our minimum size. */
     17 }
     18 
     19 #certmanager {
     20  /* This prevents horizontal scrollbars due to <tree> and non-XUL layout
     21   * interactions */
     22  padding: 0;
     23 }
     24 
     25 /* This matches the <tree> height from dialog.css */
     26 richlistbox {
     27  min-height: 15em;
     28  contain: size;
     29 }
     30 
     31 richlistbox,
     32 richlistitem {
     33  min-height: 30px;
     34 }