Patch fix for colors in compose modal when replying to a post.

This commit is contained in:
Dank Gabs 2019-07-02 23:30:53 -04:00
parent a84ccff4cc
commit d9e943f6f4
2 changed files with 3 additions and 4 deletions

View File

@ -301,7 +301,7 @@
.reply-indicator { .reply-indicator {
border-radius: 4px; border-radius: 4px;
margin-bottom: 10px; margin-bottom: 10px;
background: $ui-primary-color; background: $gab-background-base-light;
padding: 10px; padding: 10px;
min-height: 23px; min-height: 23px;
overflow-y: auto; overflow-y: auto;
@ -772,7 +772,7 @@
} }
.reply-indicator__content { .reply-indicator__content {
color: $inverted-text-color; color: $gab-default-text-light;
font-size: 14px; font-size: 14px;
a { a {
@ -4827,7 +4827,7 @@ noscript {
font-size: 18px; font-size: 18px;
font-weight: bold; font-weight: bold;
line-height: 24px; line-height: 24px;
color: $primary-text-color; color: $gab-background-base-light;
text-align: center; text-align: center;
} }
} }

View File

@ -27,7 +27,6 @@ $gab-default-text-light: #6c6c6c;
@mixin light-theme-shadow() {box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);} @mixin light-theme-shadow() {box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);}
// BREAKPOINT SETS // BREAKPOINT SETS
// navigation breakpoints - by default show all elements and link names along with icons // navigation breakpoints - by default show all elements and link names along with icons
// turns navigation links into icon-only buttons // turns navigation links into icon-only buttons
$nav-breakpoint-1: 850px; $nav-breakpoint-1: 850px;