Tidy up Asset styles
This commit is contained in:
parent
ff86e45e0a
commit
e3949a7cbd
1 changed files with 36 additions and 48 deletions
|
@ -1,5 +1,4 @@
|
||||||
.asset-table-container {
|
.asset-table-container {
|
||||||
// flex: 1 1 0%;
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
min-height: #{400 / $base-font-size}rem;
|
min-height: #{400 / $base-font-size}rem;
|
||||||
|
@ -7,17 +6,37 @@
|
||||||
|
|
||||||
.asset-table {
|
.asset-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-bottom: #{10 / $base-font-size}rem;
|
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
& .asset-list__delete-column {
|
& .sketch-list__dropdown-column {
|
||||||
width: #{23 / $base-font-size}rem;
|
width: #{60 / $base-font-size}rem;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
& thead {
|
.asset-table thead th {
|
||||||
font-size: #{12 / $base-font-size}rem;
|
height: #{32 / $base-font-size}rem;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
@include themify() {
|
@include themify() {
|
||||||
color: getThemifyVariable('inactive-text-color')
|
background-color: getThemifyVariable('background-color');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.asset-table thead th:nth-child(1){
|
||||||
|
padding-left: #{12 / $base-font-size}rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.asset-table__row {
|
||||||
|
margin: #{10 / $base-font-size}rem;
|
||||||
|
height: #{72 / $base-font-size}rem;
|
||||||
|
font-size: #{16 / $base-font-size}rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.asset-table__row:nth-child(odd) {
|
||||||
|
@include themify() {
|
||||||
|
background: getThemifyVariable('table-row-stripe-color');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,56 +44,25 @@
|
||||||
padding-left: #{12 / $base-font-size}rem;
|
padding-left: #{12 / $base-font-size}rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
& thead th {
|
.asset-table__row a {
|
||||||
padding-top: #{10 / $base-font-size}rem;
|
|
||||||
padding-bottom: #{15 / $base-font-size}rem;
|
|
||||||
height: #{32 / $base-font-size}rem;
|
|
||||||
font-weight: normal;
|
|
||||||
position: sticky;
|
|
||||||
top: #{15 / $base-font-size}rem;
|
|
||||||
@include themify() {
|
|
||||||
background-color: getThemifyVariable('background-color');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
& th {
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.asset-table__row {
|
|
||||||
margin: #{10 / $base-font-size}rem;
|
|
||||||
height: #{72 / $base-font-size}rem;
|
|
||||||
font-size: #{16 / $base-font-size}rem;
|
|
||||||
|
|
||||||
&:nth-child(odd) {
|
|
||||||
@include themify() {
|
|
||||||
background: getThemifyVariable('table-row-stripe-color');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
& a {
|
|
||||||
@include themify() {
|
@include themify() {
|
||||||
color: getThemifyVariable('primary-text-color');
|
color: getThemifyVariable('primary-text-color');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
& td:first-child {
|
.asset-table thead {
|
||||||
padding-left: #{10 / $base-font-size}rem;
|
font-size: #{12 / $base-font-size}rem;
|
||||||
|
@include themify() {
|
||||||
|
color: getThemifyVariable('inactive-text-color')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.asset-table th {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
.asset-table__empty {
|
.asset-table__empty {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: #{16 / $base-font-size}rem;
|
font-size: #{16 / $base-font-size}rem;
|
||||||
padding: #{42 / $base-font-size}rem 0;
|
padding: #{42 / $base-font-size}rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.asset-table__total {
|
|
||||||
padding: 0 #{20 / $base-font-size}rem;
|
|
||||||
position: sticky;
|
|
||||||
top: 0;
|
|
||||||
@include themify() {
|
|
||||||
background-color: getThemifyVariable('background-color');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue