mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: improved colors and drag handle width
This commit is contained in:
parent
73c91654eb
commit
768d141729
@ -2,7 +2,7 @@
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transition: opacity ease-in 0.2s;
|
transition: opacity ease-in 0.2s;
|
||||||
height: 18px;
|
height: 20px;
|
||||||
width: 15px;
|
width: 15px;
|
||||||
display: grid;
|
display: grid;
|
||||||
place-items: center;
|
place-items: center;
|
||||||
@ -12,9 +12,24 @@
|
|||||||
background-color: rgb(var(--color-background-90));
|
background-color: rgb(var(--color-background-90));
|
||||||
}
|
}
|
||||||
|
|
||||||
.drag-handle:hover {
|
.ProseMirror:not(.dragging) .ProseMirror-selectednode {
|
||||||
background-color: rgb(var(--color-background-80));
|
outline: none !important;
|
||||||
|
cursor: grab;
|
||||||
|
background-color: #1f2937;
|
||||||
transition: background-color 0.2s;
|
transition: background-color 0.2s;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drag-handle:hover {
|
||||||
|
background-color: #4d4d4d;
|
||||||
|
cursor: grab;
|
||||||
|
transition: background-color 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drag-handle:active {
|
||||||
|
background-color: #4d4d4d;
|
||||||
|
transition: background-color 0.2s;
|
||||||
|
cursor: grabbing;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drag-handle.hidden {
|
.drag-handle.hidden {
|
||||||
|
Loading…
Reference in New Issue
Block a user