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/progressmeter.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/progressmeter.inc.css')
-rw-r--r-- | application/basilisk/themes/shared/downloads/progressmeter.inc.css | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/application/basilisk/themes/shared/downloads/progressmeter.inc.css b/application/basilisk/themes/shared/downloads/progressmeter.inc.css deleted file mode 100644 index 22e780e09..000000000 --- a/application/basilisk/themes/shared/downloads/progressmeter.inc.css +++ /dev/null @@ -1,70 +0,0 @@ -/*** Common-styled progressmeter ***/ -.downloadProgress { - height: 8px; - border-radius: 1px; - margin: 4px 0 0; - margin-inline-end: 12px; - - /* for overriding rules in progressmeter.css */ - -moz-appearance: none; - border-style: none; - background-color: transparent; - min-width: initial; - min-height: initial; -} - -.downloadProgress[mode="undetermined"] { - /* for overriding rules on global.css in Linux. */ - -moz-binding: url("chrome://global/content/bindings/progressmeter.xml#progressmeter"); -} - -.downloadProgress > .progress-bar { - background-color: Highlight; - - /* for overriding rules in progressmeter.css */ - -moz-appearance: none; -} - -.downloadProgress[paused="true"] > .progress-bar { - background-color: GrayText; -} - -.downloadProgress[mode="undetermined"] > .progress-bar { - /* Make a white reflecting animation. - Create a gradient with 2 identical pattern, and enlarge the size to 200%. - This allows us to animate background-position with percentage. */ - background-image: linear-gradient(90deg, transparent 0%, - rgba(255,255,255,0.5) 25%, - transparent 50%, - rgba(255,255,255,0.5) 75%, - transparent 100%); - background-blend-mode: lighten; - background-size: 200% 100%; - animation: downloadProgressSlideX 1.5s linear infinite; -} - -.downloadProgress > .progress-remainder { - border: solid ButtonShadow; - border-block-start-width: 1px; - border-block-end-width: 1px; - border-inline-start-width: 0; - border-inline-end-width: 1px; - background-color: ButtonFace; -} - -.downloadProgress[value="0"] > .progress-remainder { - border-width: 1px; -} - -.downloadProgress > .progress-remainder[mode="undetermined"] { - border: none; -} - -@keyframes downloadProgressSlideX { - 0% { - background-position: 0 0; - } - 100% { - background-position: -100% 0; - } -} |