mirror of
https://github.com/getredash/redash.git
synced 2026-03-23 04:00:09 -04:00
* Migrate table editor to React: skeleton, Grid tab * Columns tab * Cleanup * Columns tab: DnD column sorting * Columns types should be JSX * New Columns tab UI/X * Use Sortable component on Columns tab * Tests: Grid Settings * Tests: Columns Settings * Tests: Editors for Text, Number, Boolean and Date/Time columns * Tests: Editors for Image and Link columns * Minor UI fix * Trigger build * Debounce inputs
38 lines
651 B
Plaintext
38 lines
651 B
Plaintext
.table-visualization-editor-columns {
|
|
.ant-collapse {
|
|
background: transparent;
|
|
}
|
|
|
|
.ant-collapse-item {
|
|
background: #ffffff;
|
|
|
|
.drag-handle {
|
|
height: 20px;
|
|
margin-left: -16px;
|
|
padding: 0 16px;
|
|
}
|
|
}
|
|
|
|
.table-editor-columns-dragged-item {
|
|
z-index: 1;
|
|
}
|
|
}
|
|
|
|
.table-visualization-editor-column {
|
|
padding-left: 6px;
|
|
|
|
.table-visualization-editor-column-align-content {
|
|
display: flex;
|
|
align-items: stretch;
|
|
justify-content: stretch;
|
|
|
|
.ant-radio-button-wrapper {
|
|
flex-grow: 1;
|
|
text-align: center;
|
|
// fit <Input> height
|
|
height: 35px;
|
|
line-height: 33px;
|
|
}
|
|
}
|
|
}
|