51 lines
986 B
SCSS
51 lines
986 B
SCSS
.backlog-menu {
|
|
background: $whitish;
|
|
color: $blackish;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 1rem;
|
|
.trans-button {
|
|
color: $blackish;
|
|
display: inline-block;
|
|
padding: .4rem 1.5rem;
|
|
&.active,
|
|
&:hover {
|
|
background: darken($whitish, 10%);
|
|
color: $grayer;
|
|
}
|
|
&.active {
|
|
&:hover {
|
|
background: lighten($gray, 30%);
|
|
}
|
|
}
|
|
&.move-to-sprint {
|
|
display: none;
|
|
}
|
|
}
|
|
.button-bulk {
|
|
margin-left: .2rem;
|
|
}
|
|
}
|
|
|
|
.backlog-us-mirror {
|
|
background: $white;
|
|
border-radius: 4px;
|
|
box-shadow: 2px 2px 5px $gray;
|
|
min-height: calc(40px + 1rem);
|
|
opacity: .9;
|
|
padding: 1rem;
|
|
.tags-block,
|
|
.votes,
|
|
.us-settings,
|
|
.status,
|
|
.points,
|
|
.icon-drag,
|
|
input {
|
|
display: none;
|
|
}
|
|
&.is-checked,
|
|
&:hover {
|
|
background: $white;
|
|
}
|
|
}
|