fix: move .progress styles together as close as possible
This commit is contained in:
parent
986130a0ac
commit
6ba974f9fa
2 changed files with 31 additions and 16 deletions
|
@ -3,6 +3,21 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
|
@media screen and (min-width: $tablet) {
|
||||||
|
&.short {
|
||||||
|
max-width: 53vw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: $tablet) {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress {
|
||||||
|
// overwrite bulma
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
&.noborder {
|
&.noborder {
|
||||||
margin: 1rem -0.5rem;
|
margin: 1rem -0.5rem;
|
||||||
}
|
}
|
||||||
|
@ -16,6 +31,7 @@
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
margin-bottom: .5rem;
|
margin-bottom: .5rem;
|
||||||
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,21 +40,6 @@
|
||||||
font-size: .9rem;
|
font-size: .9rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.progress {
|
|
||||||
width: 50px;
|
|
||||||
margin: 0 0.5rem 0 0;
|
|
||||||
flex: 3 1 auto;
|
|
||||||
|
|
||||||
@media screen and (max-width: $tablet) {
|
|
||||||
margin: 0.5rem 0 0 0;
|
|
||||||
order: 1;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.task:last-child {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.is-menu-enabled .tasks .task {
|
.is-menu-enabled .tasks .task {
|
||||||
|
|
|
@ -42,12 +42,26 @@ h6 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FIXME: create <ProgressBar> component. used in
|
||||||
|
// - attachments.vue
|
||||||
|
// - kanban-card.vue
|
||||||
|
// - singleTaskInList.vue
|
||||||
.progress {
|
.progress {
|
||||||
border-radius: $radius-large;
|
border-radius: $radius-large;
|
||||||
|
width: 50px;
|
||||||
|
margin: 0 0.5rem 0 0;
|
||||||
|
flex: 3 1 auto;
|
||||||
|
|
||||||
&::-moz-progress-bar, &::-webkit-progress-value {
|
&::-moz-progress-bar,
|
||||||
|
&::-webkit-progress-value {
|
||||||
background: $grey-500;
|
background: $grey-500;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: $tablet) {
|
||||||
|
margin: 0.5rem 0 0 0;
|
||||||
|
order: 1;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-no-border {
|
.has-no-border {
|
||||||
|
|
Loading…
Reference in a new issue