Path: blob/main/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.css
4779 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.floating-menu-overlay-widget {6padding: 0px;7color: var(--vscode-button-foreground);8background-color: var(--vscode-button-background);9border-radius: 2px;10border: 1px solid var(--vscode-contrastBorder);11display: flex;12align-items: center;13z-index: 10;14box-shadow: 0 2px 8px var(--vscode-widget-shadow);15overflow: hidden;1617.action-item > .action-label {18padding: 5px;19font-size: 12px;20border-radius: 2px;21}2223.action-item > .action-label.codicon, .action-item .codicon {24color: var(--vscode-button-foreground);25}2627.action-item > .action-label.codicon:not(.separator) {28padding-top: 6px;29padding-bottom: 6px;30}3132.action-item:first-child > .action-label {33padding-left: 7px;34}3536.action-item:last-child > .action-label {37padding-right: 7px;38}3940.action-item .action-label.separator {41background-color: var(--vscode-button-separator);42}43}444546