mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 826729 - about:downloads download item buttons look strange, and context menus don't update. r=mak.
This commit is contained in:
parent
ab013277d7
commit
3918e001e9
@ -43,7 +43,10 @@
|
||||
seltype="multiple"
|
||||
id="downloadsRichListBox" context="downloadsContextMenu"
|
||||
onkeypress="return this._placesView.onKeyPress(event);"
|
||||
oncontextmenu="return this._placesView.onContextMenu(event);"/>
|
||||
oncontextmenu="return this._placesView.onContextMenu(event);"
|
||||
onfocus="goUpdateDownloadCommands();"
|
||||
onselect="goUpdateDownloadCommands();"
|
||||
onblur="goUpdateDownloadCommands();"/>
|
||||
|
||||
<commandset id="downloadCommands"
|
||||
commandupdater="true"
|
||||
|
@ -4,3 +4,13 @@
|
||||
|
||||
@import url("chrome://global/skin/inContentUI.css");
|
||||
|
||||
.downloadButton {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.downloadButton:not([disabled="true"]):hover:active,
|
||||
.downloadButton:not([disabled]):hover:active {
|
||||
background: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
@ -51,7 +51,7 @@
|
||||
list-style-image: url("chrome://browser/skin/downloads/buttons.png");
|
||||
}
|
||||
|
||||
/*** Button icons ***/
|
||||
/*** Button icons ***/
|
||||
|
||||
.downloadButton.downloadCancel {
|
||||
-moz-image-region: rect(0px, 16px, 16px, 0px);
|
||||
|
@ -4,3 +4,13 @@
|
||||
|
||||
@import url("chrome://global/skin/inContentUI.css");
|
||||
|
||||
.downloadButton {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.downloadButton:not([disabled="true"]):hover:active,
|
||||
.downloadButton:not([disabled]):hover:active {
|
||||
background: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user