diff options
author | Horst3180 | 2015-12-18 21:44:55 +0100 |
---|---|---|
committer | Horst3180 | 2015-12-18 21:44:55 +0100 |
commit | ded2e0a6111ac1e08e363b5b8de933db90561adb (patch) | |
tree | 16cb3c0e28f1fe57a283f2314682933461249e26 /arc-firefox-theme/chrome/browser/devtools/memory.css | |
parent | 30ef15ff5594bd80014551f01e576cc8af8a8ae1 (diff) | |
download | solarc-firefox-theme-ded2e0a6111ac1e08e363b5b8de933db90561adb.tar.gz solarc-firefox-theme-ded2e0a6111ac1e08e363b5b8de933db90561adb.tar.xz solarc-firefox-theme-ded2e0a6111ac1e08e363b5b8de933db90561adb.zip |
update to 44.0b1
Diffstat (limited to 'arc-firefox-theme/chrome/browser/devtools/memory.css')
-rw-r--r-- | arc-firefox-theme/chrome/browser/devtools/memory.css | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/arc-firefox-theme/chrome/browser/devtools/memory.css b/arc-firefox-theme/chrome/browser/devtools/memory.css deleted file mode 100644 index 78f8f1f..0000000 --- a/arc-firefox-theme/chrome/browser/devtools/memory.css +++ /dev/null @@ -1,81 +0,0 @@ -/* vim:set ts=2 sw=2 sts=2 et: */ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this file, - * You can obtain one at http://mozilla.org/MPL/2.0/. */ - -/* CSS Variables specific to this panel that aren't defined by the themes */ -.theme-dark { - --cell-border-color: rgba(255,255,255,0.15); - --cell-border-color-light: rgba(255,255,255,0.1); - --focus-cell-border-color: rgba(255,255,255,0.5); - --row-alt-background-color: rgba(29,79,115,0.15); - --row-hover-background-color: rgba(29,79,115,0.25); -} - -.theme-light { - --cell-border-color: rgba(0,0,0,0.15); - --cell-border-color-light: rgba(0,0,0,0.1); - --focus-cell-border-color: rgba(0,0,0,0.3); - --row-alt-background-color: rgba(76,158,217,0.1); - --row-hover-background-color: rgba(76,158,217,0.2); -} - -.heap-view { - position: relative; -} - -.heap-view .theme-twisty { - text-align: end; -} - -.heap-tree-item { - list-style-type: none; - /* display: none; */ -} - -.heap-tree-item[expanded] { - display: block; -} - -.heap-tree-item:nth-child(2n) { - background-color: var(--row-alt-background-color); -} - -.heap-tree-item:hover { - background-color: var(--row-hover-background-color); -} - -.heap-tree-item:focus { - background-color: var(--theme-selection-background); -} - -.heap-tree-item:focus description { - color: var(--theme-selection-color) !important; -} - -.heap-tree-item:focus .call-tree-cell { - -moz-border-end-color: var(--focus-cell-border-color); -} - - -.heap-tree-cell[type="bytes"], .heap-tree-cell[type="count"] { - position: absolute; - text-align: right; - width: 40px; -} - -.heap-tree-cell[type="name"] { - width: 150px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} - -.heap-tree-cell[type="count"] { - left: 300px; -} - -.heap-tree-cell[type="bytes"] { - left: 250px; -} |