Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/electron-browser/media/window.css
3294 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-workbench .zoom-status {
7
display: flex;
8
}
9
10
.monaco-workbench .zoom-status .monaco-action-bar .action-label.codicon::before {
11
/*
12
* the hover sets font-size: inherit which makes actions
13
* have a size of 13px. but codicons have a size of 16px
14
* so we want to ensure the icon is still centered
15
*/
16
margin: auto;
17
}
18
19
.monaco-workbench .zoom-status > .zoom-status-left {
20
display: flex;
21
}
22
23
.monaco-workbench .zoom-status > .zoom-status-left .monaco-action-bar .action-label.disabled,
24
.monaco-workbench .zoom-status > .zoom-status-left .monaco-action-bar .action-label.disabled:hover {
25
/*
26
* we use a disabled action as label for the zoom level
27
* so we override the style to not show it disabled
28
*/
29
opacity: 1;
30
color: unset;
31
}
32
33
.monaco-workbench .zoom-status > .zoom-status-right {
34
display: flex;
35
margin-left: 10px;
36
}
37
38
.monaco-workbench .zoom-status > .zoom-status-right .monaco-action-bar .action-label {
39
color: unset;
40
}
41
42