mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
* add default limit 1000 * Add frontend changes and connect to backend * Fix query hash because of default limit * fix CircleCI test * adjust for comment
35 lines
702 B
Plaintext
35 lines
702 B
Plaintext
.query-editor-controls {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: stretch;
|
|
justify-content: stretch;
|
|
|
|
// Styles for a wrapper that `Tooltip` adds for disabled `Button`s
|
|
span.query-editor-controls-button {
|
|
display: flex !important;
|
|
align-items: stretch;
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.ant-btn {
|
|
height: auto;
|
|
|
|
.fa + span,
|
|
.zmdi + span {
|
|
// if button has icon and label - add some space between them
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
|
|
.query-editor-controls-checkbox {
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
margin: auto 5px;
|
|
}
|
|
|
|
.query-editor-controls-spacer {
|
|
flex: 1 1 auto;
|
|
height: 35px; // same as Antd <Select>
|
|
}
|
|
}
|