diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-01-24 10:25:31 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-01-24 10:25:31 +0100 |
commit | c8239c739d08093b3e777b66a06e13290981ae9e (patch) | |
tree | 68f69ae839aee9a8324325073ebaaea09c9b2d2c /view/tpl | |
parent | 6c4f7caba14e0afc3b01e272fdd82f3a3bf1b3fb (diff) | |
download | volse-hubzilla-c8239c739d08093b3e777b66a06e13290981ae9e.tar.gz volse-hubzilla-c8239c739d08093b3e777b66a06e13290981ae9e.tar.bz2 volse-hubzilla-c8239c739d08093b3e777b66a06e13290981ae9e.zip |
do not show location row on small viewports.
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/locmanage.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl index a450c2847..fe2d5ec84 100644 --- a/view/tpl/locmanage.tpl +++ b/view/tpl/locmanage.tpl @@ -22,7 +22,7 @@ <table id="locs-index"> <tr> <th>{{$addr}}</th> - <th class="hidden-xs">{{$loc}}</th> + <th class="hidden-xs hidden-sm">{{$loc}}</th> <th>{{$mkprm}}</th> <th>{{$drop}}</th> </tr> @@ -30,7 +30,7 @@ {{if ! $hub.deleted }} <tr class="locs-index-row"> <td>{{$hub.hubloc_addr}}</td> - <td class="hidden-xs">{{$hub.hubloc_url}}</td> + <td class="hidden-xs hidden-sm">{{$hub.hubloc_url}}</td> <td>{{if $hub.primary}}<i class="fa fa-check-square-o"></i>{{else}}<i class="fa fa-square-o primehub" onclick="primehub({{$hub.hubloc_id}}); return false;"></i>{{/if}}</td> <td><i class="fa fa-trash-o drophub" onclick="drophub({{$hub.hubloc_id}}); return false;"></i></td> </tr> |