X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=LCARStrek%2Fbrowser%2Fdownloads%2Findicator.css;fp=LCARStrek%2Fbrowser%2Fdownloads%2Findicator.css;h=b89998cfb338124eb90b2d696de4c9d0dd862851;hp=f2a78ba0e54c24e6124f21dd7bbdc09f446ed61b;hb=38bd4bf13f45e40e78b09a90ad580a40d50d7a61;hpb=d0f28e616d7c3b04647d549a4b7aa14753f029d8 diff --git a/LCARStrek/browser/downloads/indicator.css b/LCARStrek/browser/downloads/indicator.css index f2a78ba0..b89998cf 100644 --- a/LCARStrek/browser/downloads/indicator.css +++ b/LCARStrek/browser/downloads/indicator.css @@ -2,6 +2,74 @@ * 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/. */ +/* === BEGIN indicator.inc.css === */ + +#downloads-indicator-progress-icon { + background: var(--downloads-indicator-image-attention) bottom no-repeat; + background-size: 18px; + margin-top: 18px; + /* From javascript side we use animation delay from 0s to -100s to show + * corresponding frames needed for progress. + * animation-delay is set to a positive value to make nothing shown. + */ + animation-play-state: paused; + animation-delay: 1s; + animation-duration: 100s; + animation-timing-function: linear; + animation-name: indicatorArrowProgress; +} +/* +toolbar[brighttext] #downloads-indicator-progress-icon { + background-image: var(--downloads-indicator-image-attention-inverted); + animation-name: indicatorArrowProgressDark; +} +*/ +@keyframes indicatorArrowProgress { + 0% { + margin-top: 12px; + filter: brightness(1.2); + } + 100% { + margin-top: 2px; + filter: brightness(1); + } +} +/* +@keyframes indicatorArrowProgressDark { + 0% { + margin-top: 12px; + filter: brightness(0.7); + } + 100% { + margin-top: 2px; + filter: brightness(1); + } +} +*/ +#downloads-button[notification="start"] > #downloads-indicator-anchor > #downloads-indicator-icon { + animation-name: downloadsIndicatorStartJump; + /* Upon changing the overall duration below, please keep the delay time of + setTimeout() identical in indicator.js for this animation. */ + animation-duration: 0.5s; + animation-delay: 1s; + animation-iteration-count: 2; +} + +@keyframes downloadsIndicatorStartJump { + 0% { + transform: translateY(0); + animation-timing-function: ease-out; + } + 50% { + transform: translateY(-3px); + animation-timing-function: ease-in; + } + 100% { + transform: translateY(0); + } +} +/* === END indicator.inc.css === */ + /*** Status and progress indicator ***/ #downloads-animation-container { @@ -21,15 +89,17 @@ /*@media not all and (min-resolution: 1.1dppx) {*/ #downloads-button { - --downloads-indicator-icon: -moz-image-rect(url("chrome://browser/skin/ToolbarFx.png"), 0, 198, 18, 180); - --downloads-indicator-icon-hover: -moz-image-rect(url("chrome://browser/skin/ToolbarFx.png"), 18, 198, 36, 180); - --downloads-indicator-icon-attention: url("chrome://browser/skin/downloads/download-glow.png"); + --downloads-indicator-image: -moz-image-rect(url("chrome://browser/skin/ToolbarFx.png"), 0, 198, 18, 180); + --downloads-indicator-image-hover: -moz-image-rect(url("chrome://browser/skin/ToolbarFx.png"), 18, 198, 36, 180); + --downloads-indicator-image-attention: -moz-image-rect(url("chrome://browser/skin/ToolbarFx.png"), 36, 198, 54, 180); +/* --downloads-indicator-image-inverted: -moz-image-rect(url("chrome://browser/skin/Toolbar-inverted.png"), 0, 198, 18, 180); + --downloads-indicator-image-attention-inverted: -moz-image-rect(url("chrome://browser/skin/Toolbar-inverted.png"), 18, 198, 36, 180);*/ } /*}*/ #downloads-indicator-icon { - background: var(--downloads-indicator-icon) center no-repeat; + background: var(--downloads-indicator-image) center no-repeat; width: 18px; height: 18px; background-size: 18px; @@ -38,12 +108,12 @@ #downloads-button:hover > #downloads-indicator-anchor > #downloads-indicator-icon, #downloads-button[open="true"] > #downloads-indicator-anchor > #downloads-indicator-icon, #downloads-button[attention]:hover > #downloads-indicator-anchor > #downloads-indicator-icon { - background-image: var(--downloads-indicator-icon-hover); + background-image: var(--downloads-indicator-image-hover); color: #000000; } toolbar[brighttext] #downloads-button:not([attention="success"]) > #downloads-indicator-anchor > #downloads-indicator-icon { -/* background-image: var(--downloads-indicator-icon-inverted); */ +/* background-image: var(--downloads-indicator-image-inverted); */ } #downloads-button[attention="warning"] > .toolbarbutton-badge-stack > .toolbarbutton-badge, @@ -77,7 +147,7 @@ toolbar[brighttext] #downloads-button:not([attention="success"]) > #downloads-in } #downloads-button[attention="success"] > #downloads-indicator-anchor > #downloads-indicator-icon { - background-image: var(--downloads-indicator-icon-attention); + background-image: var(--downloads-indicator-image-attention); } #downloads-button[cui-areatype="menu-panel"][attention="success"] { @@ -89,18 +159,18 @@ toolbar[brighttext] #downloads-button:not([attention="success"]) > #downloads-in equivalent to -moz-any([progress], [paused]). */ #downloads-button:not([counter]) > #downloads-indicator-anchor > #downloads-indicator-progress-area > #downloads-indicator-counter { - background: var(--downloads-indicator-icon) center no-repeat; + background: var(--downloads-indicator-image) center no-repeat; background-size: 12px; } #downloads-button:not([counter])[attention="success"] > #downloads-indicator-anchor > #downloads-indicator-progress-area > #downloads-indicator-counter { - background-image: var(--downloads-indicator-icon-attention); + background-image: var(--downloads-indicator-image-attention); } #downloads-button:not([counter]):hover > #downloads-indicator-anchor > #downloads-indicator-progress-area > #downloads-indicator-counter, #downloads-button[open="true"]:not([counter]) > #downloads-indicator-anchor > #downloads-indicator-progress-area > #downloads-indicator-counter, #downloads-button:not([counter])[attention="success"]:hover > #downloads-indicator-anchor > #downloads-indicator-progress-area > #downloads-indicator-counter { - background-image: var(--downloads-indicator-icon-hover); + background-image: var(--downloads-indicator-image-hover); background-size: 12px; }