Fix: Proton - MacOS page info icons cut off #780

This commit is contained in:
alstjr7375 2023-10-08 22:47:14 +09:00
parent 6122b32921
commit 82dbdf7641
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 */ color: var(--in-content-button-text-color) !important; /* SelectedItemText */
background-color: var(--in-content-button-background-active) !important; /* #C1D2EE; */ 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 { #generalTab {
--viewgroup-image: url(chrome://global/skin/icons/page-portrait.svg); --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 */ color: var(--in-content-button-text-color) !important; /* SelectedItemText */
background-color: var(--in-content-button-background-active) !important; /* #C1D2EE; */ 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 { #generalTab {
--viewgroup-image: url(chrome://global/skin/icons/page-portrait.svg); --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 */ color: var(--in-content-button-text-color) !important; /* SelectedItemText */
background-color: var(--in-content-button-background-active) !important; /* #C1D2EE; */ background-color: var(--in-content-button-background-active) !important; /* #C1D2EE; */
} }
@include OS($mac) {
height: auto !important;
}
} }
#generalTab { #generalTab {
--viewgroup-image: url(chrome://global/skin/icons/page-portrait.svg); --viewgroup-image: url(chrome://global/skin/icons/page-portrait.svg);