2019-04-02 11:19:17 +00:00
|
|
|
.user-label {
|
2020-03-01 21:40:01 +00:00
|
|
|
border-radius: none;
|
2019-04-02 11:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.label-edit-box {
|
|
|
|
color: $foreground;
|
|
|
|
background-color: $background;
|
|
|
|
|
|
|
|
> input {
|
|
|
|
border: 1px solid $comment;
|
|
|
|
background-color: $selection;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-light,
|
|
|
|
.label-dark {
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
2020-03-01 21:40:01 +00:00
|
|
|
// stylelint-disable-next-line selector-class-pattern
|
2019-04-02 11:19:17 +00:00
|
|
|
.bg- {
|
|
|
|
&none {
|
|
|
|
color: $foreground;
|
|
|
|
border-color: $comment;
|
|
|
|
}
|
|
|
|
|
|
|
|
&red {
|
|
|
|
color: $background;
|
|
|
|
background-color: $red;
|
|
|
|
}
|
|
|
|
|
|
|
|
&orangered {
|
|
|
|
color: $background;
|
|
|
|
background-color: $orange;
|
|
|
|
}
|
|
|
|
|
|
|
|
&orange {
|
|
|
|
color: $background;
|
|
|
|
background-color: $yellow;
|
|
|
|
}
|
|
|
|
|
|
|
|
&dodgerblue {
|
|
|
|
color: $background;
|
|
|
|
background-color: $cyan;
|
|
|
|
}
|
|
|
|
|
|
|
|
&forestgreen {
|
|
|
|
color: $background;
|
|
|
|
background-color: $green;
|
|
|
|
}
|
|
|
|
|
|
|
|
&slategray {
|
|
|
|
color: $background;
|
|
|
|
background-color: $selection;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|