暗黑模式调整

This commit is contained in:
fofolee 2020-06-29 20:56:21 +08:00
parent 45bc1b7afd
commit 1afe2f2116
2 changed files with 20 additions and 3 deletions

View File

@ -7,6 +7,10 @@
color: #e4e4e4; color: #e4e4e4;
} }
.error {
color: #fbbac2;
}
/*配置界面*/ /*配置界面*/
#options .keyword { #options .keyword {
@ -99,6 +103,14 @@
border: 1px solid #565656; border: 1px solid #565656;
} }
#quickselect .select2-results__option--highlighted {
background: #585958;
}
#quickselect .select2-results__option--selected {
background-color: #3e3e3e;
}
/*滚动条*/ /*滚动条*/
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 6px; width: 6px;

View File

@ -749,14 +749,19 @@ li.CodeMirror-hint {
} }
#quickselect .select2-results__option { #quickselect .select2-results__option {
padding: 10px; padding: 5px 10px;
height: 30px; max-height: 50px;
line-height: 30px; /* line-height: 50px; */
white-space: pre; white-space: pre;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
} }
#quickselect .select2-results__option--highlighted {
background-color: #ebebeb;
color: unset;
}
#quickselect .select2-search__field { #quickselect .select2-search__field {
height: 40px; height: 40px;
margin: 5px 0px; margin: 5px 0px;