From c225abe98f3fc4ca547b75d41c647da3a8a1bc39 Mon Sep 17 00:00:00 2001 From: Sascha Brendel Date: Tue, 17 Mar 2020 15:43:51 +0100 Subject: [PATCH] Fixed settings menu. Closes blinkfox/typora-vue-theme#20 --- vue-dark.css | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/vue-dark.css b/vue-dark.css index 246d2f1..71dcc57 100755 --- a/vue-dark.css +++ b/vue-dark.css @@ -142,9 +142,12 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket { /* --control-text-color: #777; */ /* --select-text-bg-color: hsla(153, 47%, 49%, 0.5); */ --select-text-bg-color: hsl(153, 47%, 40%); + --active-file-bg-color: hsl(153, 47%, 40%); --select-text-font-color: #aaaaaa; + --active-file-text-color: #eeeeee; --bg-color: #1d1d1d; --item-hover-bg-color: #eeeeee; + --text-color: #aaaaaa; } .info-panel-tab:hover { @@ -1028,4 +1031,18 @@ html{ /* .CodeMirror-selecte { */ /* background-color: hsla(153, 47%, 49%, 0.5) !important; */ /* color: #eeeeee !important; */ -/* } */ \ No newline at end of file +/* } */ + +.ty-preferences { + color: #aaaaaa; +} + +.ty-preferences .btn-default:not([disabled]):hover { + background-color: var(--active-file-bg-color); + background-image: none; + color: #fff; +} + +.ty-preferences .search-hit { + background: var(--select-text-bg-color) +} \ No newline at end of file