From 326ad34b82e744b98d3341f3b70d64406f73ebc9 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Thu, 31 Jan 2019 13:35:54 +0000 Subject: [PATCH] Verify longitude and latitude are present before adding feature --- map.css | 109 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 100 insertions(+), 9 deletions(-) diff --git a/map.css b/map.css index e497aec..56ca077 100644 --- a/map.css +++ b/map.css @@ -1,24 +1,107 @@ html, body, #map { - width: 100%; - height: 100%; margin: 0; font-family: sans-serif; + overflow: hidden; +} + +#map { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; +} + +#map .ol-attribution { + left: 0; + right: auto; } #popup { color: black; background: white; padding: 5px; - border: 1px solid black; - border-radius: 10px; - font-size: 12px; + border-left: 1px solid black; + font-size: 14px; + + position: absolute; + width: 350px; + right: -365px; + top: 0; + bottom: 0; + + transition: right .4s, width .4s; + + opacity: .85; + + overflow-y: auto; +} + +#popup.show { + right: 0; +} + +@media (max-width: 600px) { + #popup { + width: 80%; + right: -100%; + } + + #popup.show { + right: 0%; + } +} + +#popup .close { + float: right; + cursor: pointer; + font-size: 20px; +} +#popup .type { + padding-bottom: 0; + color: #444; + font-size: 80%; } #popup p { margin: 0; padding: 5px; } -#popup .bold { +#popup .name { font-weight: bold; +} +#popup .vehicleInfo { + font-size: 21px; + margin: -4px 0 -5px; +} +#popup table { + margin-top: 3px; + border-top: 1px solid gray; + width: 100%; + border-collapse: collapse; +} +#popup table th { + text-align: left; + border-bottom: 1px solid #999; + padding-top: 5px; +} +#popup table td { + vertical-align: top; +} +#popup .active { + background: #f5f5f5; + color: gray; +} +#popup .success { + background: #dff0d8; +} +#popup .warning { + background: #fcf8e3; +} +#popup .danger { + background: #f2dede; +} +#popup table .vehicleInfo { + float: right; } #title { @@ -28,13 +111,16 @@ font-weight: bold; background-color: rgba(255,255,255,.6); } -#fail { - top: -10em; - right: 0.5em; + +#fail, #popup .error { background: red; color: white; font-weight: bold; padding: 5px; +} +#fail { + top: -10em; + right: 0.5em; } .ol-zoom { top: 2.2em; @@ -43,7 +129,12 @@ a { color: #337ab7; text-decoration: none; + cursor: pointer; } a:hover { text-decoration: underline; } + +.small { + font-size: 80%; +} -- Gitblit v1.9.1