make download views works right even in Nightly
[themes.git] / LCARStrek / browser / downloads / allDownloadsViewOverlay.css
index 1c945f232aadcc61aaf42439dfcb64bf5bea9aaa..2ebb1b115288f4b4a45a9a80f2a7a8921dab48d3 100644 (file)
@@ -4,6 +4,9 @@
 
 /* === BEGIN allDownloadsViewOverlay.inc.css === */
 
+/* In the original, this is at the end of the file as a preprocessor-include */
+@import url("progressmeter.inc.css");
+
 /*** View and outer controls ***/
 
 #downloadsRichListBox {
 
 #downloadsRichListBox > richlistitem.download {
   height: var(--downloads-item-height);
-  padding: 5px 8px;
 }
 
 .downloadTypeIcon {
-  margin-top: 8px;
-  margin-inline-end: 12px;
-  margin-bottom: 8px;
-  margin-inline-start: 0;
+  margin: 8px 13px;
   width: 32px;
   height: 32px;
 }
 
 .downloadBlockedBadge {
-  margin: 0 4px;
+  margin: 0 5px;
   background: url("chrome://browser/skin/downloads/download-blocked.svg") top right / 16px no-repeat;
 }
 
@@ -51,14 +50,23 @@ richlistitem.download > toolbarseparator {
 }
 
 .downloadTarget {
-  margin-bottom: 3px;
-  cursor: inherit;
+  margin: 0;
 }
 
 .downloadDetails {
   opacity: 0.7;
   font-size: 95%;
-  cursor: inherit;
+  /* 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);
+}
+
+.downloadDetailsNormal,
+.downloadDetailsHover,
+.downloadOpenFile,
+.downloadShowMoreInfo,
+.downloadButtonLabels {
+  display: none;
 }
 
 .downloadButton {
@@ -66,24 +74,23 @@ richlistitem.download > toolbarseparator {
   background: transparent;
   min-width: 0;
   min-height: 0;
-  margin: 3px;
+  margin: 0;
   border: none;
-  padding: 5px;
   color: inherit;
+  padding: 0 18px;
 }
 
 .downloadButton > .button-box {
   -moz-appearance: none;
   padding: 2px !important;
   border-radius: 50%;
-  color: graytext;
 }
 
 .downloadButton > .button-box > .button-icon {
   width: 16px;
   height: 16px;
   margin: 0;
-  filter: url("chrome://browser/skin/filters.svg#fill");
+  filter: url("chrome://global/skin/filters.svg#fill");
   fill: currentColor;
 }
 
@@ -100,10 +107,6 @@ richlistitem.download > toolbarseparator {
   background-color: #FF9F00;
 }
 
-richlistitem.download[selected] > .downloadButtonArea > .downloadButton > .button-box {
-  color: inherit;
-}
-
 richlistitem.download[selected] > .downloadButtonArea > .downloadButton:hover > .button-box {
   background-color: #FFCF00;
   color: #000000;
@@ -128,6 +131,9 @@ richlistitem.download[selected] > .downloadButtonArea > .downloadButton:hover:ac
   list-style-image: url("chrome://browser/skin/panel-icons.svg#retry");
 }
 
+/*** Progressmeter ***/
+/* %include progressmeter.inc.css - this happens as @import at the start of the file */
+
 /* === END allDownloadsViewOverlay.inc.css === */
 
 /*** List items ***/
@@ -135,65 +141,3 @@ richlistitem.download[selected] > .downloadButtonArea > .downloadButton:hover:ac
 :root {
   --downloads-item-height: 6em;
 }
-
-/*** Highlighted list items ***/
-
-richlistitem.download:not([selected]):hover {
-  border-radius: 3px;
-  background-color: #794900;
-  color: #FFCF00;
-  cursor: pointer;
-}
-
-/*** Button icons ***/
-
-.downloadButton.downloadIconCancel {
-  -moz-image-region: rect(0px, 16px, 16px, 0px);
-}
-
-richlistitem.download:hover > .downloadButton.downloadIconCancel,
-richlistitem.download:hover > .downloadButton.downloadIconCancel:hover,
-richlistitem.download:hover > .downloadButton.downloadIconCancel:active {
-   -moz-image-region: rect(0px, 32px, 16px, 16px);
-}
-
-.downloadButton.downloadIconShow {
-  -moz-image-region: rect(16px, 16px, 32px, 0px);
-}
-
-richlistitem.download:hover > .downloadButton.downloadIconShow,
-richlistitem.download:hover > .downloadButton.downloadIconShow:hover,
-richlistitem.download:hover > .downloadButton.downloadIconShow:active {
-   -moz-image-region: rect(16px, 32px, 32px, 16px);
-}
-
-.downloadButton.downloadIconRetry {
-  -moz-image-region: rect(32px, 16px, 48px, 0px);
-}
-
-richlistitem.download:hover > .downloadButton.downloadIconRetry,
-richlistitem.download:hover > .downloadButton.downloadIconRetry:hover,
-richlistitem.download:hover > .downloadButton.downloadIconRetry:active {
-   -moz-image-region: rect(32px, 32px, 48px, 16px);
-}
-
-richlistitem.download[selected] > .downloadButton.downloadIconCancel,
-richlistitem.download[selected]:hover > .downloadButton.downloadIconCancel,
-richlistitem.download[selected]:hover > .downloadButton.downloadIconCancel:hover,
-richlistitem.download[selected]:hover > .downloadButton.downloadIconCancel:active {
-  -moz-image-region: rect(0px, 32px, 16px, 16px);
-}
-
-richlistitem.download[selected] > .downloadButton.downloadIconShow,
-richlistitem.download[selected]:hover > .downloadButton.downloadIconShow,
-richlistitem.download[selected]:hover > .downloadButton.downloadIconShow:hover,
-richlistitem.download[selected]:hover > .downloadButton.downloadIconShow:active {
-  -moz-image-region: rect(16px, 32px, 32px, 16px);
-}
-
-richlistitem.download[selected] > .downloadButton.downloadIconRetry,
-richlistitem.download[selected]:hover > .downloadButton.downloadIconRetry,
-richlistitem.download[selected]:hover > .downloadButton.downloadIconRetry:hover,
-richlistitem.download[selected]:hover > .downloadButton.downloadIconRetry:active {
-  -moz-image-region: rect(32px, 32px, 48px, 16px);
-}