mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-08 09:38:26 -05:00
* Merge from vscode a5cf1da01d5db3d2557132be8d30f89c38019f6c * remove files we don't want * fix hygiene * update distro * update distro * fix hygiene * fix strict nulls * distro * distro * fix tests * fix tests * add another edit * fix viewlet icon * fix azure dialog * fix some padding * fix more padding issues
54 lines
1.3 KiB
CSS
54 lines
1.3 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.monaco-custom-checkbox {
|
|
margin-left: 2px;
|
|
float: left;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
opacity: 0.7;
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 1px solid transparent;
|
|
padding: 1px;
|
|
box-sizing: border-box;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
}
|
|
|
|
.monaco-custom-checkbox:hover,
|
|
.monaco-custom-checkbox.checked {
|
|
opacity: 1;
|
|
}
|
|
|
|
.hc-black .monaco-custom-checkbox {
|
|
background: none;
|
|
}
|
|
|
|
.hc-black .monaco-custom-checkbox:hover {
|
|
background: none;
|
|
}
|
|
|
|
.monaco-custom-checkbox.monaco-simple-checkbox {
|
|
height: 18px;
|
|
width: 18px;
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
margin-right: 9px;
|
|
margin-left: 0px;
|
|
padding: 0px;
|
|
opacity: 1;
|
|
background-size: 16px !important;
|
|
}
|
|
|
|
.monaco-custom-checkbox.monaco-simple-checkbox.checked {
|
|
background: url('check-light.svg') center center no-repeat;
|
|
}
|
|
|
|
.monaco-custom-checkbox.monaco-simple-checkbox.checked {
|
|
background: url('check-dark.svg') center center no-repeat;
|
|
}
|