Bug 1699548 - Shrink size of the panel footer split button dropmarker when Proton is enabled. r=Itiel,desktop-theme-reviewers

Differential Revision: https://phabricator.services.mozilla.com/D109393
This commit is contained in:
Mike Conley 2021-03-24 16:36:48 +00:00
parent 77a4676ed2
commit 1f3704b5c0

View File

@ -80,10 +80,12 @@
flex: 1;
}
@supports not -moz-bool-pref("browser.proton.doorhangers.enabled") {
.popup-notification-dropmarker {
flex: none;
padding: 0 15px !important;
}
} /** END not Proton **/
.popup-notification-dropmarker > .button-box > hbox {
display: none;
@ -212,6 +214,10 @@ popupnotification {
background-color: var(--buttons-primary-button-active-bgcolor, color-mix(in srgb, black 20%, -moz-accent-color));
}
.panel-footer:not(.panel-footer-menulike) > button > .button-box {
padding: 0;
}
.popup-notification-button,
.popup-notification-primary-button {
flex: unset;
@ -234,4 +240,9 @@ popupnotification {
.popup-notification-checkbox > .checkbox-label-box > .checkbox-label {
opacity: 0.7;
}
.panel-footer > .popup-notification-dropmarker {
max-width: 32px;
padding: 8px;
}
} /*** END proton ***/