From c9dedd9656ddfdb68ea23ccc41e4f273548a620a Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Mon, 8 Apr 2024 19:29:00 +0300 Subject: [PATCH] Apply negative margins to all export inputs regardless of rtl --- app/assets/stylesheets/common.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index ba976ff2b..7edc0cf9f 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -693,16 +693,15 @@ tr.turn:hover { .export_boxy { background: $lightgrey; - #maxlat { margin-top: -1px; } + > * { + margin: -1px; + } #minlon { float: left; - /*rtl:ignore*/ margin-left: -1px; } #maxlon { float: right; - /*rtl:ignore*/ margin-right: -1px; } - #minlat { margin-bottom: -1px; } } } -- 2.45.2