52 lines
1.0 KiB
SCSS
52 lines
1.0 KiB
SCSS
.epic-row {
|
|
@include font-size(small);
|
|
align-items: center;
|
|
border-bottom: 1px solid $whitish;
|
|
display: flex;
|
|
&.is-blocked {
|
|
background: rgba($red-light, .5);
|
|
}
|
|
&.is-closed {
|
|
.name {
|
|
color: $gray-light;
|
|
text-decoration: line-through;
|
|
}
|
|
}
|
|
.status {
|
|
cursor: pointer;
|
|
button {
|
|
background: none;
|
|
}
|
|
.icon {
|
|
@include svg-size(.7rem);
|
|
fill: $gray-light;
|
|
margin-left: .1rem;
|
|
}
|
|
}
|
|
.progress-bar,
|
|
.progress-status {
|
|
height: 1.5rem;
|
|
left: 0;
|
|
position: absolute;
|
|
top: .25rem;
|
|
}
|
|
.progress-bar {
|
|
background: $mass-white;
|
|
max-width: 40vw;
|
|
width: 100%;
|
|
}
|
|
.progress-status {
|
|
background: $primary-light;
|
|
width: 10vw;
|
|
}
|
|
.vote {
|
|
color: $gray;
|
|
}
|
|
.icon-upvote {
|
|
@include svg-size(.75rem);
|
|
fill: $gray;
|
|
margin-right: .25rem;
|
|
vertical-align: middle;
|
|
}
|
|
}
|