From 7bf7fc49b73622797d7ea4f56d454e621320186c Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 24 Jan 2017 17:36:46 +0100 Subject: UI: short menu don't hide the main content --- ishtar_common/static/media/style.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'ishtar_common/static') diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index b1939eaf0..e64dd1441 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -358,7 +358,7 @@ div#header{ position: fixed; top: 0; z-index: 10; - width:100%; + width: 400px; text-align:left; font-size: 0.9em; background-color: #EAEAEA; @@ -488,10 +488,16 @@ div#context_menu fieldset{ -webkit-border-radius: 0; border-radius: 0; position: fixed; - top: 40px; + top: 8px; right: 10px; } +@media screen and (max-width: 680px) { + div#context_menu fieldset{ + display: none; + } +} + div#action_current_items{ display: inline-block; vertical-align: top; @@ -605,7 +611,7 @@ div#welcome{ div#content{ clear:both; - margin-top:205px ; + margin-top:225px ; margin-bottom: 70px; margin-left: 200px; margin-right: 150px; -- cgit v1.2.3 From 136d69ad974a2beb94abb0b669d88054371ef57b Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 24 Jan 2017 19:30:18 +0100 Subject: v0.99.5 --- CHANGES.md | 6 ++++++ ishtar_common/static/media/style.css | 2 +- version.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) (limited to 'ishtar_common/static') diff --git a/CHANGES.md b/CHANGES.md index 466d91d1d..bd20ae584 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,12 @@ Ishtar changelog ================ +0.99.5 (2017-01-24) +------------------- + +- UI: short menu don't hide the main content +- Wizard: fix parcel reuse in creation + 0.99.4 (2017-01-24) ------------------- diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index e64dd1441..6fe6e6532 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -358,7 +358,7 @@ div#header{ position: fixed; top: 0; z-index: 10; - width: 400px; + width: 500px; text-align:left; font-size: 0.9em; background-color: #EAEAEA; diff --git a/version.py b/version.py index b6c2ab025..4cf114c57 100644 --- a/version.py +++ b/version.py @@ -1,4 +1,4 @@ -VERSION = (0, 99, 4, 1) +VERSION = (0, 99, 5) def get_version(): -- cgit v1.2.3