Fix priority label styling
This commit is contained in:
parent
ff0f078ee6
commit
6b7fe8ee47
2 changed files with 19 additions and 11 deletions
|
@ -30,3 +30,22 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@import '../../../styles/variables';
|
||||||
|
|
||||||
|
span.high-priority{
|
||||||
|
color: $red;
|
||||||
|
width: auto !important; // To override the width set in tasks
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
vertical-align: middle;
|
||||||
|
width: auto !important;
|
||||||
|
padding: 0 .5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.not-so-high {
|
||||||
|
color: $orange;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -142,14 +142,3 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.high-priority{
|
|
||||||
color: $red;
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.not-so-high {
|
|
||||||
color: $orange;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue