taiga-front/app/styles/modules/wiki/wiki-nav.scss

54 lines
1.2 KiB
SCSS

.wiki-nav {
li {
@extend %large;
@extend %title;
border-bottom: 1px solid $gray-light;
text-transform: uppercase;
&:hover {
.icon {
opacity: 1;
transition: opacity .2s linear;
transition-delay: .2s;
}
}
a {
align-items: center;
display: flex;
justify-content: space-between;
padding: 1rem 0 1rem 1rem;
span {
cursor: pointer;
}
}
.icon {
fill: $gray-light;
opacity: 0;
&:hover {
cursor: pointer;
fill: $red;
}
}
input {
@extend %text;
@extend %medium;
background: $grayer;
color: $whitish;
@include placeholder {
color: $gray-light;
}
}
.loading {
margin: 0;
padding: 8px;
text-align: center;
width: 100%;
}
}
.add-button {
color: $white;
display: block;
margin-bottom: .5rem;
text-align: center;
}
}