Fix lingering darkmode style bugs
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
Garrett Mills 2020-11-10 07:14:09 -06:00
parent 62a6f6532b
commit 69cfef0193
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246
2 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,7 @@
*ngIf="editorService.isEditing && editorService.canEdit()" *ngIf="editorService.isEditing && editorService.canEdit()"
title="More page options" title="More page options"
(click)="onPageMenuClick($event)" (click)="onPageMenuClick($event)"
class="clear-btn" fill="clear"
> >
<i class="fa fa-ellipsis-v"></i> <i class="fa fa-ellipsis-v"></i>
</ion-button> </ion-button>

View File

@ -138,6 +138,10 @@ hr {
/* ============== DARK MODE FIXES ============== */ /* ============== DARK MODE FIXES ============== */
body.dark { body.dark {
.node-content-wrapper-focused {
background: rgba(25, 25, 70, 0.5);
}
.node-content-wrapper:hover { .node-content-wrapper:hover {
background: rgba(35,35,80,0.5); background: rgba(35,35,80,0.5);
} }