Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/breadcrumbs/breadcrumbsWidget.css
3296 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
.monaco-breadcrumbs {
7
user-select: none;
8
-webkit-user-select: none;
9
display: flex;
10
flex-direction: row;
11
flex-wrap: nowrap;
12
justify-content: flex-start;
13
outline-style: none;
14
}
15
16
.monaco-breadcrumbs .monaco-breadcrumb-item {
17
display: flex;
18
align-items: center;
19
flex: 0 1 auto;
20
white-space: nowrap;
21
cursor: pointer;
22
align-self: center;
23
height: 100%;
24
outline: none;
25
}
26
.monaco-breadcrumbs.disabled .monaco-breadcrumb-item {
27
cursor: default;
28
}
29
30
.monaco-breadcrumbs .monaco-breadcrumb-item .codicon-breadcrumb-separator {
31
color: inherit;
32
}
33
34
.monaco-breadcrumbs .monaco-breadcrumb-item:first-of-type::before {
35
content: ' ';
36
}
37
38