Align number columns right as per docs

Fixes #2396
This commit is contained in:
Samuel Georges 2016-10-14 08:07:49 +11:00
parent f18ff0daac
commit 7b8f17e6d1
2 changed files with 6 additions and 0 deletions

View File

@ -284,6 +284,11 @@ table.table.data {
text-align: center;
}
th.list-cell-type-number,
td.list-cell-type-number {
text-align: right;
}
//
// Labels
//

View File

@ -2613,6 +2613,7 @@ table.table.data.no-active-indicator tbody tr td:first-child{border-left:none}
table.table.data tfoot a{color:#666666;text-decoration:none}
table.table.data tfoot td,table.table.data tfoot th{border-color:#d4d8da;padding:10px 15px}
table.table.data th.list-cell-type-switch,table.table.data td.list-cell-type-switch{text-align:center}
table.table.data th.list-cell-type-number,table.table.data td.list-cell-type-number{text-align:right}
table.table.data .list-badge{display:inline-block;position:relative;top:-1px;margin:0 5px 0 0;padding:1px 0 0 0;font-size:10px;width:15px;height:15px;text-align:center;border-radius:3px;color:#fff}
table.table.data .list-badge.badge-default{background:#999999}
table.table.data .list-badge.badge-primary{background:#34495e}