Skip to content

Commit

Permalink
closes #134
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Martin committed Aug 21, 2016
1 parent 670a846 commit f5250f3
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
4 changes: 3 additions & 1 deletion src/client/common/container.scss
Expand Up @@ -23,14 +23,16 @@
}

.show-hide {
cursor: pointer;
color: $off-white;
font-size: 1.2rem;
display: inline;
border: none;
background: none;
margin-right: 0.5em;

&:hover {
&:hover,
&:focus {
color: darken($off-white, 10%);
}
}
Expand Down
17 changes: 4 additions & 13 deletions src/client/common/inputs.scss
Expand Up @@ -34,22 +34,16 @@
text-decoration: none;
background-color: white;
color: $off-black;
outline: none;

&:enabled {
cursor: pointer;
transition: background-color 0.1s ease-in, box-shadow 0.1s ease-in;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);

&:hover {
background-color: darken(white, 5%);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.26);
}

&:hover,
&:focus {
background-color: darken(white, 5%);
background-color: darken(white, 8%);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.26);
outline: none;
border-radius: 0;
}
}
Expand All @@ -69,12 +63,9 @@
color: $off-white;

&:enabled {
&:hover {
background-color: darken($blue, 5%);
}

&:hover,
&:focus {
background-color: darken($blue, 5%);
background-color: darken($blue, 8%);
}
}
}
15 changes: 14 additions & 1 deletion src/client/nevergreen.scss
Expand Up @@ -106,8 +106,21 @@ kbd {
}
}

&:focus {
&:focus,
&:hover {
outline: none;

&::after {
border-color: darken($off-white, 8%);
background: darken(#fff, 8%);
}

&:checked {
&::after {
border-color: darken($blue, 8%);
background: darken($blue, 8%);
}
}
}
}

Expand Down
1 change: 1 addition & 0 deletions src/client/tracking/tray/available-projects.scss
Expand Up @@ -28,6 +28,7 @@

.build-items {
clear: both;
list-style: none;
}

.project-filter {
Expand Down

0 comments on commit f5250f3

Please sign in to comment.