diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 05:06:10 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 05:06:10 -0500 |
commit | 6d614170cbfa958564eb5f824234ad5a9e484344 (patch) | |
tree | 3e1eb384382f30987cb2e64bd654afa8b74fd06b /application/basilisk/themes/shared/downloads/allDownloadsViewOverlay.inc.css | |
parent | 2a6b605d64b19411a300efdbbd7f78c349f90206 (diff) | |
download | UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.gz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.lz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.xz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.zip |
Revert "Add Basilisk"
This reverts commit e72ef92b5bdc43cd2584198e2e54e951b70299e8.
Diffstat (limited to 'application/basilisk/themes/shared/downloads/allDownloadsViewOverlay.inc.css')
-rw-r--r-- | application/basilisk/themes/shared/downloads/allDownloadsViewOverlay.inc.css | 131 |
1 files changed, 0 insertions, 131 deletions
diff --git a/application/basilisk/themes/shared/downloads/allDownloadsViewOverlay.inc.css b/application/basilisk/themes/shared/downloads/allDownloadsViewOverlay.inc.css deleted file mode 100644 index 18b7a5e11..000000000 --- a/application/basilisk/themes/shared/downloads/allDownloadsViewOverlay.inc.css +++ /dev/null @@ -1,131 +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/. */ - -%filter substitution - -%define item richlistitem.download -%define itemFocused @item@[selected] - -/*** View and outer controls ***/ - -#downloadsRichListBox { - /** The default listbox appearance comes with an unwanted margin. **/ - -moz-appearance: none; - margin: 0; -} - -/*** List items ***/ - -#downloadsRichListBox > richlistitem.download { - height: var(--downloads-item-height); -} - -.downloadTypeIcon { - margin: 8px 13px; - width: 32px; - height: 32px; -} - -.downloadBlockedBadge { - margin: 0 5px; - background: url("chrome://browser/skin/downloads/download-blocked.svg") top right / 16px no-repeat; -} - -.downloadBlockedBadge:-moz-locale-dir(rtl) { - background-position-x: left; -} - -@item@[verdict="PotentiallyUnwanted"] .downloadBlockedBadge { - background-image: url("chrome://browser/skin/warning.svg"); -} - -@item@[verdict="Uncommon"] .downloadBlockedBadge { - background-image: url("chrome://browser/skin/info.svg"); -} - -@item@ > toolbarseparator { - display: none; -} - -.downloadTarget { - margin: 0; -} - -.downloadDetails { - opacity: 0.7; - font-size: 95%; - /* Use calc() to keep the height consistent with .downloadTarget, so that the - progress bar can be vertically centered. */ - margin: 4px 0 calc(1em / 0.95 - 1em); -} - -.downloadButton { - -moz-appearance: none; - -moz-box-align: center; - background: transparent; - min-width: 0; - min-height: 0; - margin: 0; - border: none; - color: inherit; - padding: 0 18px; -} - -.downloadButton > .button-box { - -moz-appearance: none; - padding: 2px !important; - border-radius: 50%; -} - -.downloadButton > .button-box > .button-icon { - width: 16px; - height: 16px; - margin: 0; - filter: url("chrome://global/skin/filters.svg#fill"); - fill: currentColor; -} - -.downloadButton > .button-box > .button-text { - display: none; -} - -.downloadButton:hover > .button-box { - background-color: graytext; - color: -moz-field; -} - -.downloadButton:hover:active > .button-box { - background-color: -moz-fieldtext; -} - -@itemFocused@ > .downloadButtonArea > .downloadButton:hover > .button-box { - background-color: HighlightText; - color: Highlight; -} - -@itemFocused@ > .downloadButtonArea > .downloadButton:hover:active > .button-box { - background-color: -moz-field; - color: -moz-fieldtext; -} - -/*** Button icons ***/ - -.downloadIconCancel > .button-box > .button-icon { - list-style-image: url("chrome://browser/skin/panel-icons.svg#cancel"); -} - -.downloadIconShow > .button-box > .button-icon { -%ifdef XP_MACOSX - list-style-image: url("chrome://browser/skin/panel-icons.svg#magnifier"); -%else - list-style-image: url("chrome://browser/skin/panel-icons.svg#folder"); -%endif -} - -.downloadIconRetry > .button-box > .button-icon { - list-style-image: url("chrome://browser/skin/panel-icons.svg#retry"); -} - -/*** Progressmeter ***/ -%include progressmeter.inc.css |