blob: 26490f68e7cb7a5288b10948b7a495b9d70a4058 [file] [log] [blame]
// Table Header
.table-header {
width: 100%;
color: $black;
line-height: 30px;
padding: .8em 0 0;
margin-bottom: .8em;
border-bottom: 1px solid $medgrey;
font-size: 1.25em;
@include mediaQuery(medium) {
margin: 1.8em 0;
}
}
// Table
.table {
width: 100%;
}
.table__row {
display: flex;
width: 100%;
max-width: calc(100vw - 10px);
flex-wrap: wrap;
font-weight: 400;
position: relative;
&.disabled {
background-color: $disabled-row;
color: $disabled-row-txt;
}
}
.table__row-save {
position: absolute;
top: 0;
left: 0;
width: 100%;
height:100%;
background: $darkbg__primary;
z-index:200;
color: $white;
padding: .8em 1em;
text-align: center;
font-size: 1.5em;
font-weight: bold;
}
.table__cell {
flex: 0 0 100%;
line-height: 2.8em;
padding: .5em 1em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
border-bottom: 1px solid $medgrey;
@include mediaQuery(small) {
flex: 1;
}
//
//@include mediaQuery(large) {
// padding: 15px 30px;
//}
}
.table__cell-label {
display: inline-block;
font-weight: 700;
min-width: 50%;
padding-right: 15px;
@include mediaQuery(small) {
display: none;
}
}
// Table Head
.table__head {
.table__row {
display: none;
font-weight: 700;
border-bottom: 1px solid $medgrey;
background-color: $darkbg__primary;
color: $white;
@include mediaQuery(small) {
display: flex;
}
.table__cell {
@include fastTransition-all();
position: relative;
border: 0;
&:last-child {
border: 0;
}
}
}
}
.table__row-uploading {
color: $darkgrey;
font-weight: 700;
@include indeterminate-bar;
}
.sort-heading {
}