fix: input style in side bar (#852)

This commit is contained in:
Felix Häusler 2019-04-03 18:34:51 +02:00 committed by Ran Luo
parent 2bd52d06e0
commit aa59e8a0ca
2 changed files with 6 additions and 2 deletions

View File

@ -142,7 +142,8 @@
outline: none; outline: none;
height: 22px; height: 22px;
margin: 5px 0; margin: 5px 0;
padding: 0 8px; padding: 0 6px;
color: var(--sideBarColor);
border: 1px solid var(--floatBorderColor); border: 1px solid var(--floatBorderColor);
background: var(--floatBorderColor); background: var(--floatBorderColor);
width: 70%; width: 70%;

View File

@ -356,7 +356,10 @@
outline: none; outline: none;
height: 22px; height: 22px;
margin: 5px 0; margin: 5px 0;
border: 1px solid var(--themeColor); padding: 0 6px;
color: var(--sideBarColor);
border: 1px solid var(--floatBorderColor);
background: var(--floatBorderColor);
width: calc(100% - 45px); width: calc(100% - 45px);
border-radius: 3px; border-radius: 3px;
} }