Skip to content

Commit

Permalink
Merge branch 'develop' into release/1.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sherfin94 committed Jun 17, 2022
2 parents 7a8ec89 + 50cf1f5 commit b25e2ad
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/Editor/QueryManager/QueryManager.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -494,15 +494,15 @@ let QueryManager = class QueryManager extends React.Component {
className={`btn btn-primary ${isUpdating || isCreating ? 'btn-loading' : ''} ${
this.state.selectedDataSource ? '' : 'disabled'
}`}
style={{ width: '100px', height: '28px' }}
style={{ height: '28px', zIndex: 10 }}
onClick={this.createOrUpdateDataQuery}
disabled={buttonDisabled}
>
{this.state.buttonText}
</Button>
<Dropdown.Toggle
split
className="btn btn-primary d-none d-lg-inline"
className="btn btn-primary d-none d-lg-inline create-save-button-dropdown-toggle"
style={{ height: '28px', paddingTop: '5px' }}
/>
<Dropdown.Menu className="import-lg-position">
Expand Down
8 changes: 8 additions & 0 deletions frontend/src/_styles/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,14 @@ button {
border: solid rgba(0, 0, 0, 0.125);
border-width: 1px 0px 0px 0px;

.create-save-button-dropdown-toggle {
background-color: #4a6ce8;
}

.create-save-button-dropdown-toggle:hover {
background-color: #4066f0;
}

.table-responsive {
scrollbar-width: none;
}
Expand Down

0 comments on commit b25e2ad

Please sign in to comment.