Minor fixups
Add dark theme to tag suggestions, and remove printf() call.
This commit is contained in:
parent
701800cfe2
commit
8cf7344e7b
|
@ -1,17 +1,20 @@
|
|||
.tag-suggestion{
|
||||
font-size:0.8rem !important;
|
||||
|
||||
.tag-suggestion, .tag-suggestion>input {
|
||||
height: 1rem !important;
|
||||
margin:0px;
|
||||
}
|
||||
.tag-suggestion{
|
||||
font-size:0.8rem !important;
|
||||
display:block !important;
|
||||
}
|
||||
.tag-suggestion>input{
|
||||
line-height:1rem !important;
|
||||
height:1rem !important;
|
||||
width:100% !important;
|
||||
text-align:left;
|
||||
background-color:transparent;
|
||||
color:black;
|
||||
border:none;
|
||||
padding:0px;
|
||||
}
|
||||
.tag-suggestion-list{
|
||||
list-style: none;
|
||||
|
@ -21,7 +24,7 @@
|
|||
border-top: 0px;
|
||||
}
|
||||
@media (prefers-color-scheme: dark){
|
||||
body, input, select, textarea, pre, code{
|
||||
body, input, select, textarea, pre, code, .tag-suggestion-list{
|
||||
background: #1c1428;
|
||||
color: #d0d4d8 !important;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue