Extend hover styling for entire sticky line (#236410)

extend hover styling for entire sticky line
pull/236444/head
Michael Lively 2024-12-17 12:39:39 -08:00 committed by GitHub
parent 20dc4d7d26
commit 999f28e49f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 7 deletions

View File

@ -38,10 +38,8 @@
.monaco-workbench
.notebookOverlay
.notebook-sticky-scroll-container
.notebook-sticky-scroll-element
.notebook-sticky-scroll-header:hover {
.notebook-sticky-scroll-element:hover {
background-color: var(--vscode-editorStickyScrollHover-background);
width: 100%;
cursor: pointer;
}
@ -55,13 +53,11 @@
.monaco-workbench.hc-light
.notebookOverlay
.notebook-sticky-scroll-container
.notebook-sticky-scroll-element
.notebook-sticky-scroll-header:hover,
.notebook-sticky-scroll-element:hover,
.monaco-workbench.hc-black
.notebookOverlay
.notebook-sticky-scroll-container
.notebook-sticky-scroll-element
.notebook-sticky-scroll-header:hover {
.notebook-sticky-scroll-element:hover {
outline: 1px dashed var(--vscode-contrastActiveBorder);
outline-offset: -2px;
}