From e0b6f881f0a26512d5f60cf3d671cf335dccfb78 Mon Sep 17 00:00:00 2001 From: Andrew Nicolaou Date: Mon, 25 Nov 2019 14:17:16 +0100 Subject: [PATCH] Use secondary button style for now --- client/styles/abstracts/_placeholders.scss | 27 ---------------------- client/styles/components/_collection.scss | 2 +- 2 files changed, 1 insertion(+), 28 deletions(-) diff --git a/client/styles/abstracts/_placeholders.scss b/client/styles/abstracts/_placeholders.scss index 67f4c208..23b03f0e 100644 --- a/client/styles/abstracts/_placeholders.scss +++ b/client/styles/abstracts/_placeholders.scss @@ -102,33 +102,6 @@ } } -%primary-button { - @include themify() { - background-color: getThemifyVariable('primary-button-background-color'); - color: getThemifyVariable('primary-button-color'); - cursor: pointer; - border: 2px solid getThemifyVariable('primary-button-border-color'); - border-radius: 2px; - padding: #{10 / $base-font-size}rem #{30 / $base-font-size}rem; - &:enabled:hover { - border-color: getThemifyVariable('primary-button-background-hover-color'); - background-color: getThemifyVariable('primary-button-background-hover-color'); - color: getThemifyVariable('primary-button-hover-color'); - & g { - fill: getThemifyVariable('primary-button-hover-color'); - } - } - &:enabled:active { - border-color: getThemifyVariable('primary-button-background-active-color'); - background-color: getThemifyVariable('primary-button-background-active-color'); - color: getThemifyVariable('primary-button-active-color'); - & g { - fill: getThemifyVariable('primary-button-active-color'); - } - } - } -} - %preferences-button { @extend %toolbar-button; @include themify() { diff --git a/client/styles/components/_collection.scss b/client/styles/components/_collection.scss index d3f0210c..9c5e5f95 100644 --- a/client/styles/components/_collection.scss +++ b/client/styles/components/_collection.scss @@ -100,7 +100,7 @@ } .collection-metadata__add-button { - @extend %primary-button; + @extend %button; flex-grow: 0; }