| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /*---------------------------------------------------------------------------------------------
- * 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 !important;
- }
- .monaco-text-button:hover {
- text-decoration: none !important;
- }
- .monaco-button.disabled:focus,
- .monaco-button.disabled {
- opacity: 0.4 !important;
- cursor: default;
- }
- .monaco-text-button > .codicon {
- margin: 0 0.2em;
- color: inherit !important;
- }
- .monaco-button-dropdown {
- display: flex;
- cursor: pointer;
- }
- .monaco-button-dropdown.disabled {
- cursor: default;
- }
- .monaco-button-dropdown > .monaco-button:focus {
- outline-offset: -1px !important;
- }
- .monaco-button-dropdown.disabled > .monaco-button.disabled,
- .monaco-button-dropdown.disabled > .monaco-button.disabled:focus,
- .monaco-button-dropdown.disabled > .monaco-button-dropdown-separator {
- opacity: 0.4 !important;
- }
- .monaco-button-dropdown > .monaco-button.monaco-text-button {
- border-right-width: 0 !important;
- }
- .monaco-button-dropdown .monaco-button-dropdown-separator {
- padding: 4px 0;
- cursor: default;
- }
- .monaco-button-dropdown .monaco-button-dropdown-separator > div {
- height: 100%;
- width: 1px;
- }
- .monaco-button-dropdown > .monaco-button.monaco-dropdown-button {
- border-left-width: 0 !important;
- }
- .monaco-description-button {
- flex-direction: column;
- }
- .monaco-description-button .monaco-button-label {
- font-weight: 500;
- }
- .monaco-description-button .monaco-button-description {
- font-style: italic;
- }
- .monaco-description-button .monaco-button-label,
- .monaco-description-button .monaco-button-description
- {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .monaco-description-button .monaco-button-label > .codicon,
- .monaco-description-button .monaco-button-description > .codicon
- {
- margin: 0 0.2em;
- color: inherit !important;
- }
|