Merge pull request #793 from black7375/mac-page-info

Fix: Proton - MacOS page info icons cut off #780
This commit is contained in:
MS_Y 2023-10-08 22:51:46 +09:00 committed by GitHub
commit e4371a3f5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 0 deletions

5
css/leptonChrome.css generated
View file

@ -2901,6 +2901,11 @@
color: var(--in-content-button-text-color) !important; /* SelectedItemText */
background-color: var(--in-content-button-background-active) !important; /* #C1D2EE; */
}
@supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled") {
#viewGroup > radio {
height: auto !important;
}
}
#generalTab {
--viewgroup-image: url(chrome://global/skin/icons/page-portrait.svg);
}

View file

@ -3218,6 +3218,11 @@
color: var(--in-content-button-text-color) !important; /* SelectedItemText */
background-color: var(--in-content-button-background-active) !important; /* #C1D2EE; */
}
@supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled") {
#viewGroup > radio {
height: auto !important;
}
}
#generalTab {
--viewgroup-image: url(chrome://global/skin/icons/page-portrait.svg);
}

View file

@ -33,6 +33,10 @@
color: var(--in-content-button-text-color) !important; /* SelectedItemText */
background-color: var(--in-content-button-background-active) !important; /* #C1D2EE; */
}
@include OS($mac) {
height: auto !important;
}
}
#generalTab {
--viewgroup-image: url(chrome://global/skin/icons/page-portrait.svg);