From dc76a2688e7421ea6a872adef45eeabfca198465 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Wed, 23 Sep 2020 11:44:39 -0700 Subject: [PATCH] style(explore): use tertiary button against gray background (#11011) "primary" style buttons seem to expect a white background and really look muted against the gray background. Using "tertiary" style button makes things much better. Eventually we may reconsider the layout and gray background and go back to secondary, but for now this makes these important pop much more --- superset-frontend/src/explore/components/QueryAndSaveBtns.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx b/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx index 9eaec3c7e8..d04cf9d8c4 100644 --- a/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx +++ b/superset-frontend/src/explore/components/QueryAndSaveBtns.jsx @@ -73,7 +73,7 @@ export default function QueryAndSaveBtns({ chartIsStale, errorMessage, }) { - let qryButtonStyle = 'secondary'; + let qryButtonStyle = 'tertiary'; if (errorMessage) { qryButtonStyle = 'danger'; } else if (chartIsStale) { @@ -108,7 +108,7 @@ export default function QueryAndSaveBtns({ {qryOrStopButton}