Fixed right padding for details table

This commit is contained in:
Djamil Legato
2015-07-28 14:42:40 -07:00
parent a6b157c3ec
commit 9deb225330
3 changed files with 8 additions and 4 deletions

View File

@@ -728,11 +728,12 @@ tr {
flex: 1; }
tr td:first-child {
padding-left: 3rem; }
tr td:last-child, tr td.gpm-actions {
padding-right: 3rem; }
tr td.gpm-actions {
line-height: 1;
text-align: right;
position: relative;
padding-right: 3rem; }
position: relative; }
tr td.gpm-actions .gpm-details-expand {
position: absolute;
top: 12px;

File diff suppressed because one or more lines are too long

View File

@@ -28,11 +28,14 @@ tr {
padding-left: $padding-default;
}
&:last-child, &.gpm-actions {
padding-right: $padding-default;
}
&.gpm-actions {
line-height: 1;
text-align: right;
position: relative;
padding-right: $padding-default;
.gpm-details-expand {
position: absolute;