diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-12-14 14:37:24 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-12-14 14:37:24 -0500 |
commit | 4e34c57467a8d38d593c6fbb7c0d63c3257e99f0 (patch) | |
tree | ff5ee62f90cebe34f23f734669e2c526d783caf0 /application/palemoon/base/content/highlighter.css | |
parent | dacb3da00bd17e69f1a8f1080668808a5f3fe431 (diff) | |
download | UXP-4e34c57467a8d38d593c6fbb7c0d63c3257e99f0.tar UXP-4e34c57467a8d38d593c6fbb7c0d63c3257e99f0.tar.gz UXP-4e34c57467a8d38d593c6fbb7c0d63c3257e99f0.tar.lz UXP-4e34c57467a8d38d593c6fbb7c0d63c3257e99f0.tar.xz UXP-4e34c57467a8d38d593c6fbb7c0d63c3257e99f0.zip |
Remove Pale Moon from the Unified XUL Platform repository
Development will proceed at https://github.com/MoonchildProductions/Pale-Moon
Diffstat (limited to 'application/palemoon/base/content/highlighter.css')
-rw-r--r-- | application/palemoon/base/content/highlighter.css | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/application/palemoon/base/content/highlighter.css b/application/palemoon/base/content/highlighter.css deleted file mode 100644 index 8fb9d8085..000000000 --- a/application/palemoon/base/content/highlighter.css +++ /dev/null @@ -1,105 +0,0 @@ -/* 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/. */ - -.highlighter-container { - pointer-events: none; -} - -.highlighter-controls { - position: absolute; - top: 0; - left: 0; -} - -.highlighter-outline-container { - overflow: hidden; - position: relative; -} - -.highlighter-outline { - position: absolute; -} - -.highlighter-outline[hidden] { - opacity: 0; - pointer-events: none; - display: -moz-box; -} - -.highlighter-outline:not([disable-transitions]) { - transition-property: opacity, top, left, width, height; - transition-duration: 0.1s; - transition-timing-function: linear; -} - -/* - * Node Infobar - */ - -.highlighter-nodeinfobar-container { - position: absolute; - max-width: 95%; -} - -.highlighter-nodeinfobar-container[hidden] { - opacity: 0; - pointer-events: none; - display: -moz-box; -} - -.highlighter-nodeinfobar-container:not([disable-transitions]), -.highlighter-nodeinfobar-container[disable-transitions][force-transitions] { - transition-property: transform, opacity, top, left; - transition-duration: 0.1s; - transition-timing-function: linear; -} - -.highlighter-nodeinfobar-text { - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; - direction: ltr; -} - -.highlighter-nodeinfobar-button > .toolbarbutton-text { - display: none; -} - -.highlighter-nodeinfobar-container:not([locked]):not(:hover) > .highlighter-nodeinfobar > .highlighter-nodeinfobar-button { - visibility: hidden; -} - -.highlighter-nodeinfobar-container[locked] > .highlighter-nodeinfobar, -.highlighter-nodeinfobar-container:not([locked]):hover > .highlighter-nodeinfobar { - pointer-events: auto; -} - -html|*.highlighter-nodeinfobar-id, -html|*.highlighter-nodeinfobar-classes, -html|*.highlighter-nodeinfobar-pseudo-classes, -html|*.highlighter-nodeinfobar-tagname { - -moz-user-select: text; - -moz-user-focus: normal; - cursor: text; -} - -.highlighter-nodeinfobar-arrow { - display: none; -} - -.highlighter-nodeinfobar-container[position="top"]:not([hide-arrow]) > .highlighter-nodeinfobar-arrow-bottom { - display: block; -} - -.highlighter-nodeinfobar-container[position="bottom"]:not([hide-arrow]) > .highlighter-nodeinfobar-arrow-top { - display: block; -} - -.highlighter-nodeinfobar-container[disabled] { - visibility: hidden; -} - -html|*.highlighter-nodeinfobar-tagname { - text-transform: lowercase; -} |