Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-2105: Sync button hover states in the hub #607

Merged
merged 4 commits into from Sep 25, 2020
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Use color variable in hub

  • Loading branch information
benstrumeyer committed Sep 22, 2020
commit 25e9a230c189cb8595e17bd7e5b006e2f51feef0
@@ -11,6 +11,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0
*/

// Import Global Partials
@import './partials/colors';

html, body, #root {
height: 100%;
width: 100%;
@@ -43,11 +46,11 @@ html, body, #root {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12);
&.primary {
&:not(.hollow):hover {
background-color: #0078CA;
background-color: $dark-ghosty-blue;
}
&.hollow:hover, &.hollow:focus {
border-color: #0078CA;
color: #0078CA;
border-color: $dark-ghosty-blue;
color: $dark-ghosty-blue;
}
}
}
@@ -41,6 +41,7 @@ $link-blue: #2092BF; //primary-color
$button-primary: #3AA2CF;
$dark-cyan-blue: #325e97; //insights modal border
$baby-blue: #DAF4FF; //plus-upgrade icon
$dark-ghosty-blue: #0078CA; //button primary hover color in the hub

/* GREENS */
$spring-green: #6aa103;
ProTip! Use n and p to navigate between commits in a pull request.