Merge pull request #656 from 2641a40fd44383320adde4b027a1d0b03bd550/patch-1

This commit is contained in:
MS_Y 2023-03-03 17:42:16 +09:00 committed by GitHub
commit cb7b22fc94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 54 additions and 0 deletions

25
css/leptonContent.css generated
View file

@ -2822,6 +2822,14 @@
border-radius: 0 !important;
}
}
@-moz-document regexp(".*.pdf$") {
.toolbarButton,
.dropdownToolbarButton,
.secondaryToolbarButton,
.dialogButton {
border-radius: 0 !important;
}
}
}
@supports -moz-bool-pref("userChrome.rounding.square_dialog") {
@-moz-document url-prefix("about:") {
@ -2834,6 +2842,11 @@
border-radius: 0 !important;
}
}
@-moz-document regexp(".*.pdf$") {
dialog {
border-radius: 0 !important;
}
}
}
@supports -moz-bool-pref("userChrome.rounding.square_checklabel") {
@-moz-document url-prefix("about:"), url-prefix("chrome://browser/content/"), url-prefix("chrome://pippki/content/")
@ -2870,6 +2883,12 @@
border-radius: 0 !important;
}
}
@-moz-document regexp(".*.pdf$") {
.toolbarField,
.thumbnailSelectionRing {
border-radius: 0 !important;
}
}
}
@supports -moz-bool-pref("userChrome.rounding.square_menupopup") {
@-moz-document url-prefix("about:"), url-prefix("chrome://")
@ -2893,6 +2912,12 @@
border-radius: 0 !important;
}
}
@-moz-document regexp(".*.pdf$") {
.doorHanger,
.doorHangerRight {
border-radius: 0 !important;
}
}
}
@-moz-document url("chrome://browser/content/places/places.xhtml")
{

View file

@ -37,6 +37,15 @@
border-radius: 0 !important;
}
}
@include moz-document(regexp ".*\.pdf$") {
.toolbarButton,
.dropdownToolbarButton,
.secondaryToolbarButton,
.dialogButton {
border-radius: 0 !important;
}
}
}
@include Option("userChrome.rounding.square_dialog") {
@ -51,6 +60,12 @@
border-radius: 0 !important;
}
}
@include moz-document(regexp ".*\.pdf$") {
dialog {
border-radius: 0 !important;
}
}
}
@include Option("userChrome.rounding.square_checklabel") {
@ -99,6 +114,13 @@
}
}
}
@include moz-document(regexp ".*\.pdf$") {
.toolbarField,
.thumbnailSelectionRing {
border-radius: 0 !important;
}
}
}
@include Option("userChrome.rounding.square_menupopup") {
@ -125,4 +147,11 @@
border-radius: 0 !important;
}
}
@include moz-document(regexp ".*\.pdf$") {
.doorHanger,
.doorHangerRight {
border-radius: 0 !important;
}
}
}