Fix search bar css for firefox

This commit is contained in:
Zed 2019-09-19 21:35:57 +02:00
parent af23cf0a7f
commit 70f89a9502

View file

@ -12,16 +12,18 @@
flex-wrap: wrap; flex-wrap: wrap;
button { button {
margin: 0 2px 2px 0; margin: 0 2px 0 0;
height: 23px;
} }
.pref-input { .pref-input {
margin: 0 4px 2px 0; margin: 0 4px 0 0;
flex-grow: 1; flex-grow: 1;
height: 23px;
} }
input[type="text"] { input[type="text"] {
height: 20px; height: calc(100% - 4px);
width: calc(100% - 8px); width: calc(100% - 8px);
} }