diff --git a/app/hub/Views/HomeView/HomeView.scss b/app/hub/Views/HomeView/HomeView.scss index fd556f407..1e0d4a1fc 100644 --- a/app/hub/Views/HomeView/HomeView.scss +++ b/app/hub/Views/HomeView/HomeView.scss @@ -16,15 +16,6 @@ padding-top: 45px; padding-bottom: 25px; color: $tundora; - .button { - &:not(.hollow):hover { - background-color: #0078CA; - } - &.hollow:hover { - color: #0078CA; - border-color: #0078CA; - } - } } .HomeView--bolded { font-weight: 700; diff --git a/app/hub/Views/UpgradePlanView/UpgradePlanView.jsx b/app/hub/Views/UpgradePlanView/UpgradePlanView.jsx index 3a3608965..0a226c0c9 100644 --- a/app/hub/Views/UpgradePlanView/UpgradePlanView.jsx +++ b/app/hub/Views/UpgradePlanView/UpgradePlanView.jsx @@ -89,7 +89,7 @@ const basicCard = () => (

{t('hub_upgrade_plan_free')}

- + {t('hub_upgrade_already_protected')}

{t('hub_upgrade_basic_protection')}

@@ -405,7 +405,7 @@ const UpgradePlanView = (props) => { - + {t('hub_upgrade_already_protected')} @@ -487,7 +487,7 @@ const UpgradePlanView = (props) => {
- + {t('hub_upgrade_already_protected')} diff --git a/app/hub/Views/UpgradePlanView/UpgradePlanView.scss b/app/hub/Views/UpgradePlanView/UpgradePlanView.scss index 58d6fda86..0d75ecd9e 100644 --- a/app/hub/Views/UpgradePlanView/UpgradePlanView.scss +++ b/app/hub/Views/UpgradePlanView/UpgradePlanView.scss @@ -550,11 +550,8 @@ section.home-template .section.section-pricing { text-transform: none; white-space: nowrap; font-family: 'Open Sans'; - background-color: $price-blue; font-weight: 600; - &:hover { - background-color: $price-blue-hover; - } + background-color: $price-blue; } .button-gold { diff --git a/app/scss/hub.scss b/app/scss/hub.scss index 3cd030117..b25b44a08 100644 --- a/app/scss/hub.scss +++ b/app/scss/hub.scss @@ -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%; @@ -41,6 +44,15 @@ html, body, #root { line-height: 1.3; text-transform: uppercase; 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: $dark-ghosty-blue; + } + &.hollow:hover, &.hollow:focus { + border-color: $dark-ghosty-blue; + color: $dark-ghosty-blue; + } + } } // Helper Classes diff --git a/app/scss/partials/_colors.scss b/app/scss/partials/_colors.scss index c9152e37d..cd15e484b 100644 --- a/app/scss/partials/_colors.scss +++ b/app/scss/partials/_colors.scss @@ -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;