From 76af8fa754467e13bcd8c83620ac1c174e777170 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 17 Nov 2017 13:54:53 +0100 Subject: inroduce the HQ module - a module with the potential to become a nice landing page for hubzilla. It is nothing more than a downgraded mod display atm. --- view/css/mod_hq.css | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 view/css/mod_hq.css (limited to 'view/css') diff --git a/view/css/mod_hq.css b/view/css/mod_hq.css new file mode 100644 index 000000000..dde242d4e --- /dev/null +++ b/view/css/mod_hq.css @@ -0,0 +1,3 @@ +#jot-popup { + display: none; +} -- cgit v1.2.3 From 3efe144fa0c455529a3f6244557d1253885134cf Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 19 Nov 2017 21:41:45 +0100 Subject: revisit media breakpoints - do not switch to mobile view to early. --- view/css/bootstrap-red.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view/css') diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index 18efd69e4..a0b7c5bba 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -11,7 +11,7 @@ nav .dropdown-menu { min-width: 16rem; } -@media screen and (min-width: 767px) { +@media screen and (min-width: 992px) { nav .badge { top: 0px; left: 0px; @@ -19,7 +19,7 @@ nav .dropdown-menu { } } -@media screen and (max-width: 767px) { +@media screen and (max-width: 992px) { .navbar { padding: .5rem 7px; } -- cgit v1.2.3