tor-browser

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

Scopes.css (2029B)


      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 .secondary-panes .map-scopes-header {
      6  padding-inline-end: 3px;
      7 }
      8 
      9 .secondary-panes .header-buttons .dbg-img.dbg-img-shortcuts {
     10  width: 14px;
     11  height: 14px;
     12  /* Better vertical centering of the icon */
     13  margin-top: -2px;
     14 }
     15 
     16 .scopes-content .node.object-node {
     17  padding-inline-start: 7px;
     18 }
     19 
     20 .scopes-content .toggle-map-scopes a.mdn {
     21  padding-inline-start: 3px;
     22 }
     23 
     24 .scopes-content .toggle-map-scopes .dbg-img.dbg-img-shortcuts {
     25  background: var(--theme-comment);
     26 }
     27 
     28 .scopes-content .object-node.default-property {
     29  opacity: 0.6;
     30 }
     31 
     32 .scopes-content .object-node {
     33  padding-inline-start: 20px;
     34 }
     35 
     36 html[dir="rtl"] .scopes-content .object-node {
     37  padding-right: 4px;
     38 }
     39 
     40 .scopes-content .object-label {
     41  color: var(--theme-highlight-blue);
     42 }
     43 
     44 .objectBox-object,
     45 .objectBox-text,
     46 .objectBox-table,
     47 .objectLink-textNode,
     48 .objectLink-event,
     49 .objectLink-eventLog,
     50 .objectLink-regexp,
     51 .objectLink-object,
     52 .objectLink-Date,
     53 .theme-dark .objectBox-object,
     54 .theme-light .objectBox-object {
     55  white-space: nowrap;
     56 }
     57 
     58 .scopes-pane ._content {
     59  overflow: auto;
     60 }
     61 
     62 .scopes-list {
     63  padding: 4px 0;
     64 }
     65 
     66 .scopes-list .function-signature {
     67  display: inline-block;
     68 }
     69 
     70 .scopes-list .scope-type-toggle {
     71  text-align: center;
     72  padding-top: 10px;
     73  padding-bottom: 10px;
     74 }
     75 
     76 .scopes-list .scope-type-toggle button {
     77  /* Override color so that the link doesn't turn purple */
     78  color: var(--theme-body-color);
     79  font-size: inherit;
     80  text-decoration: underline;
     81  cursor: pointer;
     82 }
     83 
     84 .scopes-list .scope-type-toggle button:hover {
     85  background: transparent;
     86 }
     87 
     88 .scopes-list .tree.object-inspector .node.object-node {
     89  display: flex;
     90  align-items: center;
     91 }
     92 
     93 .scopes-list .tree.object-inspector .tree-node button.theme-twisty,
     94 .scopes-list button.invoke-getter {
     95  margin-top: 2px;
     96 }
     97 
     98 .scopes-list .tree {
     99  line-height: 15px;
    100 }