diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/pdl/mod_invite.pdl | 10 | ||||
-rw-r--r-- | view/theme/redbasic/schema/bootstrap-nightfall.css | 2 | ||||
-rw-r--r-- | view/theme/redbasic/schema/dark.css | 17 | ||||
-rw-r--r-- | view/tpl/messages_widget.tpl | 8 |
4 files changed, 32 insertions, 5 deletions
diff --git a/view/pdl/mod_invite.pdl b/view/pdl/mod_invite.pdl new file mode 100644 index 000000000..47af1ed38 --- /dev/null +++ b/view/pdl/mod_invite.pdl @@ -0,0 +1,10 @@ +[region=aside] +[widget=profile][/widget] +[/region] +[region=content] +$content +[/region] +[region=right_aside] +[widget=notifications][/widget] +[widget=newmember][/widget] +[/region] diff --git a/view/theme/redbasic/schema/bootstrap-nightfall.css b/view/theme/redbasic/schema/bootstrap-nightfall.css index d9cb8cc63..c574ed29b 100644 --- a/view/theme/redbasic/schema/bootstrap-nightfall.css +++ b/view/theme/redbasic/schema/bootstrap-nightfall.css @@ -1895,4 +1895,4 @@ body::selection { background: rgba(23, 162, 184, 0.5); } -/*# sourceMappingURL=bootstrap-nightfall.css.map */
\ No newline at end of file +/*# sourceMappingURL=bootstrap-nightfall.css.map */ diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index 3a93a5c17..bc1a84ec8 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -32,3 +32,20 @@ a, .fakelink { color: var(--bs-link-color); } +.item-category { + background-color: #293a4f !important; +} +#cboxContent { + background-color: #273039; +} +#jot-title-wrap, +#jot-summary-wrap, +#jot-pagetitle-wrap, +#jot-category-wrap, +#jot-customjotheaders-wrap { + border-bottom: 1px solid var(--bs-border-color); +} +#adminpage table tr:hover { + background-color: #2E3136; +} + diff --git a/view/tpl/messages_widget.tpl b/view/tpl/messages_widget.tpl index ed3bc0aaf..ee933b392 100644 --- a/view/tpl/messages_widget.tpl +++ b/view/tpl/messages_widget.tpl @@ -22,7 +22,7 @@ </a> </li> </ul> -<div id="messages-widget" class="border border-top-0 overflow-auto mb-3 clearfix" style="height: 70vh;"> +<div id="messages-widget" class="border-start border-end border-bottom overflow-auto mb-3 clearfix" style="height: 70vh;"> <div id="messages-template" rel="template" class="d-none"> <a href="{6}" class="list-group-item list-group-item-action message" data-b64mid="{0}"> <div class="d-flex w-100 justify-content-between"> @@ -53,8 +53,8 @@ <div class="text-break">{{$e.summary}}</div> </div> <small>{{$e.info}}</small> - {{if $e.unseen}} - <span class="badge {{$e.unseen_class}} rounded-pill position-absolute bottom-0 end-0 m-2" title="{{$strings.unseen}}">{{$e.unseen}}</span> + {{if $e.unseen_count}} + <span class="badge bg-transparent border border-{{$e.unseen_class}} text-{{$e.unseen_class}} rounded-pill position-absolute bottom-0 end-0 m-2" title="{{$strings.unseen_count}}">{{$e.unseen_count}}</span> {{/if}} </a> {{/foreach}} @@ -129,7 +129,7 @@ e.author_addr, e.href, e.icon, - e.unseen ? '<span class="badge ' + e.unseen_class + ' rounded-pill position-absolute bottom-0 end-0 m-2" title="{{$strings.unseen}}">' + e.unseen + '</span>' : '' + e.unseen_count ? '<span class="badge bg-transparent border border-' + e.unseen_class + ' text-' + e.unseen_class + ' rounded-pill position-absolute bottom-0 end-0 m-2" title="{{$strings.unseen_count}}">' + e.unseen_count + '</span>' : '' ); $('#messages-loading').before(html); }); |