Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Migrate width attribute to CSS (Fixes #436) #448

Merged
merged 1 commit into from
Aug 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions public/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,22 @@ tbody {
table-layout: fixed;
}

#uploaded-file {
width: 35%;
}

#copy-file-list {
width: 25%;
}

#expiry-file-list {
width: 21%;
}

#delete-file-list {
width: 12%;
}

.icon-delete,
.icon-copy,
.icon-check {
Expand Down
8 changes: 4 additions & 4 deletions views/index.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
<thead>
<tr>
<!-- htmllint attr-bans="false" -->
<th width="35%" data-l10n-id="uploadedFile"></th>
<th width="25%" data-l10n-id="copyFileList"></th>
<th width="21%" data-l10n-id="expiryFileList"></th>
<th width="12%" data-l10n-id="deleteFileList"></th>
<th id="uploaded-file" data-l10n-id="uploadedFile"></th>
<th id="copy-file-list" data-l10n-id="copyFileList"></th>
<th id="expiry-file-list" data-l10n-id="expiryFileList"></th>
<th id="delete-file-list" data-l10n-id="deleteFileList"></th>
<!-- htmllint tag-bans="$previous" -->
</tr>
</thead>
Expand Down