commit 7f48e0cede794a12a269fd7e7db34cf2f4c21f01
parent 1aca6d59ae915799689fb6db791ff90e0a14bb06
Author: Lootyhoof <lootyhoofer@gmail.com>
Date: Tue, 25 Oct 2016 23:18:00 +0100
Flatten popup-notification-menubutton
Diffstat:
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/src/chrome/global/notification.css b/src/chrome/global/notification.css
@@ -84,8 +84,8 @@ XXX: apply styles to all themes until bug 509642 is fixed
.popup-notification-menubutton > .button-menubutton-dropmarker {
-moz-appearance: none;
margin: 0;
- border: 1px solid rgba(0,0,0,.2);
- background-image: linear-gradient(rgba(75,75,75,.8), rgba(50,50,50,.8));
+ border: 1px solid rgb(75,75,75);
+ background: rgb(50,50,50);
}
.popup-notification-menubutton > .button-menubutton-button {
@@ -125,14 +125,14 @@ XXX: apply styles to all themes until bug 509642 is fixed
.popup-notification-menubutton:not([type="menu-button"]):hover,
.popup-notification-menubutton > .button-menubutton-button:hover,
.popup-notification-menubutton > .button-menubutton-dropmarker:hover {
- background-image: linear-gradient(rgba(62,62,62,.8), rgba(43,43,43,.8));
+ background: rgb(75,75,75);
}
.popup-notification-menubutton:not([type="menu-button"]):hover:active,
.popup-notification-menubutton > .button-menubutton-button:hover:active,
.popup-notification-menubutton > .button-menubutton-dropmarker:hover:active,
.popup-notification-menubutton[open="true"] > .button-menubutton-dropmarker {
- background-image: linear-gradient(rgba(50,50,50,.8), rgba(23,23,23,.8));
+ background: rgb(23,23,23);
}
/*}*/
@@ -140,8 +140,3 @@ XXX: apply styles to all themes until bug 509642 is fixed
-moz-margin-end: -14px;
margin-top: -10px;
}
-
-.popup-notification-closeitem {
- list-style-image: url("chrome://global/skin/icons/close.png");
- -moz-image-region: rect(0, 16px, 16px, 0);
-}