2015-07-28 14:36:19 -07:00
|
|
|
table,
|
|
|
|
|
tbody {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2014-09-03 22:22:03 -06:00
|
|
|
|
2015-07-28 14:36:19 -07:00
|
|
|
.gpm-details {
|
|
|
|
|
width: 100%;
|
|
|
|
|
flex: auto;
|
2014-09-03 22:22:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td {
|
2014-09-10 11:29:49 -06:00
|
|
|
border: 0;
|
|
|
|
|
border-bottom: 1px solid darken($content-bg, 5%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tr {
|
|
|
|
|
@include transition(all 0.2s ease);
|
|
|
|
|
|
2015-07-28 14:36:19 -07:00
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
2014-09-10 11:29:49 -06:00
|
|
|
td {
|
2015-07-28 14:36:19 -07:00
|
|
|
display: block;
|
|
|
|
|
flex: 1;
|
2014-09-10 11:29:49 -06:00
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
padding-left: $padding-default;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-28 14:42:40 -07:00
|
|
|
&:last-child, &.gpm-actions {
|
|
|
|
|
padding-right: $padding-default;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-28 14:36:19 -07:00
|
|
|
&.gpm-actions {
|
|
|
|
|
line-height: 1;
|
2014-09-10 11:29:49 -06:00
|
|
|
text-align: right;
|
2015-07-28 14:36:19 -07:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.gpm-details-expand {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 12px;
|
|
|
|
|
right: 12px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.gpm-details {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background-color: #f7f7f7;
|
|
|
|
|
|
|
|
|
|
> .table-wrapper {
|
|
|
|
|
display: none;
|
2015-07-28 14:41:00 -07:00
|
|
|
|
|
|
|
|
td {
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
}
|
2015-07-28 14:36:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2014-09-10 11:29:49 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
td {
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
background: lighten($content-bg,2%);
|
|
|
|
|
}
|
2014-09-03 22:22:03 -06:00
|
|
|
}
|
2015-07-28 14:36:19 -07:00
|
|
|
|