improve issue details layout

This commit is contained in:
mrliptontea
2015-03-01 17:02:55 +01:00
parent 2941b53826
commit dfe9588b04
2 changed files with 27 additions and 5 deletions

View File

@@ -192,16 +192,38 @@ table.attributes {
} }
> tbody > tr { > tbody > tr {
> th { th {
width: 15%;
font-weight: normal; font-weight: normal;
} }
> td { td {
width: 35%;
color: $gray-darkest; color: $gray-darkest;
} }
} }
@media screen and (min-width: $screen-md-min) {
> tbody > tr {
> th,
> td {
width: 25%;
}
}
}
@media screen and (min-width: $screen-lg-min) {
width: auto;
min-width: $screen-sm-min;
> tbody > tr {
> th {
width: 14em;
}
> td {
width: auto;
}
}
}
} }
@if $color-status { @if $color-status {

File diff suppressed because one or more lines are too long