Define the standard body text color for light theme.
Fixes white text showing up on unspecified elements when using the light theme.
This commit is contained in:
parent
81604b2810
commit
0a26d068ec
|
@ -17,15 +17,18 @@ html {
|
||||||
body {
|
body {
|
||||||
@include font-size(16);
|
@include font-size(16);
|
||||||
@include line-height(19);
|
@include line-height(19);
|
||||||
color: white;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
text-rendering: optimizelegibility;
|
text-rendering: optimizelegibility;
|
||||||
font-feature-settings: "kern";
|
font-feature-settings: "kern";
|
||||||
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
color: white;
|
||||||
background: $gab-background-base;
|
background: $gab-background-base;
|
||||||
&.theme-gabsocial-light {background: $gab-background-base-light;}
|
&.theme-gabsocial-light {
|
||||||
|
color: $gab-active-border;
|
||||||
|
background: $gab-background-base-light;
|
||||||
|
}
|
||||||
|
|
||||||
&.system-font {
|
&.system-font {
|
||||||
// system-ui => standard property (Chrome/Android WebView 56+, Opera 43+, Safari 11+)
|
// system-ui => standard property (Chrome/Android WebView 56+, Opera 43+, Safari 11+)
|
||||||
|
|
Loading…
Reference in New Issue