Path: blob/main/src/vs/base/browser/ui/breadcrumbs/breadcrumbsWidget.css
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45.monaco-breadcrumbs {6user-select: none;7-webkit-user-select: none;8display: flex;9flex-direction: row;10flex-wrap: nowrap;11justify-content: flex-start;12outline-style: none;13}1415.monaco-breadcrumbs .monaco-breadcrumb-item {16display: flex;17align-items: center;18flex: 0 1 auto;19white-space: nowrap;20cursor: pointer;21align-self: center;22height: 100%;23outline: none;24}25.monaco-breadcrumbs.disabled .monaco-breadcrumb-item {26cursor: default;27}2829.monaco-breadcrumbs .monaco-breadcrumb-item .codicon-breadcrumb-separator {30color: inherit;31}3233.monaco-breadcrumbs .monaco-breadcrumb-item:first-of-type::before {34content: ' ';35}363738