MAPG-189 fix div.inputWithButton>input's padding when it is focused

This commit is contained in:
Bence Pőcze 2020-07-03 23:50:22 +02:00
parent e8adc9f730
commit 5383da81b3
Signed by: bence
GPG Key ID: AA52B11A3269D1C1

View File

@ -298,7 +298,11 @@ input.big:focus, select.big:focus {
div.inputWithButton>input {
width: 100%;
padding: 0 83px 0 5px;
padding: 0 83px 0 6px;
}
div.inputWithButton>input:focus {
padding: 0 82px 0 5px;
}
textarea.big:focus {