mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 22:02:55 +01:00
10 lines
520 B
CSS
10 lines
520 B
CSS
/* Make horizontal scrollbar, decorations overview ruler and vertical scrollbar arrows opaque */
|
|
.monaco-editor .monaco-scrollable-element .scrollbar.horizontal,
|
|
.monaco-editor .decorationsOverviewRuler,
|
|
.monaco-editor .monaco-scrollable-element .scrollbar.vertical .arrow-background {
|
|
background: rgba(230, 230, 230, 255);
|
|
}
|
|
/* Make vertical scrollbar transparent to allow decorations overview ruler to be visible */
|
|
.monaco-editor .monaco-scrollable-element .scrollbar.vertical {
|
|
background: rgba(0, 0, 0, 0);
|
|
}
|