From 2a140bfc27e3bdb95c9ca403a618f12fdacbb2be Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Fri, 4 Apr 2025 13:31:28 +0300 Subject: [PATCH] Use flex+justify instead of floats on export page --- app/assets/stylesheets/common.scss | 6 ------ app/views/site/export.html.erb | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index 5d142eb4f..9fff025d0 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -674,12 +674,6 @@ tr.turn { > * { margin: -1px; } - #minlon { - /*rtl:ignore*/ float: left; - } - #maxlon { - /*rtl:ignore*/ float: right; - } } } diff --git a/app/views/site/export.html.erb b/app/views/site/export.html.erb index d277f344e..248fea8cd 100644 --- a/app/views/site/export.html.erb +++ b/app/views/site/export.html.erb @@ -8,7 +8,7 @@
<%= text_field_tag("maxlat", nil, :size => 10, :autocomplete => "off", :class => "form-control text-center mx-auto") %> -
+
<%= text_field_tag("minlon", nil, :size => 10, :autocomplete => "off", :class => "form-control text-center my-2") %> <%= text_field_tag("maxlon", nil, :size => 10, :autocomplete => "off", :class => "form-control text-center my-2") %>
-- 2.39.5