diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-12-12 10:37:04 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-12-12 10:37:04 +0100 |
commit | d0956eb39d7a361639f5cd73fb1c3c8463fb1e99 (patch) | |
tree | ff0af309ef283c48a6f3df5d590068c103d6bf7a | |
parent | 5b1ef760a06dd892a6decf6a621e710b5ae4e7bd (diff) | |
parent | 4d7acdd44d4413c5bb712fe05a77bcaccc3054a5 (diff) | |
download | volse-hubzilla-d0956eb39d7a361639f5cd73fb1c3c8463fb1e99.tar.gz volse-hubzilla-d0956eb39d7a361639f5cd73fb1c3c8463fb1e99.tar.bz2 volse-hubzilla-d0956eb39d7a361639f5cd73fb1c3c8463fb1e99.zip |
Merge remote-tracking branch 'mike/master' into dev
-rw-r--r-- | view/theme/redbasic/css/style.css | 9 | ||||
-rw-r--r-- | view/tpl/cloud_directory.tpl | 10 |
2 files changed, 14 insertions, 5 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index e46d31ef8..d88340a4e 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1802,3 +1802,12 @@ dl.bb-dl > dd > li { overflow: hidden; } +#cloud-index { + width: 100%; + table-layout: fixed; +} + +#cloud-index td { + width: auto; + overflow: hidden; +}
\ No newline at end of file diff --git a/view/tpl/cloud_directory.tpl b/view/tpl/cloud_directory.tpl index ad3caff88..660e1e011 100644 --- a/view/tpl/cloud_directory.tpl +++ b/view/tpl/cloud_directory.tpl @@ -39,12 +39,12 @@ {{else}} <table id="cloud-index"> <tr> - <th width="1%"></th> - <th width="92%">{{$name}}</th> - <th width="1%"></th><th width="1%"></th><th width="1%"></th><th width="1%"></th> + <th width="4%"></th> + <th width="47%">{{$name}}</th> + <th width="4%"></th><th width="4%"></th><th width="4%"></th><th width="4%"></th> <th width="1%">{{*{{$type}}*}}</th> - <th width="1%" class="d-none d-md-table-cell">{{$size}}</th> - <th width="1%" class="d-none d-md-table-cell">{{$lastmod}}</th> + <th width="10%" class="d-none d-md-table-cell">{{$size}}</th> + <th width="22%" class="d-none d-md-table-cell">{{$lastmod}}</th> </tr> {{if $parentpath}} <tr> |