Done mostly automatically via find/replace following the conversions specified here: https://groups.google.com/a/mozilla.org/g/firefox-dev/c/9sGpF1TNbLk/m/QpU3oTUuAgAJ For the most part I think the "flex: N N" usage could be simplified to just "flex: N", but I wanted to preserve behavior (-moz-box-flex sets both flex-grow and flex-shrink). I changed legacy layout to also look at the order property rather than -moz-box-ordinal-group because it made splitters and treecols easier (we don't need to deal with both orders). Differential Revision: https://phabricator.services.mozilla.com/D171715
99 lines
2.1 KiB
CSS
99 lines
2.1 KiB
CSS
/* 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/. */
|
|
|
|
@import "chrome://browser/skin/downloads/progressmeter.css";
|
|
@import "chrome://browser/skin/downloads/download-blockedStates.css";
|
|
|
|
/*** View and outer controls ***/
|
|
|
|
#downloadsListBox {
|
|
margin: 0;
|
|
}
|
|
|
|
/*** List items ***/
|
|
|
|
#downloadsListBox > richlistitem {
|
|
min-height: 4.5em;
|
|
}
|
|
|
|
.downloadTypeIcon {
|
|
margin: 8px 13px;
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.downloadDetailsHover,
|
|
.downloadDetailsButtonHover {
|
|
display: none;
|
|
}
|
|
|
|
.downloadButton {
|
|
appearance: none;
|
|
align-items: center;
|
|
background: transparent;
|
|
min-width: 0;
|
|
min-height: 0;
|
|
margin: 0;
|
|
border: none;
|
|
color: inherit;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.downloadButton > .button-box {
|
|
padding: 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.downloadButton > .button-box > .button-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: 0;
|
|
-moz-context-properties: fill;
|
|
fill: currentColor;
|
|
}
|
|
|
|
.downloadButton > .button-box > .button-text {
|
|
display: none;
|
|
}
|
|
|
|
.downloadButton:hover > .button-box {
|
|
background-color: color-mix(in srgb, currentColor 15%, transparent);
|
|
}
|
|
|
|
.downloadButton:hover:active > .button-box {
|
|
background-color: color-mix(in srgb, currentColor 30%, transparent);
|
|
}
|
|
|
|
/*** Button icons ***/
|
|
|
|
.downloadIconCancel > .button-box > .button-icon {
|
|
list-style-image: url("chrome://global/skin/icons/close.svg");
|
|
}
|
|
|
|
.downloadIconShow > .button-box > .button-icon {
|
|
list-style-image: url("chrome://global/skin/icons/folder.svg");
|
|
}
|
|
|
|
@media (-moz-platform: macos) {
|
|
.downloadIconShow > .button-box > .button-icon {
|
|
list-style-image: url("chrome://global/skin/icons/search-glass.svg");
|
|
}
|
|
}
|
|
|
|
.downloadIconRetry > .button-box > .button-icon {
|
|
list-style-image: url("chrome://global/skin/icons/reload.svg");
|
|
}
|