2019-11-10 18:42:26 +00:00
|
|
|
.asset-size {
|
2019-11-25 10:15:10 +00:00
|
|
|
position: relative;
|
|
|
|
flex: 1;
|
2019-11-14 21:01:33 +00:00
|
|
|
margin-bottom: #{18 / $base-font-size}rem;
|
2019-11-25 10:15:10 +00:00
|
|
|
font-size: #{14 / $base-font-size}rem;
|
2019-11-10 18:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.asset-size-bar {
|
|
|
|
position: relative;
|
|
|
|
content: ' ';
|
|
|
|
display: block;
|
|
|
|
width: 200px;
|
|
|
|
height: 20px;
|
|
|
|
|
2019-11-25 10:15:10 +00:00
|
|
|
border-radius: #{3 / $base-font-size}rem;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2019-11-10 18:42:26 +00:00
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('progress-bar-background-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.asset-size-bar::before {
|
|
|
|
content: ' ';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2020-07-13 18:03:59 +00:00
|
|
|
width: calc(var(--percent, 1) * 100%);
|
2019-11-10 18:42:26 +00:00
|
|
|
|
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('progress-bar-active-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.asset-current {
|
|
|
|
position: absolute;
|
2020-03-03 21:33:52 +00:00
|
|
|
top: #{28 / $base-font-size}rem;
|
|
|
|
left: 0;
|
2019-11-10 18:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.asset-max {
|
|
|
|
position: absolute;
|
2019-11-25 10:15:10 +00:00
|
|
|
top: 0;
|
2020-03-03 21:33:52 +00:00
|
|
|
left: #{210 / $base-font-size}rem;
|
2019-11-10 18:42:26 +00:00
|
|
|
}
|