mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 07:52:49 +00:00
fix #56362
This commit is contained in:
parent
699d778579
commit
de6116b3ea
1 changed files with 10 additions and 8 deletions
|
@ -23,18 +23,20 @@
|
|||
outline: none;
|
||||
}
|
||||
|
||||
.monaco-breadcrumbs .monaco-breadcrumb-item:not(:first-child)::before {
|
||||
background-image: url(./collapsed.svg);
|
||||
opacity: .7;
|
||||
width: 16px;
|
||||
.monaco-breadcrumbs .monaco-breadcrumb-item::before {
|
||||
width: 14px;
|
||||
height: 16px;
|
||||
display: inline-block;
|
||||
background-size: 16px;
|
||||
background-position: 50% 50%;
|
||||
content: ' ';
|
||||
}
|
||||
|
||||
.vs-dark .monaco-breadcrumbs .monaco-breadcrumb-item:not(:first-child)::before {
|
||||
background-image: url(./collpased-dark.svg);
|
||||
.monaco-breadcrumbs .monaco-breadcrumb-item:not(:nth-child(2))::before {
|
||||
background-image: url(./collapsed.svg);
|
||||
opacity: .7;
|
||||
background-size: 16px;
|
||||
background-position: 50% 50%;
|
||||
}
|
||||
|
||||
.vs-dark .monaco-breadcrumbs .monaco-breadcrumb-item:not(:nth-child(2))::before {
|
||||
background-image: url(./collpased-dark.svg);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue