@21epub/epub-thirdparty
Version:
epub-thirdparty
56 lines (45 loc) • 1.2 kB
CSS
/*---------------------------------------------------------------------------------------------
* 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 {
box-sizing: border-box;
display: flex;
width: 100%;
padding: 4px;
text-align: center;
cursor: pointer;
justify-content: center;
align-items: center;
}
.monaco-text-button:focus {
outline-offset: 2px ;
}
.monaco-text-button:hover {
text-decoration: none ;
}
.monaco-button.disabled:focus,
.monaco-button.disabled {
opacity: 0.4 ;
cursor: default;
}
.monaco-text-button > .codicon {
margin: 0 0.2em;
color: inherit ;
}
.monaco-button-dropdown {
display: flex;
cursor: pointer;
}
.monaco-button-dropdown > .monaco-dropdown-button {
margin-left: 1px;
}
.monaco-description-button {
flex-direction: column;
}
.monaco-description-button .monaco-button-label {
font-weight: 500;
}
.monaco-description-button .monaco-button-description {
font-style: italic;
}