Merged in bugfix/MAPG-189-fix-inputwithbuttons-input-padding (pull request #168)

MAPG-189 fix div.inputWithButton>input's padding when it is focused
This commit is contained in:
Bence Pőcze 2020-07-03 21:51:38 +00:00
commit a73e60ae5a

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 {