Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
user-select: none;
}

/* Invisible hit strip along the shell's top edge; the ns-resize cursor is the
pointer affordance. The indicator line only appears on keyboard focus. */
.resizeHandle {
position: absolute;
top: -5px;
Expand All @@ -68,18 +70,16 @@
-webkit-app-region: no-drag;
}

/* Thin full-width line that lights up on hover, keyboard focus, and while dragging. */
.resizeHandleIndicator {
width: 100%;
height: 2px;
border-radius: 999px;
background-color: var(--wpds-color-stroke-interactive-brand, #2563eb);
opacity: 0;
transition: opacity 120ms ease;
}

.resizeHandle:hover .resizeHandleIndicator,
.resizeHandle:focus-visible .resizeHandleIndicator,
.shellResizing .resizeHandleIndicator {
.resizeHandle:focus-visible .resizeHandleIndicator {
opacity: 1;
}

Expand Down
Loading