mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 01:00:14 -04:00
31 lines
660 B
Plaintext
31 lines
660 B
Plaintext
.drag-handle {
|
|
vertical-align: bottom;
|
|
cursor: move;
|
|
|
|
display: inline-flex;
|
|
align-items: stretch;
|
|
justify-content: center;
|
|
|
|
&:before {
|
|
content: '';
|
|
display: block;
|
|
width: 6px;
|
|
|
|
background:
|
|
linear-gradient(90deg, transparent 0px, white 1px, white 2px) center,
|
|
linear-gradient(transparent 0px, white 1px, white 2px) center,
|
|
#111111;
|
|
background-size: 2px 2px;
|
|
}
|
|
}
|
|
|
|
.sortable-container {
|
|
transition: background-color 200ms ease-out;
|
|
transition-delay: 300ms; // short pause before returning to original bgcolor
|
|
|
|
&.sortable-container-dragging {
|
|
transition-delay: 0s;
|
|
background-color: #f6f8f9;
|
|
}
|
|
}
|