mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
97 lines
4.0 KiB
CSS
97 lines
4.0 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/. */
|
|
|
|
/*** Download items ***/
|
|
|
|
richlistitem[type="download"] {
|
|
-moz-binding: url('chrome://browser/content/downloads/download.xml#download');
|
|
}
|
|
|
|
richlistitem[type="download"]:not([selected]) button {
|
|
/* Only focus buttons in the selected item. */
|
|
-moz-user-focus: none;
|
|
}
|
|
|
|
/*** Visibility of controls inside download items ***/
|
|
|
|
.download-state:-moz-any( [state="6"], /* Blocked (parental) */
|
|
[state="8"], /* Blocked (dirty) */
|
|
[state="9"]) /* Blocked (policy) */
|
|
.downloadTypeIcon:not(.blockedIcon),
|
|
|
|
.download-state:not(:-moz-any([state="6"], /* Blocked (parental) */
|
|
[state="8"], /* Blocked (dirty) */
|
|
[state="9"]) /* Blocked (policy) */)
|
|
.downloadTypeIcon.blockedIcon,
|
|
|
|
.download-state:not(:-moz-any([state="-1"],/* Starting (initial) */
|
|
[state="5"], /* Starting (queued) */
|
|
[state="0"], /* Downloading */
|
|
[state="4"], /* Paused */
|
|
[state="7"]) /* Scanning */)
|
|
.downloadProgress,
|
|
|
|
.download-state:not( [state="0"] /* Downloading */)
|
|
.downloadPauseMenuItem,
|
|
|
|
.download-state:not( [state="4"] /* Paused */)
|
|
.downloadResumeMenuItem,
|
|
|
|
.download-state:not(:-moz-any([state="2"], /* Failed */
|
|
[state="4"]) /* Paused */)
|
|
.downloadCancelMenuItem,
|
|
|
|
.download-state:not(:-moz-any([state="1"], /* Finished */
|
|
[state="2"], /* Failed */
|
|
[state="3"], /* Canceled */
|
|
[state="6"], /* Blocked (parental) */
|
|
[state="8"], /* Blocked (dirty) */
|
|
[state="9"]) /* Blocked (policy) */)
|
|
.downloadRemoveFromHistoryMenuItem,
|
|
|
|
.download-state:not(:-moz-any([state="-1"],/* Starting (initial) */
|
|
[state="0"], /* Downloading */
|
|
[state="1"], /* Finished */
|
|
[state="4"], /* Paused */
|
|
[state="5"]) /* Starting (queued) */)
|
|
.downloadShowMenuItem,
|
|
|
|
.download-state[state="7"] .downloadCommandsSeparator
|
|
|
|
{
|
|
display: none;
|
|
}
|
|
|
|
/*** Visibility of download buttons ***/
|
|
|
|
.download-state:not(:-moz-any([state="-1"],/* Starting (initial) */
|
|
[state="5"], /* Starting (queued) */
|
|
[state="0"], /* Downloading */
|
|
[state="4"]) /* Paused */)
|
|
.downloadCancel,
|
|
|
|
.download-state:not(:-moz-any([state="2"], /* Failed */
|
|
[state="3"]) /* Canceled */)
|
|
.downloadRetry,
|
|
|
|
.download-state:not( [state="1"] /* Finished */)
|
|
.downloadShow
|
|
|
|
{
|
|
visibility: hidden;
|
|
}
|
|
|
|
.download-state[state="1"]:not([exists]) .downloadShow
|
|
{
|
|
display: none;
|
|
}
|
|
|
|
#downloadsSummary:not([inprogress]) > vbox > #downloadsSummaryProgress,
|
|
#downloadsSummary:not([inprogress]) > vbox > #downloadsSummaryDetails,
|
|
#downloadsFooter[showingsummary] > #downloadsHistory,
|
|
#downloadsFooter:not([showingsummary]) > #downloadsSummary
|
|
{
|
|
display: none;
|
|
}
|