2017-07-11 15:37:43 +00:00
|
|
|
.asset-table-container {
|
2019-08-21 15:28:38 +00:00
|
|
|
overflow-y: auto;
|
2017-07-11 15:37:43 +00:00
|
|
|
max-width: 100%;
|
2020-04-02 17:43:34 +00:00
|
|
|
min-height: 100%;
|
2017-07-11 15:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.asset-table {
|
|
|
|
width: 100%;
|
2019-11-10 18:39:41 +00:00
|
|
|
|
2017-07-11 15:37:43 +00:00
|
|
|
max-height: 100%;
|
|
|
|
border-spacing: 0;
|
2019-09-10 22:42:23 +00:00
|
|
|
position: relative;
|
|
|
|
& .asset-table__dropdown-column {
|
2019-11-10 18:39:41 +00:00
|
|
|
width: #{60 / $base-font-size}rem;
|
|
|
|
position: relative;
|
2017-07-11 15:37:43 +00:00
|
|
|
}
|
2019-11-10 18:39:41 +00:00
|
|
|
}
|
2017-07-11 15:37:43 +00:00
|
|
|
|
2019-11-10 18:39:41 +00:00
|
|
|
.asset-table thead th {
|
|
|
|
height: #{32 / $base-font-size}rem;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('background-color');
|
2019-10-31 18:21:43 +00:00
|
|
|
}
|
2019-11-10 18:39:41 +00:00
|
|
|
}
|
2019-10-31 18:21:43 +00:00
|
|
|
|
2019-11-10 18:39:41 +00:00
|
|
|
.asset-table thead th:nth-child(1){
|
|
|
|
padding-left: #{12 / $base-font-size}rem;
|
2017-07-11 15:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.asset-table__row {
|
|
|
|
margin: #{10 / $base-font-size}rem;
|
|
|
|
height: #{72 / $base-font-size}rem;
|
|
|
|
font-size: #{16 / $base-font-size}rem;
|
2019-11-10 18:39:41 +00:00
|
|
|
}
|
2017-07-11 15:37:43 +00:00
|
|
|
|
2019-11-10 18:39:41 +00:00
|
|
|
.asset-table__row:nth-child(odd) {
|
|
|
|
@include themify() {
|
|
|
|
background: getThemifyVariable('table-row-stripe-color');
|
2017-07-11 15:37:43 +00:00
|
|
|
}
|
2019-11-10 18:39:41 +00:00
|
|
|
}
|
2017-07-11 15:37:43 +00:00
|
|
|
|
2019-11-10 18:39:41 +00:00
|
|
|
.asset-table__row > th:nth-child(1) {
|
|
|
|
padding-left: #{12 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.asset-table__row a {
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('primary-text-color');
|
2017-07-11 15:37:43 +00:00
|
|
|
}
|
2019-11-10 18:39:41 +00:00
|
|
|
}
|
2017-07-11 15:37:43 +00:00
|
|
|
|
2019-11-10 18:39:41 +00:00
|
|
|
.asset-table thead {
|
|
|
|
font-size: #{12 / $base-font-size}rem;
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('inactive-text-color')
|
2017-07-11 15:37:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-10 18:39:41 +00:00
|
|
|
.asset-table th {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2017-07-11 15:37:43 +00:00
|
|
|
.asset-table__empty {
|
|
|
|
text-align: center;
|
|
|
|
font-size: #{16 / $base-font-size}rem;
|
2019-08-11 09:08:17 +00:00
|
|
|
padding: #{42 / $base-font-size}rem 0;
|
2017-07-11 15:37:43 +00:00
|
|
|
}
|
2019-09-10 22:42:23 +00:00
|
|
|
|
|
|
|
.asset-table__total {
|
|
|
|
padding: 0 #{20 / $base-font-size}rem;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('background-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.asset-table__dropdown-button {
|
|
|
|
width:#{25 / $base-font-size}rem;
|
|
|
|
height:#{25 / $base-font-size}rem;
|
|
|
|
|
|
|
|
@include themify() {
|
2020-04-29 22:34:37 +00:00
|
|
|
& polygon, & path {
|
2020-04-22 21:45:48 +00:00
|
|
|
fill: getThemifyVariable('inactive-text-color');
|
2019-09-10 22:42:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.asset-table__action-dialogue {
|
|
|
|
@extend %dropdown-open-right;
|
|
|
|
top: 63%;
|
|
|
|
right: calc(100% - 26px);
|
|
|
|
}
|
2019-09-25 21:54:46 +00:00
|
|
|
|
|
|
|
.asset-table__action-option {
|
|
|
|
font-size: #{12 / $base-font-size}rem;
|
|
|
|
}
|