From e70bd0054c4ffb8aadeec8ee7c14dccdb34ab934 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 2 Nov 2017 18:25:34 -0700 Subject: hubzilla issue #896 --- view/css/mod_pubstream.css | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 view/css/mod_pubstream.css (limited to 'view/css') diff --git a/view/css/mod_pubstream.css b/view/css/mod_pubstream.css new file mode 100644 index 000000000..dde242d4e --- /dev/null +++ b/view/css/mod_pubstream.css @@ -0,0 +1,3 @@ +#jot-popup { + display: none; +} -- cgit v1.2.3 From 9d584fc72062422ec38a6321aedb7ca43f4ea429 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 8 Nov 2017 08:57:30 +0100 Subject: truncate nav-app-link if appropriate --- view/css/bootstrap-red.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/css') diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index 2dfc9e07b..18efd69e4 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -19,7 +19,6 @@ nav .dropdown-menu { } } - @media screen and (max-width: 767px) { .navbar { padding: .5rem 7px; @@ -41,6 +40,7 @@ nav .dropdown-menu { .navbar-toggler-right { padding: 0.2rem 0; + white-space: nowrap; } #navbar-collapse-1 i { -- cgit v1.2.3 From 5e541ff53b6db3da712b82ae3c470a5445b88767 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 10 Nov 2017 10:50:19 +0100 Subject: bring some ajax to photo upload --- view/css/mod_photos.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'view/css') diff --git a/view/css/mod_photos.css b/view/css/mod_photos.css index 72dd7ffe7..8a189e9e5 100644 --- a/view/css/mod_photos.css +++ b/view/css/mod_photos.css @@ -34,3 +34,29 @@ left: -9999px; top: -9999px; } + +#upload-index { + width: 100%; +} + +#upload-index td:nth-child(1){ + padding: 7px 3px 7px 10px; +} + +#upload-index td:nth-child(4){ + padding: 7px 10px 7px 3px; + white-space: nowrap; +} + +#photos-upload-form.hover { + background-color: aliceblue; + opacity: 0.5; + box-shadow: inset 0 0px 7px #5cb85c; +} + +.upload-progress-bar { + background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mOM2RFTDwAE2QHxFMHIIwAAAABJRU5ErkJggg==') repeat-y; + background-size: 0px; + padding: 0px !important; + height: 3px; +} -- cgit v1.2.3 From ed0d7890abaf5566b8d5d71f689d750b87b79dec Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 15 Nov 2017 09:07:33 +0100 Subject: move notifications style to widgets.css --- view/css/widgets.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'view/css') diff --git a/view/css/widgets.css b/view/css/widgets.css index cea3a3820..5b1273e25 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -168,3 +168,31 @@ a.wikilist { .active .conv-participants { color: #fff; } + +/* notifications */ + +.notification-content { + max-height: 70vh; + overflow: auto; +} + +.notification-content.collapsing { + overflow: hidden; +} + +.fs { + position: fixed; + top: 0px; + left: 0px; + padding: 4.5rem .5rem 1rem .5rem; + background-color: white; + width: 100%; + max-width: 100%; + height: 100%; + z-index: 1029; + overflow: auto; +} + +#notifications { + margin-bottom: 1rem; +} -- cgit v1.2.3 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 From 8fcf16ee63c86667afe5646ea46d56dd1c96aa08 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 22 Nov 2017 18:39:23 -0800 Subject: optional divider between item header and body --- view/css/conversation.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'view/css') diff --git a/view/css/conversation.css b/view/css/conversation.css index d2736acaa..77a600deb 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -87,6 +87,10 @@ margin-left:10px; } +.wall-item-divider { + margin: 5px; +} + .wall-item-lock { float: left; } -- cgit v1.2.3 From 861bd15c72fcc7e1a82a4579005019fc051c2a21 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 13 Dec 2017 12:34:14 +0100 Subject: fix issue with long filenames in mod cloud --- view/css/mod_cloud.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'view/css') diff --git a/view/css/mod_cloud.css b/view/css/mod_cloud.css index 53eb80b44..83deddf8a 100644 --- a/view/css/mod_cloud.css +++ b/view/css/mod_cloud.css @@ -21,6 +21,10 @@ padding: 7px 3px 7px 10px; } +#cloud-index td:nth-child(2){ + word-break: break-all; +} + #cloud-index th:nth-child(8), #cloud-index td:nth-child(8){ padding: 7px 3px; -- cgit v1.2.3 From fefc78a849ade52927f6ae88a3c1f03501d66930 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 7 Jan 2018 19:14:19 +0100 Subject: start with nonactive state for the notifications button and display some text if there are no notifications on small screens only --- view/css/widgets.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'view/css') diff --git a/view/css/widgets.css b/view/css/widgets.css index 5b1273e25..76e829b04 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -170,6 +170,9 @@ a.wikilist { } /* notifications */ +.notifications-btn { + opacity: .5; +} .notification-content { max-height: 70vh; -- cgit v1.2.3