diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/css/bootstrap-red.css | 9 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 9 | ||||
-rw-r--r-- | view/tpl/notifications_widget.tpl | 13 |
3 files changed, 10 insertions, 21 deletions
diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index d2daf0b8a..984a5b4f9 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -81,15 +81,6 @@ nav .dropdown-menu { text-decoration: none; } -.wall-item-tools .dropdown-menu { - min-width: auto; -} - label { font-weight: bold; } - -small, -.small { - font-size: 0.75rem; -} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index b736436f5..08a6e9d19 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1631,13 +1631,14 @@ dl.bb-dl > dd > li { } .form-group.checkbox > div label { - display: block; overflow: hidden; cursor: pointer; - border: 1px solid #ccc; - border-radius: 12px; - margin:0px; + display: block; overflow: hidden; cursor: pointer; + border: 1px solid #ccc; + border-radius: 12px; + margin:0px; -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + font-weight: normal; } .form-group.checkbox:hover label { diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 001a202af..a797cef26 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -157,17 +157,14 @@ <i class="fa fa-{11} text-muted"></i> </a> </div> - <div id="notifications" class="border rounded border-bottom-0 list-group list-group-flush navbar-nav collapse"> + <div id="notifications" class="border border-bottom-0 rounded navbar-nav collapse"> {{foreach $notifications as $notification}} - <div class="list-group collapse {{$notification.type}}-button"> + <div class="rounded list-group list-group-flush collapse {{$notification.type}}-button"> <a id="notification-link-{{$notification.type}}" class="collapsed list-group-item notification-link" href="#" title="{{$notification.title}}" data-target="#nav-{{$notification.type}}-sub" data-toggle="collapse" data-sse_type="{{$notification.type}}"> <i class="fa fa-fw fa-{{$notification.icon}}"></i> {{$notification.label}} <span class="float-right badge badge-{{$notification.severity}} {{$notification.type}}-update"></span> - <div id="notifications-spinner-{{$notification.type}}" class="float-right spinner-wrapper"> - <div class="spinner s"></div> - </div> </a> - <div id="nav-{{$notification.type}}-sub" class="list-group border-bottom collapse notification-content" data-parent="#notifications" data-sse_type="{{$notification.type}}"> + <div id="nav-{{$notification.type}}-sub" class="list-group list-group-flush border border-left-0 border-top-0 border-right-0 collapse notification-content" data-parent="#notifications" data-sse_type="{{$notification.type}}"> {{if $notification.viewall}} <a class="list-group-item text-dark" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}"> <i class="fa fa-fw fa-external-link"></i> {{$notification.viewall.label}} @@ -192,8 +189,8 @@ </div> {{/if}} {{/if}} - <div id="nav-{{$notification.type}}-menu" class="list-group"></div> - <div id="nav-{{$notification.type}}-loading" class="list-group-item border-0" style="display: none;"> + <div id="nav-{{$notification.type}}-menu" class="list-group list-group-flush"></div> + <div id="nav-{{$notification.type}}-loading" class="list-group-item border border-left-0 border-bottom-0 border-right-0" style="display: none;"> {{$loading}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span> </div> |