forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.css
More file actions
30 lines (25 loc) · 861 Bytes
/
button.css
File metadata and controls
30 lines (25 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.monaco-text-button {
-moz-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
width: 100%;
padding: 4px;
text-align: center;
cursor: pointer;
}
.monaco-text-button:hover {
text-decoration: none !important;
}
.monaco-button.disabled {
opacity: 0.4;
cursor: default;
}
/* Theming support */
.vs .monaco-text-button:focus,
.vs-dark .monaco-text-button:focus {
outline-color: rgba(255, 255, 255, .5); /* buttons have a blue color, so focus indication needs to be different */
}