From a1eb39872ba5017be218d48f319addf3d40ff05d Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 12 Feb 2023 10:43:31 +0000 Subject: implement hq widget author image and notifications updates --- view/css/widgets.css | 6 +++++ view/js/autocomplete.js | 2 +- view/theme/redbasic/css/style.css | 22 ++++-------------- view/theme/redbasic/php/style.php | 4 ++-- view/tpl/channel_activities.tpl | 2 +- view/tpl/messages_widget.tpl | 47 ++++++++++++++++++++++++++------------- view/tpl/notifications_widget.tpl | 32 ++++++++++++++++---------- 7 files changed, 66 insertions(+), 49 deletions(-) (limited to 'view') diff --git a/view/css/widgets.css b/view/css/widgets.css index 463f53d22..6b5ef3986 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -242,6 +242,11 @@ a.wikilist { position: relative; } +/* messages (hq) */ +#messages-author-container { + z-index: 3 !important; +} + /* hq_controls */ .hq_controls_fixed_bottom_center { z-index: 1028; @@ -250,3 +255,4 @@ a.wikilist { left: 50%; transform: translateX(-50%); } + diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index e50a4f927..8edd8dafa 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -38,7 +38,7 @@ function contact_format(item) { var desc = ((item.label) ? item.nick + ' ' + item.label : item.nick); if(typeof desc === 'undefined') desc = ''; if(desc) desc = ' ('+desc+')'; - return "".format(item.taggable, item.photo, item.name, desc, typeof(item.link) !== 'undefined' ? item.link : desc.replace('(','').replace(')','')); + return "".format(item.taggable, item.photo, item.name, desc, typeof(item.link) !== 'undefined' ? item.link : desc.replace('(','').replace(')','')); } else return ""; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 6675ebaf8..5d27071a5 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -774,20 +774,6 @@ div.jGrowl div.jGrowl-notification { text-overflow: ellipsis; } -.dropdown-notification, -.notification, -.member-item { - line-height: 1rem; - overflow: hidden; - text-overflow: ellipsis; - display: block; - white-space: nowrap; -} - -.notification.notification-forum { - font-size: 0.9rem; -} - #acl-search::-webkit-input-placeholder { /* non-fontawesome fonts set a fallback for text parts of the placeholder*/ font-family: ForkAwesome, sans-serif, arial, freesans; @@ -1202,15 +1188,15 @@ img.mail-conv-sender-photo { .menu-img-3 { width: 3rem; height: 3rem; - margin-right: 5px; + margin-right: .5rem; border-radius: var(--bs-border-radius); float: left; } .menu-img-2 { - height: 2rem; - width: 2rem; - margin-right: 5px; + height: 2.3rem; + width: 2.3rem; + margin-right: .5rem; border-radius: var(--bs-border-radius); float: left; } diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 4d5bd42be..d29de1b15 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -129,8 +129,8 @@ if(file_exists('view/theme/redbasic/css/style.css')) { $x .= $schemecss; } - $left_aside_width = 21; //unit: rem - $right_aside_width = 21; //unit: rem + $left_aside_width = 22; //unit: rem + $right_aside_width = 22; //unit: rem $main_width = $left_aside_width + $right_aside_width + intval($converse_width); diff --git a/view/tpl/channel_activities.tpl b/view/tpl/channel_activities.tpl index acce3cb13..3ec37e235 100644 --- a/view/tpl/channel_activities.tpl +++ b/view/tpl/channel_activities.tpl @@ -6,7 +6,7 @@