Minor UX css styles

stable
Xavier Julián 2014-07-03 14:36:37 +02:00
parent 0fea60f2e7
commit 10432f18c9
2 changed files with 8 additions and 1 deletions

View File

@ -24,7 +24,7 @@
right: 1rem; right: 1rem;
top: 1rem; top: 1rem;
&:hover { &:hover {
color: $green-taiga; color: $red;
} }
} }
} }

View File

@ -199,12 +199,18 @@
.issue-data { .issue-data {
div { div {
@include clearfix(); @include clearfix();
@include transition(background .2s ease-in);
background: darken($whitish, 5%); background: darken($whitish, 5%);
cursor: pointer;
margin-bottom: 1rem; margin-bottom: 1rem;
padding: .5rem; padding: .5rem;
&:last-child { &:last-child {
margin: 0; margin: 0;
} }
&:hover {
@include transition(background .2s ease-in);
background: darken($whitish, 10%);
}
} }
.level { .level {
display: inline-block; display: inline-block;
@ -280,6 +286,7 @@
} }
} }
label { label {
cursor: pointer;
&+input { &+input {
display: none; display: none;
} }