Apply negative margins to all export inputs regardless of rtl

This commit is contained in:
Anton Khorev 2024-04-08 19:29:00 +03:00
parent 0c4cbda662
commit c9dedd9656

View file

@ -693,16 +693,15 @@ tr.turn:hover {
.export_boxy { .export_boxy {
background: $lightgrey; background: $lightgrey;
#maxlat { margin-top: -1px; } > * {
margin: -1px;
}
#minlon { #minlon {
float: left; float: left;
/*rtl:ignore*/ margin-left: -1px;
} }
#maxlon { #maxlon {
float: right; float: right;
/*rtl:ignore*/ margin-right: -1px;
} }
#minlat { margin-bottom: -1px; }
} }
} }