Files
redash/client/app/visualizations/chart/Editor/editor.less
2020-04-25 15:51:21 -03:00

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;
}
}
}
}
}