Path: blob/main/src/vs/base/browser/ui/icons/iconSelectBox.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.icon-select-box > .icon-select-box-container {6height: 100%;7}89.icon-select-box .icon-select-icons-container {10height: 100%;11outline: 0 !important;12}1314.icon-select-box .icon-select-icons-container > .icon-container {15display: inline-flex;16cursor: pointer;17font-size: 20px;18align-items: center;19justify-content: center;20border-radius: 5px;21}2223.icon-select-box .icon-select-icons-container > .icon-container.focused {24background-color: var(--vscode-quickInputList-focusBackground);25color: var(--vscode-quickInputList-focusForeground);26}2728.icon-select-box .icon-select-icons-container > .icon-container:hover:not(.focused) {29background-color: var(--vscode-toolbar-hoverBackground);30color: var(--vscode-list-hoverForeground)31}3233.icon-select-box .icon-select-id-container .icon-select-id-label {34height: 24px;35padding: 10px;36opacity: .8;37}3839.icon-select-box .icon-select-id-container .icon-select-id-label .highlight {40color: var(--vscode-list-highlightForeground);41font-weight: bold;42}434445