From bae28965abb179948ccd50eabdc2c038a58b9b03 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 14 Dec 2016 19:11:01 -0800 Subject: issue #446 apps usability - disable app if attached to a plugin that is uninstalled, allow system apps to be soft deleted and undeleted from the edit pane. --- view/theme/redbasic/css/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index b5f25073d..3ae52d5cc 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1067,11 +1067,12 @@ a.rconnect:hover, a.rateme:hover, div.rateme:hover { .contact-block-content { margin-top: 10px; } -.contact-block-img.archived { +.contact-block-img.archived, .app-deleted { opacity: 0.3; filter:alpha(opacity=30); } + .profile-match-connect { margin-top: 5px; } .reshared-content { margin-left: 20px; } -- cgit v1.2.3 From 6eed7eb54054502d438ea18a9411d3be7cdf14fc Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 16 Dec 2016 22:50:19 +0100 Subject: display inline instead of floating --- view/theme/redbasic/css/style.css | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 3ae52d5cc..f5998c5f6 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -473,7 +473,6 @@ footer { #contact-block { width: 100%; - float: left; } #contact-block-numcontacts { @@ -482,12 +481,10 @@ footer { } .contact-block-div { - float: left; - width: 50px; - height: 50px; + display: inline; } + .contact-block-textdiv { - float: left; width: 150px; height: 34px; } @@ -495,12 +492,11 @@ footer { #contact-block-end { clear: both; } -.contact-block-link { - float: left; -} + .contact-block-img { - width:48px; - height:48px; + width:47px; + height:47px; + margin-bottom: 3px; } #tag-remove { -- cgit v1.2.3 From 827d4c5fb094715a65d4559f8c6159eb5d31d5f7 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 16 Dec 2016 19:54:07 -0800 Subject: use lock colour to indicate that permissions have been set by the software to something you might not expect rather than an exclamation mark. This may not be the best colour in this page context, but it serves the intended purpose. Perhaps orange might be less intrusive and still convey the desired information. --- view/theme/redbasic/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 3ae52d5cc..5f5df808f 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1267,6 +1267,11 @@ img.mail-conv-sender-photo { color: $toolicon_colour; } +.jot-icons.jot-lock-warn { + color: red; +} + + /* conversation */ .nsfw-wrap { text-align: center; -- cgit v1.2.3 From e1819a874f334185e379db9390d493d12273704b Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 16 Dec 2016 22:47:25 -0800 Subject: use darkorange. --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 9bc39dfb4..8a38c68f3 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1264,7 +1264,7 @@ img.mail-conv-sender-photo { } .jot-icons.jot-lock-warn { - color: red; + color: darkorange; } -- cgit v1.2.3 From 3ad3d3037f8ba9643952bbf64e70c5edf302a73b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 19 Dec 2016 12:46:36 +0100 Subject: make sticky aside available for small screens. we had to get rid of the transition effect for this to work reliably --- view/theme/redbasic/css/style.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 8a38c68f3..c66b040a4 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -22,6 +22,8 @@ body { color: $font_colour; margin: 0px; height: 100%; + overflow-x: hidden; + } aside { @@ -30,6 +32,10 @@ aside { max-width: $aside_widthpx; } +aside#region_1 { + border-right: 1px solid transparent; +} + main { margin-left: auto; margin-right: auto; @@ -1838,10 +1844,6 @@ nav .badge.mail-update:hover { border-right: 1px solid $nav_bd; } - main { - transition: all 0.25s ease-in-out; - } - main { left: -$aside_widthpx; width: calc( 100% + $aside_widthpx ); -- cgit v1.2.3 From 4d478a3306d7b9ac3d24884fdb48dd7196e40eab Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 20 Dec 2016 11:37:57 +0100 Subject: some changes to heading sizes to make some sense in the doco (this will undergo some refinement in the next release cycle when we possibly upgrade to bootstrap 4) and get rid of the accordion for now. --- view/theme/redbasic/css/style.css | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index c66b040a4..82fe99d2d 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -42,18 +42,32 @@ main { max-width: $main_widthpx; } -h1, .h1, h2, .h2 { +h1, .h1 { + font-size: 2em; +} + +h2, .h2 { font-size: 1.667em; } -h3, .h3, h4, .h4 { +h3, .h3 { font-size: 1.334em; } -h5, .h5, h6, .h6 { - font-size: 0.75rem; +h4, .h4 { + font-size: 1em; + font-weight: bold; } +h5, .h5 { + font-size: 1em; +} + +h6, .h6 { + font-size: 0.75em; +} + + .jslider { font-family: sans-serif, arial, freesans; } -- cgit v1.2.3 From fcc92299ebaf5a723f31e44e2e16a6248bbdc04b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 21 Dec 2016 12:55:49 +0100 Subject: css fixes --- view/theme/redbasic/css/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 82fe99d2d..7ec47dfb0 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -32,10 +32,14 @@ aside { max-width: $aside_widthpx; } -aside#region_1 { +aside #region_1 { border-right: 1px solid transparent; } +aside #left_aside_wrapper { + margin-bottom: 10px; +} + main { margin-left: auto; margin-right: auto; -- cgit v1.2.3 From 2ce6d47519e4f8d2b24c721a812c8826ac9c1c7a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 22 Dec 2016 11:54:04 +0100 Subject: more robust crossbrowser support --- view/theme/redbasic/css/style.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 7ec47dfb0..3f9cd73fa 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -23,7 +23,6 @@ body { margin: 0px; height: 100%; overflow-x: hidden; - } aside { @@ -46,6 +45,16 @@ main { max-width: $main_widthpx; } +#overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + cursor: pointer; + z-index: 1029; +} + h1, .h1 { font-size: 2em; } -- cgit v1.2.3 From 95683c6239bacf71fa180b883ea8969a09bc1885 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Tue, 27 Dec 2016 19:57:53 -0500 Subject: Add webpage doco to Member guide. Add nav menu highlighting when scrolling past content --- view/theme/redbasic/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 3f9cd73fa..f6403e9e7 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -142,6 +142,11 @@ input, optgroup, select, textarea { resize: vertical; } +.selected-doco-nav { + font-weight: bold; + text-shadow: 2px 2px 3px lightgray; +} + #help-content pre code { overflow-x: auto; white-space: pre; -- cgit v1.2.3 From 8a074dedb6ded00589ea9890fd6b40789cf920ce Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 30 Dec 2016 13:35:43 +0100 Subject: css fixes and get rid of a javascript workaround --- view/theme/redbasic/css/style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f6403e9e7..091ad292e 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -8,8 +8,8 @@ /* generals */ html { - height: 100%; font-size: 100%; + overflow-x: hidden; } body { @@ -21,7 +21,6 @@ body { background-size: cover; color: $font_colour; margin: 0px; - height: 100%; overflow-x: hidden; } -- cgit v1.2.3 From dce5c7e249139ca7376e662869d9bee478dd4e09 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 1 Jan 2017 14:28:13 -0500 Subject: Add guest access token section to member guide with screenshot of settings --- view/theme/redbasic/css/style.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 091ad292e..e3ff6146b 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -146,6 +146,10 @@ input, optgroup, select, textarea { text-shadow: 2px 2px 3px lightgray; } +#doco-content img { + width: 100%; +} + #help-content pre code { overflow-x: auto; white-space: pre; -- cgit v1.2.3 From 0364bf491396c742d550fd6b0d22b929e3681432 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 4 Jan 2017 16:39:14 +0100 Subject: css fix --- view/theme/redbasic/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index e3ff6146b..ee106d50e 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1669,8 +1669,8 @@ nav .dropdown-menu { main.fullscreen { left: 0px; - width: 100%; - height: 100%; + width: 100vw; + height: 100vh; max-width: none; } -- cgit v1.2.3 From d1493e6b7046b189656a81b3fdd73ee633359206 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 7 Jan 2017 10:07:05 +0100 Subject: fix main width if right aside is hidden --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index ee106d50e..c6f075479 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1669,7 +1669,7 @@ nav .dropdown-menu { main.fullscreen { left: 0px; - width: 100vw; + width: 100%; height: 100vh; max-width: none; } -- cgit v1.2.3 From 2ace4c57d0a1b5d0030139c28d7d72e071d8b4d8 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 13 Jan 2017 11:24:34 +0100 Subject: prevent double scrollbar when we have a modal larger than the viewport --- view/theme/redbasic/css/style.css | 1 - 1 file changed, 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index c6f075479..2c1276430 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -9,7 +9,6 @@ /* generals */ html { font-size: 100%; - overflow-x: hidden; } body { -- cgit v1.2.3 From c8678ba5a9e1b5c176de85c94570890baec26b13 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 13 Jan 2017 12:53:45 +0100 Subject: evert "prevent double scrollbar when we have a modal larger than the viewport" This reverts commit 2ace4c57d0a1b5d0030139c28d7d72e071d8b4d8. --- view/theme/redbasic/css/style.css | 1 + 1 file changed, 1 insertion(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2c1276430..c6f075479 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -9,6 +9,7 @@ /* generals */ html { font-size: 100%; + overflow-x: hidden; } body { -- cgit v1.2.3 From 8ea0b2051a2f037ee67571c01b816b3a286fb5ee Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 13 Jan 2017 13:04:30 +0100 Subject: another try on preventing double scrollbars when a modal is larger than the viewport --- view/theme/redbasic/css/style.css | 2 -- 1 file changed, 2 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index c6f075479..401f052d0 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -9,7 +9,6 @@ /* generals */ html { font-size: 100%; - overflow-x: hidden; } body { @@ -21,7 +20,6 @@ body { background-size: cover; color: $font_colour; margin: 0px; - overflow-x: hidden; } aside { -- cgit v1.2.3 From 1627297143b022e8418feb63cc34e1eba1ecb0cd Mon Sep 17 00:00:00 2001 From: Hubzilla Date: Sun, 22 Jan 2017 15:17:37 -0800 Subject: use icons for app photos. --- view/theme/redbasic/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 401f052d0..5bffdd27b 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2100,3 +2100,8 @@ dl.bb-dl > dd > li { .nav-pills-stacked-icons:hover + a { background-color: #eee; } + +.app-icon { + font-size: 80px; + text-align: center; +} \ No newline at end of file -- cgit v1.2.3 From cb47354a4f76e033485e9818b137742c01466dbe Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 23 Jan 2017 16:31:40 -0800 Subject: put login form into the nav bar. Proof of concept - needs a bit of UI tweaks. --- view/theme/redbasic/css/style.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 5bffdd27b..f5e253eef 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2104,4 +2104,8 @@ dl.bb-dl > dd > li { .app-icon { font-size: 80px; text-align: center; +} + +.rmagic-button { + margin-left: 10px; } \ No newline at end of file -- cgit v1.2.3 From 6c4f7caba14e0afc3b01e272fdd82f3a3bf1b3fb Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 23 Jan 2017 16:51:23 -0800 Subject: nav-login - basic, crude theming --- view/theme/redbasic/css/style.css | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f5e253eef..cd222e06d 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2107,5 +2107,15 @@ dl.bb-dl > dd > li { } .rmagic-button { + padding-top: 10px; margin-left: 10px; + margin-bottom: 10px; +} + +#nav-login { + display: none; + width: 200px; + border: 1px solid #ccc; + border-radius: $radiuspx; + } \ No newline at end of file -- cgit v1.2.3 From cde7a3f66cd8d48f0c7aea2391a2778fe494f884 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 1 Feb 2017 12:52:19 +0100 Subject: more work on app-bin --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index cd222e06d..3f1d9e992 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2118,4 +2118,4 @@ dl.bb-dl > dd > li { border: 1px solid #ccc; border-radius: $radiuspx; -} \ No newline at end of file +} -- cgit v1.2.3 From db710cd2dfc67f4bb4c6dfde5ff62cf0a11d9f08 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 1 Feb 2017 14:45:52 -0800 Subject: fix a few style issues with nav login panel --- view/theme/redbasic/css/style.css | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index cd222e06d..77b969712 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2106,16 +2106,20 @@ dl.bb-dl > dd > li { text-align: center; } -.rmagic-button { - padding-top: 10px; - margin-left: 10px; - margin-bottom: 10px; -} - #nav-login { display: none; width: 200px; border: 1px solid #ccc; border-radius: $radiuspx; +} + +.login-dropdown-menu { + padding: 8px; + background-color: #eee; +} + +.rmagic-button { + margin: 15px 0 5px; + } \ No newline at end of file -- cgit v1.2.3 From 7ffa98118f01ed14fdd175cf45ad45e8639ab0af Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 2 Feb 2017 10:12:56 +0100 Subject: really fix badge positions --- view/theme/redbasic/css/style.css | 1 - 1 file changed, 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index d599fee50..b694def2d 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2121,5 +2121,4 @@ dl.bb-dl > dd > li { .rmagic-button { margin: 15px 0 5px; - } -- cgit v1.2.3 From 17082cda3c1600354cb3b9a40dc49182c706d103 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 2 Feb 2017 10:15:05 +0100 Subject: remove badge hover effect --- view/theme/redbasic/css/style.css | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index b694def2d..8a4ab99af 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1747,10 +1747,6 @@ blockquote { border-radius: $radiuspx; } -nav .badge:hover { - background-color: #999; -} - nav .badge.home-update, nav .badge.notify-update, nav .badge.intro-update, @@ -1758,13 +1754,6 @@ nav .badge.mail-update { background-color:#C9302C; } -nav .badge.home-update:hover, -nav .badge.notify-update:hover, -nav .badge.intro-update:hover, -nav .badge.mail-update:hover { - background-color:#D9534F; -} - .dropdown-menu { font-size: $body_font_size; border-radius: $radiuspx; -- cgit v1.2.3 From d4b51c491fd11352bf0763d46e859587a6afeb26 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 2 Feb 2017 10:59:20 +0100 Subject: do not use style in template --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 8a4ab99af..bf664ad81 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1751,7 +1751,7 @@ nav .badge.home-update, nav .badge.notify-update, nav .badge.intro-update, nav .badge.mail-update { - background-color:#C9302C; + background-color: #C9302C; } .dropdown-menu { -- cgit v1.2.3 From 8220a6584ca78e8db01d1bd1ea8720cec6952d12 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 2 Feb 2017 11:19:06 +0100 Subject: remove apps from usermenu --- view/theme/redbasic/css/style.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index bf664ad81..e55257479 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1524,6 +1524,9 @@ img.mail-conv-sender-photo { /* nav bootstrap */ +.net-button { + display: none; +} nav img { border-radius: $radiuspx; -- cgit v1.2.3 From a1f03015ec4245bc3c2c85e75327e191744ad559 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 2 Feb 2017 11:35:42 +0100 Subject: move channel manager up in the menu --- view/theme/redbasic/css/style.css | 4 ---- 1 file changed, 4 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index e55257479..80d6a3408 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1524,10 +1524,6 @@ img.mail-conv-sender-photo { /* nav bootstrap */ -.net-button { - display: none; -} - nav img { border-radius: $radiuspx; } -- cgit v1.2.3 From 63e06578c46a104b377b196aec27c6409fe9baf1 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 2 Feb 2017 14:19:23 +0100 Subject: use bootstrap dropdown for login --- view/theme/redbasic/css/style.css | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 80d6a3408..ec05a6b33 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2095,18 +2095,6 @@ dl.bb-dl > dd > li { } #nav-login { - display: none; - width: 200px; - border: 1px solid #ccc; - border-radius: $radiuspx; - -} - -.login-dropdown-menu { - padding: 8px; - background-color: #eee; -} - -.rmagic-button { - margin: 15px 0 5px; + padding: 10px; + min-width: 300px; } -- cgit v1.2.3 From e2ee565f05a43bb5fa461df3fd857dc27c8d9b67 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 2 Feb 2017 14:19:23 +0100 Subject: cherry-pick nav-login changes --- view/theme/redbasic/css/style.css | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 77b969712..fd41b4c89 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2107,19 +2107,6 @@ dl.bb-dl > dd > li { } #nav-login { - display: none; - width: 200px; - border: 1px solid #ccc; - border-radius: $radiuspx; - -} - -.login-dropdown-menu { - padding: 8px; - background-color: #eee; + padding: 10px; + min-width: 300px; } - -.rmagic-button { - margin: 15px 0 5px; - -} \ No newline at end of file -- cgit v1.2.3 From fd52cefe090a3801c3f170d4bea8cf17b57f7558 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 2 Feb 2017 20:10:35 +0100 Subject: provide separate collased menus for apps and notifications --- view/theme/redbasic/css/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index ec05a6b33..a3eaf67ae 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1818,7 +1818,8 @@ nav .badge.mail-update { #expand-aside, #expand-tabs, #doco-return-to-top-btn, -#context-help-btn { +#context-help-btn, +#notifications-btn { color: $nav_active_icon_colour; padding: 7px 10px; } -- cgit v1.2.3 From edc0a7ef91456b64abb678071838685c4d86b164 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 3 Feb 2017 15:24:21 +0100 Subject: update some apps and refine navapps.tpl --- view/theme/redbasic/css/style.css | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index a3eaf67ae..6a5b59ffd 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1188,6 +1188,11 @@ margin-right: 50px; color: $toolicon_colour; } +nav .navbar-collapse.in .generic-icons, +nav .navbar-collapse.collapsing .generic-icons { + color: $nav_active_icon_colour; +} + .admin-icons { font-size: 1.2em; color: $toolicon_colour; @@ -2092,6 +2097,8 @@ dl.bb-dl > dd > li { .app-icon { font-size: 80px; + color: $toolicon_colour; + text-shadow: 3px 3px 3px lightgrey; text-align: center; } -- cgit v1.2.3 From fc4083346eb6d7010e018b3dab92711f777f8572 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 3 Feb 2017 15:31:01 -0800 Subject: more work on nav-modal --- view/theme/redbasic/css/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index fd41b4c89..4cfd42ef1 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2108,5 +2108,8 @@ dl.bb-dl > dd > li { #nav-login { padding: 10px; - min-width: 300px; + min-width: 300px; + + border: 1px solid #000; + background-color: #fff; } -- cgit v1.2.3 From 178e3d5bc8237cd6dcf30c1ac0d2e8a24859cc47 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 4 Feb 2017 18:36:50 +0100 Subject: allow featuring of apps in /apps and update some more apd files --- view/theme/redbasic/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 6a5b59ffd..db7e50fe7 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1188,6 +1188,11 @@ margin-right: 50px; color: $toolicon_colour; } +.generic-icons-nav { + font-size: 1.2em; + margin-right: 7px; +} + nav .navbar-collapse.in .generic-icons, nav .navbar-collapse.collapsing .generic-icons { color: $nav_active_icon_colour; -- cgit v1.2.3 From 73845e01ed5e00a62341f2125e2a61c16bd73962 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sat, 4 Feb 2017 14:58:13 -0800 Subject: cleanup --- view/theme/redbasic/css/style.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 4cfd42ef1..b398738e0 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2107,9 +2107,11 @@ dl.bb-dl > dd > li { } #nav-login { - padding: 10px; - min-width: 300px; - - border: 1px solid #000; - background-color: #fff; } + +.rmagic-button { + max-width: 400px; + margin-top: 20px; + margin-left: auto; + margin-right: auto; +} \ No newline at end of file -- cgit v1.2.3 From 201a6b8742313d2b58f9668922f18b9ef38cf424 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sun, 5 Feb 2017 14:55:46 -0800 Subject: nav_login element width was page dependent. Put this in theme css --- view/theme/redbasic/css/style.css | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index b398738e0..f5da8a222 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2106,10 +2106,7 @@ dl.bb-dl > dd > li { text-align: center; } -#nav-login { -} - -.rmagic-button { +#login-main, .rmagic-button { max-width: 400px; margin-top: 20px; margin-left: auto; -- cgit v1.2.3 From ace0a1cb754422da929784b9bd24b4c106d2a66e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 8 Feb 2017 10:56:03 +0100 Subject: do not show feature button if the app is shared. css fixes --- view/theme/redbasic/css/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 02ee689ce..52a8abb03 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2104,6 +2104,9 @@ dl.bb-dl > dd > li { font-size: 80px; color: $toolicon_colour; text-shadow: 3px 3px 3px lightgrey; +} + +.app-detail { text-align: center; } @@ -2112,4 +2115,4 @@ dl.bb-dl > dd > li { margin-top: 20px; margin-left: auto; margin-right: auto; -} \ No newline at end of file +} -- cgit v1.2.3 From 8dc349caaca378192051ee08e282de3bc1679c14 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 8 Feb 2017 19:47:34 -0800 Subject: minor theming and whitespace --- view/theme/redbasic/css/style.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 52a8abb03..733d6a7c1 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2116,3 +2116,6 @@ dl.bb-dl > dd > li { margin-left: auto; margin-right: auto; } +#permcat-index { + margin: 10px; +} \ No newline at end of file -- cgit v1.2.3 From 0360d42d30ced55cdb5a92320d5915b758c8bc19 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 10 Feb 2017 10:01:43 +0100 Subject: add a login button for collapsed state and refine login modal --- view/theme/redbasic/css/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 733d6a7c1..a25ed93bc 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1829,7 +1829,8 @@ nav .badge.mail-update { #expand-tabs, #doco-return-to-top-btn, #context-help-btn, -#notifications-btn { +#notifications-btn, +#login_nav_btn_collapse { color: $nav_active_icon_colour; padding: 7px 10px; } @@ -2118,4 +2119,4 @@ dl.bb-dl > dd > li { } #permcat-index { margin: 10px; -} \ No newline at end of file +} -- cgit v1.2.3 From f62b2fc114ff479e3b0bd524b90efc799b5403e6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 12 Feb 2017 20:06:09 +0100 Subject: css fix --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index a25ed93bc..7551dfe87 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -252,7 +252,7 @@ header #banner #logo-text { display: block; position: fixed; top: 51px; - width: 100%; + left: 0px; max-height: 50%; background: $comment_item_colour; padding: 20px; -- cgit v1.2.3 From f23c380cae4c6a97ef426fac58a66c52185a8294 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 17 Feb 2017 16:31:36 +0100 Subject: add register button for collapsed state --- view/theme/redbasic/css/style.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 7551dfe87..d72320833 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1825,16 +1825,16 @@ nav .badge.mail-update { background-color: $nav_active_icon_colour; } -#expand-aside, -#expand-tabs, -#doco-return-to-top-btn, -#context-help-btn, -#notifications-btn, -#login_nav_btn_collapse { +.navbar-toggle-extra { color: $nav_active_icon_colour; padding: 7px 10px; } +a.navbar-toggle-extra:hover { + color: $nav_active_icon_colour; + text-decoration: none; +} + .nav-tabs.nav-justified { background-color: rgba(254,254,254,.5); border-top-left-radius: 4px; -- cgit v1.2.3 From d7ba2c71681f808e2215e6fa5af9a4f55446396a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 20 Feb 2017 14:02:39 +0100 Subject: if we slide to left aside make the overlay darker and leave aside as is --- view/theme/redbasic/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index d72320833..08376d6c0 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -48,6 +48,7 @@ main { left: 0; width: 100%; height: 100%; + background: rgba(0, 0, 0, .5); cursor: pointer; z-index: 1029; } @@ -1873,7 +1874,6 @@ a.navbar-toggle-extra:hover { @media screen and (max-width: 767px) { aside#region_1 { - background: rgba(0, 0, 0, .1); border-right: 1px solid $nav_bd; } -- cgit v1.2.3 From 924b353e5af6c298c6d6b2c8f049d8e3763e89b1 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 20 Feb 2017 23:09:21 +0100 Subject: width must be 100% here --- view/theme/redbasic/css/style.css | 1 + 1 file changed, 1 insertion(+) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 08376d6c0..115aa65ae 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -254,6 +254,7 @@ header #banner #logo-text { position: fixed; top: 51px; left: 0px; + width: 100%; max-height: 50%; background: $comment_item_colour; padding: 20px; -- cgit v1.2.3 From 9bab858fd1e9c4d219d8ecb1cdca1377abde7024 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 23 Feb 2017 12:31:41 +0100 Subject: move collapsed login and register buttons to the left --- view/theme/redbasic/css/style.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 115aa65ae..c632dbc74 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1832,7 +1832,16 @@ nav .badge.mail-update { padding: 7px 10px; } -a.navbar-toggle-extra:hover { +.navbar-toggle-extra-left { + float: left; + margin-left: 15px; + margin-right: 0px; + color: $nav_active_icon_colour; + padding: 7px 10px; +} + +a.navbar-toggle-extra:hover, +a.navbar-toggle-extra-left:hover { color: $nav_active_icon_colour; text-decoration: none; } -- cgit v1.2.3 From a894456550ee58f665f38d47dd6f7756bdf1efff Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 3 Mar 2017 10:04:11 +0100 Subject: fix badge position for narrow navbar --- view/theme/redbasic/css/narrow_navbar.css | 4 ---- 1 file changed, 4 deletions(-) (limited to 'view/theme/redbasic/css') diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css index 6b09b031a..689b67168 100644 --- a/view/theme/redbasic/css/narrow_navbar.css +++ b/view/theme/redbasic/css/narrow_navbar.css @@ -53,10 +53,6 @@ top: 30px !important; } - nav .badge { - top: -29px; - } - #jGrowl.top-right { top: 30px; right: 15px; -- cgit v1.2.3