mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 10:00:51 +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;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.monaco-breadcrumbs .monaco-breadcrumb-item:not(:first-child)::before {
|
.monaco-breadcrumbs .monaco-breadcrumb-item::before {
|
||||||
background-image: url(./collapsed.svg);
|
width: 14px;
|
||||||
opacity: .7;
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
height: 16px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-size: 16px;
|
|
||||||
background-position: 50% 50%;
|
|
||||||
content: ' ';
|
content: ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
.vs-dark .monaco-breadcrumbs .monaco-breadcrumb-item:not(:first-child)::before {
|
.monaco-breadcrumbs .monaco-breadcrumb-item:not(:nth-child(2))::before {
|
||||||
background-image: url(./collpased-dark.svg);
|
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