mirror of
https://github.com/getredash/redash.git
synced 2026-05-11 00:00:57 -04:00
44 lines
960 B
Plaintext
44 lines
960 B
Plaintext
.chart-editor-series {
|
|
.series-settings-order {
|
|
display: flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.series-settings-y-axis {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.drag-handle {
|
|
height: 28px;
|
|
padding: 0 5px;
|
|
margin-left: -5px;
|
|
}
|
|
|
|
&.sortable-container {
|
|
table {
|
|
background: transparent;
|
|
}
|
|
|
|
thead th {
|
|
// TODO: replace with @table-header-bg
|
|
// Cannot do it not because of conflict between Antd and Bootstrap variables
|
|
background: mix(#ffffff, rgb(102, 136, 153), 97%) !important;
|
|
}
|
|
|
|
&.sortable-container-dragging tbody {
|
|
td {
|
|
background: transparent !important;
|
|
}
|
|
|
|
.chart-editor-series-dragged-item {
|
|
td {
|
|
// TODO: replace with @table-row-hover-bg
|
|
// Cannot do it not because of conflict between Antd and Bootstrap variables
|
|
background: mix(#ffffff, rgb(102, 136, 153), 95%) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|