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/menulist.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/menulist.tpl')
-rw-r--r-- | view/tpl/menulist.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/view/tpl/menulist.tpl b/view/tpl/menulist.tpl index df3cce7bf..e23035062 100644 --- a/view/tpl/menulist.tpl +++ b/view/tpl/menulist.tpl @@ -19,8 +19,8 @@ <th width="1%"></th> <th width="1%"></th> <th width="1%"></th> - <th width="1%" class="hidden-xs">{{$created}}</th> - <th width="1%" class="hidden-xs">{{$edited}}</th> + <th width="1%" class="d-none d-md-table-cell">{{$created}}</th> + <th width="1%" class="d-none d-md-table-cell">{{$edited}}</th> </tr> {{foreach $menus as $m }} <tr id="menu-list-item-{{$m.menu_id}}"> @@ -30,8 +30,8 @@ <td class="menu-list-tool"><a href="menu/{{$m.menu_id}}{{if $sys}}?f=&sys=1{{/if}}" title="{{$hintedit}}"><i class="fa fa-pencil"></i></a></td> <td class="menu-list-tool"><a href="rpost?attachment={{$m.element}}" title="{{$share}}"><i class="fa fa-share-square-o"></i></a></td> <td class="menu-list-tool"><a href="#" title="{{$hintdrop}}" onclick="dropItem('menu/{{$m.menu_id}}/drop{{if $sys}}?f=&sys=1{{/if}}', '#menu-list-item-{{$m.menu_id}}'); return false;"><i class="fa fa-trash-o drop-icons"></i></a></td> - <td class="hidden-xs">{{$m.menu_created}}</td> - <td class="hidden-xs">{{$m.menu_edited}}</td> + <td class="d-none d-md-table-cell">{{$m.menu_created}}</td> + <td class="d-none d-md-table-cell">{{$m.menu_edited}}</td> </tr> {{/foreach}} </table> |