N°330 attachments size column : right align (both on console and portal)

Allows easier comparison to see bigger files
This commit is contained in:
Pierre Goiffon
2019-12-17 12:31:14 +01:00
parent 34c76c735a
commit 97e4ff30ff
3 changed files with 11 additions and 0 deletions

View File

@@ -3850,3 +3850,8 @@ input:checked + .slider:before {
.pull-right { float: right; }
.pull-left { float: left; }
table.attachmentsList tr>td:nth-child(3) {
text-align: right;
padding-right: 0.5em;
}

View File

@@ -1121,6 +1121,9 @@ table .group-actions {
.attachments_container .attachmentsList tbody > tr > td:first-child {
text-align: center;
}
.attachments_container .attachmentsList tbody > tr > td:nth-child(3) {
text-align: right;
}
.attachments_container .attachment {
height: 4em;
}

View File

@@ -1207,6 +1207,9 @@ table .group-actions .item-action-wrapper .panel-body > p:last-child{
&:first-child {
text-align: center;
}
&:nth-child(3) {
text-align: right;
}
}
}