Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/browser/ui/icons/iconSelectBox.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
.icon-select-box > .icon-select-box-container {
7
height: 100%;
8
}
9
10
.icon-select-box .icon-select-icons-container {
11
height: 100%;
12
outline: 0 !important;
13
}
14
15
.icon-select-box .icon-select-icons-container > .icon-container {
16
display: inline-flex;
17
cursor: pointer;
18
font-size: 20px;
19
align-items: center;
20
justify-content: center;
21
border-radius: 5px;
22
}
23
24
.icon-select-box .icon-select-icons-container > .icon-container.focused {
25
background-color: var(--vscode-quickInputList-focusBackground);
26
color: var(--vscode-quickInputList-focusForeground);
27
}
28
29
.icon-select-box .icon-select-icons-container > .icon-container:hover:not(.focused) {
30
background-color: var(--vscode-toolbar-hoverBackground);
31
color: var(--vscode-list-hoverForeground)
32
}
33
34
.icon-select-box .icon-select-id-container .icon-select-id-label {
35
height: 24px;
36
padding: 10px;
37
opacity: .8;
38
}
39
40
.icon-select-box .icon-select-id-container .icon-select-id-label .highlight {
41
color: var(--vscode-list-highlightForeground);
42
font-weight: bold;
43
}
44
45