From 3219721c15ba9518ea153bea335966b45a4cffcb Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Wed, 17 Jun 2020 03:04:18 +0300 Subject: Remove literal json representation of map --- bh20simplewebuploader/static/main.css | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'bh20simplewebuploader/static/main.css') diff --git a/bh20simplewebuploader/static/main.css b/bh20simplewebuploader/static/main.css index cadb9a5..cc6d5e4 100644 --- a/bh20simplewebuploader/static/main.css +++ b/bh20simplewebuploader/static/main.css @@ -227,17 +227,6 @@ a { column-width: 250px; } -pre code { - background-color: #eee; - display: flex; - width: max-content; - margin: 0 auto; - overflow-y: scroll; - max-height: 300px; - padding: 10px; - border: solid 1px black; -} - .record, .record .field-group, .record .field-group .field { display: flex; flex-direction: column; -- cgit v1.2.3 From f08d4fab5bc8051324206995cad2b180bbf0aeb9 Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Wed, 17 Jun 2020 03:08:06 +0300 Subject: Add section for map and add basic styling --- bh20simplewebuploader/static/main.css | 8 +++++++- bh20simplewebuploader/templates/demo-run.html | 13 ++++++------- 2 files changed, 13 insertions(+), 8 deletions(-) (limited to 'bh20simplewebuploader/static/main.css') diff --git a/bh20simplewebuploader/static/main.css b/bh20simplewebuploader/static/main.css index cc6d5e4..66b9161 100644 --- a/bh20simplewebuploader/static/main.css +++ b/bh20simplewebuploader/static/main.css @@ -47,6 +47,9 @@ h2 > svg { float: right; } +#mapid { + height: 200px; +} /* ---- start menu ---- */ /* Add a black background color to the top navigation */ @@ -250,12 +253,15 @@ a { .search-section { display: flex; justify-content: space-between; + width: max-content; } +.filter-options { + width: 100%; +} .search-section .filter-options { display: flex; flex-direction: column; - width: max-content; padding: 20px; } diff --git a/bh20simplewebuploader/templates/demo-run.html b/bh20simplewebuploader/templates/demo-run.html index 4479409..c9f1473 100644 --- a/bh20simplewebuploader/templates/demo-run.html +++ b/bh20simplewebuploader/templates/demo-run.html @@ -12,15 +12,14 @@ - - - - + + + +
-- cgit v1.2.3 From 485534cb4594b3df3c00ef6dec2f410c5366aecb Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Wed, 17 Jun 2020 15:48:48 +0300 Subject: Add styling to map --- bh20simplewebuploader/static/main.css | 6 ++++-- bh20simplewebuploader/templates/demo-run.html | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'bh20simplewebuploader/static/main.css') diff --git a/bh20simplewebuploader/static/main.css b/bh20simplewebuploader/static/main.css index 66b9161..5a9f231 100644 --- a/bh20simplewebuploader/static/main.css +++ b/bh20simplewebuploader/static/main.css @@ -47,8 +47,10 @@ h2 > svg { float: right; } -#mapid { - height: 200px; +#map { + width: 800px; + height: 440px; + border: 1px solid #AAA; } /* ---- start menu ---- */ diff --git a/bh20simplewebuploader/templates/demo-run.html b/bh20simplewebuploader/templates/demo-run.html index f885dd5..a5b4150 100644 --- a/bh20simplewebuploader/templates/demo-run.html +++ b/bh20simplewebuploader/templates/demo-run.html @@ -17,7 +17,7 @@
-- cgit v1.2.3