Skip to content

Commit

Permalink
Merge pull request #620 from Shrinks99/master
Browse files Browse the repository at this point in the history
SASS Variable Colour Enforcement
  • Loading branch information
Jeronimo95 committed Apr 28, 2018
2 parents 2ab8667 + 0b03f3f commit 70aa3c7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion grails-app/assets/stylesheets/_admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

&:hover a,
&.active a{
background: darken($primary, 40%);
background: $secondary;
color: white;
}

Expand Down
2 changes: 1 addition & 1 deletion grails-app/assets/stylesheets/_btn.scss
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
bottom: -2px;
z-index: 9;
background-color: rgb(67, 158, 193);
border: 2px dashed #b0ddef;
border: 2px dashed $primary;
text-align: center;
font-weight: 500;
line-height: 56px;
Expand Down
2 changes: 1 addition & 1 deletion grails-app/assets/stylesheets/_media-display.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
width: 1.8em;
line-height: 1.8em;
text-align: center;
color: #b0ddef;
color: $primary;
font-size: 33px;
margin: -.9em;
border-radius: 100%;
Expand Down
2 changes: 1 addition & 1 deletion grails-app/assets/stylesheets/_misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
background-color: darken($primary, 40%);

&:hover{
background-color: darken($primary, 45%);
background-color: $secondary;
}
}

Expand Down
4 changes: 2 additions & 2 deletions grails-app/assets/stylesheets/_player-controls.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

}
&.current{
background: darken($primary, 45%);
background: $secondary;
.episode-play{
display: none;
}
Expand Down Expand Up @@ -476,7 +476,7 @@
}

&.current{
background: darken($primary, 45%);
background: $secondary;
.episode-play{
display: none;
}
Expand Down
2 changes: 1 addition & 1 deletion grails-app/assets/stylesheets/_util.scss
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ a{
width: 1.8em;
line-height: 1.8em;
text-align: center;
color: #b0ddef;
color: $primary;
font-size: 33px;
border-radius: 100%;
border: 1px solid white;
Expand Down

0 comments on commit 70aa3c7

Please sign in to comment.