Skip to content

Commit

Permalink
style(explore): use tertiary button against gray background (apache#1…
Browse files Browse the repository at this point in the history
…1011)

"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
  • Loading branch information
mistercrunch authored and auxten committed Nov 20, 2020
1 parent 722c44d commit b4b88dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset-frontend/src/explore/components/QueryAndSaveBtns.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function QueryAndSaveBtns({
chartIsStale,
errorMessage,
}) {
let qryButtonStyle = 'secondary';
let qryButtonStyle = 'tertiary';
if (errorMessage) {
qryButtonStyle = 'danger';
} else if (chartIsStale) {
Expand Down Expand Up @@ -108,7 +108,7 @@ export default function QueryAndSaveBtns({
<ButtonGroup className="query-and-save">
{qryOrStopButton}
<Button
buttonStyle="secondary"
buttonStyle="tertiary"
buttonSize="small"
data-target="#save_modal"
data-toggle="modal"
Expand Down

0 comments on commit b4b88dc

Please sign in to comment.