diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-05-25 19:56:31 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-05-25 19:56:31 +0200 |
commit | f9c9d2374f253d89eb8b883d40bdd33382f61f31 (patch) | |
tree | 3f518cd8e450959b37cbceabadfff82540ebe921 | |
parent | 9df92736ed8b57c39e0deb85d7c536e56535321b (diff) | |
download | Chimère-f9c9d2374f253d89eb8b883d40bdd33382f61f31.tar.bz2 Chimère-f9c9d2374f253d89eb8b883d40bdd33382f61f31.zip |
Better layout for form
-rw-r--r-- | chimere/static/chimere/css/forms.css | 40 |
1 files changed, 24 insertions, 16 deletions
diff --git a/chimere/static/chimere/css/forms.css b/chimere/static/chimere/css/forms.css index 99c522f..2cf9a56 100644 --- a/chimere/static/chimere/css/forms.css +++ b/chimere/static/chimere/css/forms.css @@ -14,18 +14,26 @@ /**/ -div.rightWrapper{ - /* width: 100%; - float:left;*/ +.bsmSelect{ + max-width: 300px; } + div.rightWrapper{ + width: 90%; + } -div.rightform{ - /*margin-left:400px;*/ - height:450px; -} -div.leftform{ - /* width: 400px;*/ +@media (min-width: 900px) { + + div.rightWrapper{ + width: 60%; + float:right; + } + + div.leftform{ + width: 40%; + float:left; + } + } div.bottomform{ @@ -33,20 +41,16 @@ div.bottomform{ width: 100%; } -.edit .fieldWrapper{ - display:inline-block; -} - .fieldWrapper.full{ width:100%; display:block; } #map_edit, #map_edit_area{ - margin:0; + margin: 0; border: 1px solid black; - width:100%; - height:350px; + width: 100%; + height: 350px; clear: both; } @@ -55,6 +59,10 @@ div.bottomform{ display:none; } +.edit #map_edit{ + height: 500px; +} + .map_button{ position:absolute; z-index:1000; |