Fix: UserContent - Tools for all add-ons size #695

This commit is contained in:
alstjr7375 2023-06-18 02:25:42 +09:00
parent ef4f3145fd
commit a6082bd643
2 changed files with 14 additions and 0 deletions

6
css/leptonContent.css generated
View file

@ -26,6 +26,12 @@
padding-bottom: 1.5em;
}
}
@-moz-document url-prefix("about:addons") {
#updates-message + .page-options-menu > .more-options-button {
box-sizing: content-box;
padding: 0 !important;
}
}
/** Video player **************************************************************/
/* Control Bar Size */
@supports -moz-bool-pref("userContent.player.size") {

View file

@ -29,3 +29,11 @@
padding-bottom: 1.5em;
}
}
// #695
@include moz-document(url-prefix "about:addons") {
#updates-message + .page-options-menu > .more-options-button {
box-sizing: content-box;
padding: 0 !important;
}
}