mirror of
https://github.com/apache/superset.git
synced 2026-04-23 01:55:09 +00:00
style: push bootstrap theme towards SIP-34 styles (#10056)
* feat: cartel theme * piling * more tweaks * Make things look better * lint * fix tests * paint it black * tweaks
This commit is contained in:
committed by
GitHub
parent
8e23d4f369
commit
a6390afb89
@@ -42,7 +42,7 @@ const RunQueryActionButton = ({
|
||||
stopQuery = NO_OP,
|
||||
sql,
|
||||
}: Props) => {
|
||||
const runBtnText = selectedText ? t('Run Selected Query') : t('Run Query');
|
||||
const runBtnText = selectedText ? t('Run Selected Query') : t('Run');
|
||||
const btnStyle = selectedText ? 'warning' : 'primary';
|
||||
const shouldShowStopBtn =
|
||||
!!queryState && ['running', 'pending'].indexOf(queryState) > -1;
|
||||
@@ -68,7 +68,7 @@ const RunQueryActionButton = ({
|
||||
tooltip={t('Run query asynchronously (Ctrl + ↵)')}
|
||||
disabled={!sql.trim()}
|
||||
>
|
||||
<i className="fa fa-table" /> {runBtnText}
|
||||
<i className="fa fa-bolt" /> {runBtnText}
|
||||
</Button>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user