Skip to content

Commit

Permalink
Merge pull request #168 from humhub/fix/273-cropped-folder-names
Browse files Browse the repository at this point in the history
Fix cropped folder/file names
  • Loading branch information
luke- authored Feb 14, 2023
2 parents b7585bd + a7c074b commit 6bcc88a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

0.15.1 - Unreleased
-------------------------
- Enh #168: Fix cropped folder/file names

0.15.0 - January 24, 2023
-------------------------
- Enh #157: Remove deprecated checkbox "regular" style
Expand Down
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"organisation",
"sharing"
],
"version": "0.15.0",
"version": "0.15.1",
"humhub": {
"minVersion": "1.12"
},
Expand Down
2 changes: 2 additions & 0 deletions resources/css/cfiles.css
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@

#fileList .table-responsive {
overflow: initial;
border: none;
}

#bs-table.table .file-actions {
Expand All @@ -177,6 +178,7 @@
#bs-table.table>tbody>tr>td,
#bs-table.table>tfoot>tr>td {
padding: 10px 5px 5px 5px;
height: 37px;
}

#bs-table.table>thead>tr>th label,
Expand Down
3 changes: 1 addition & 2 deletions widgets/views/fileList.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@
</th>
<?php endif; ?>

<th class="text-left" data-ui-sort="<?= FileSystemItemRow::ORDER_TYPE_NAME ?>" <?= $sort === FileSystemItemRow::ORDER_TYPE_NAME ? 'data-ui-order="'.Html::encode($order).'"' : '' ?>>
<th class="text-left" style="width:100%" data-ui-sort="<?= FileSystemItemRow::ORDER_TYPE_NAME ?>" <?= $sort === FileSystemItemRow::ORDER_TYPE_NAME ? 'data-ui-order="'.Html::encode($order).'"' : '' ?>>
<?= Yii::t('CfilesModule.base', 'Name'); ?>
</th>


<th class="hidden-xs"></th>

<th class="hidden-xs text-right" data-ui-sort="<?= FileSystemItemRow::ORDER_TYPE_SIZE ?>" <?= $sort === FileSystemItemRow::ORDER_TYPE_SIZE ? 'data-ui-order="'.Html::encode($order).'"' : '' ?>><?= Yii::t('CfilesModule.base', 'Size'); ?></th>
Expand Down

0 comments on commit 6bcc88a

Please sign in to comment.