diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-20 11:18:23 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-20 11:18:23 +0100 |
commit | 37d350c3f589779a32ca356047d8c7244ac4878f (patch) | |
tree | fa042cc1f488fd91ae395d6335753cd9742d6baf /view/tpl/common_tabs.tpl | |
parent | b10c519cc16ac7cc115becd19bc8eeb3ee2e4c38 (diff) | |
download | volse-hubzilla-37d350c3f589779a32ca356047d8c7244ac4878f.tar.gz volse-hubzilla-37d350c3f589779a32ca356047d8c7244ac4878f.tar.bz2 volse-hubzilla-37d350c3f589779a32ca356047d8c7244ac4878f.zip |
update to latest bs4 from git and change hidden-* classes to d-*
Diffstat (limited to 'view/tpl/common_tabs.tpl')
-rwxr-xr-x | view/tpl/common_tabs.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/common_tabs.tpl b/view/tpl/common_tabs.tpl index e78f54a3c..29c46369b 100755 --- a/view/tpl/common_tabs.tpl +++ b/view/tpl/common_tabs.tpl @@ -1,11 +1,11 @@ -<div class="mb-4 hidden-sm-down"> +<div class="mb-4 d-none d-md-block"> <ul class="nav nav-tabs nav-fill"> {{foreach $tabs as $tab}} <li class="nav-item"{{if $tab.id}} id="{{$tab.id}}"{{/if}}><a class="nav-link{{if $tab.sel}} {{$tab.sel}}{{/if}}" href="{{$tab.url}}"{{if $tab.title}} title="{{$tab.title}}"{{/if}}>{{$tab.label}}</a></li> {{/foreach}} </ul> </div> -<div class="hidden-md-up dropdown clearfix" style="position:fixed; right:7px; top:4.5rem; z-index:1020"> +<div class="d-md-none dropdown clearfix" style="position:fixed; right:7px; top:4.5rem; z-index:1020"> <button type="button" class="btn btn-outline-secondary btn-sm float-right" data-toggle="dropdown"> <i class="fa fa-bars"></i> </button> |