tor-browser

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

toolbar.css (1052B)


      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 /******************************************************************************/
      6 /* Toolbar */
      7 
      8 .toolbar {
      9  display: flex;
     10  height: 22px;
     11  padding: 1px;
     12  padding-inline-start: 2px;
     13  background: var(--theme-toolbar-background);
     14  border-bottom: 1px solid var(--theme-splitter-color);
     15 }
     16 
     17 .toolbar .btn {
     18  margin-inline-start: 5px;
     19  color: var(--theme-body-color);
     20  background: var(--toolbarbutton-background);
     21  border: none;
     22  text-decoration: none;
     23  display: inline-block;
     24  text-align: center;
     25  white-space: nowrap;
     26  vertical-align: middle;
     27  cursor: pointer;
     28  user-select: none;
     29  padding: 0 3px;
     30  border-radius: 2px;
     31  outline-offset: -1px;
     32 }
     33 
     34 .toolbar .btn:hover {
     35  background: var(--toolbarbutton-hover-background);
     36 }
     37 
     38 .toolbar .btn:not([disabled]):hover:active {
     39  background-color: var(--theme-selection-background-hover);
     40 }