tor-browser

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

containers.css (1120B)


      1 /* 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 url("chrome://browser/content/usercontext/usercontext.css");
      6 
      7 .container-header-links {
      8  margin-block-end: 15px;
      9 }
     10 
     11 [data-identity-icon] {
     12  margin: 0;
     13  margin-inline-end: 16px;
     14 }
     15 
     16 #containersView {
     17  border: 0;
     18  background: transparent;
     19  margin-block-end: 8px;
     20 }
     21 
     22 #containersView richlistitem {
     23  padding-block: 4px;
     24  border-block-end: 1px solid var(--border-color);
     25 }
     26 
     27 #containersView richlistitem > .container-buttons {
     28  margin-inline-end: 4px;
     29 }
     30 
     31 /* Crop the label at the end using CSS. This isn't using XUL crop
     32 * and a value attribute because those labels cannot be highlighted
     33 * by the prefs' find-in-page feature.
     34 */
     35 .userContext-label-inprefs {
     36  display: flex;
     37  overflow: hidden;
     38  text-overflow: ellipsis;
     39  white-space: nowrap;
     40 }
     41 
     42 .userContext-icon-inprefs {
     43  margin-inline: 4px 10px;
     44  width: 24px;
     45  height: 24px;
     46 }
     47 
     48 #containersView richlistitem:last-of-type {
     49  border-block-end: 0;
     50 }