mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-26 09:35:38 -05:00
* Adding light contrast theme
* fixing oe icons
* Fixing more files
* Converting ep files to support hc light
* Revert "Copy Headers for Selected Columns (#21622)"
This reverts commit f74d6f6d9b.
* Adding more css rules
* Fixing modal
* Fixing azure icons
88 lines
1.9 KiB
CSS
88 lines
1.9 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.modal.callout-dialog {
|
|
background-color: transparent;
|
|
}
|
|
.modal.callout-dialog .modal-dialog {
|
|
border-radius: 2px;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
max-height: 300px;
|
|
position: absolute;
|
|
}
|
|
|
|
.modal.callout-dialog .modal-content p {
|
|
margin: 0;
|
|
}
|
|
.modal.callout-dialog .modal-content .button-icon {
|
|
cursor: pointer;
|
|
margin-left: 10px;
|
|
}
|
|
.modal.callout-dialog .modal-content .row {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.hc-light .modal.callout-dialog .modal-dialog,
|
|
.hc-black .modal.callout-dialog .modal-dialog {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.callout-arrow:before {
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
content: '';
|
|
display: block;
|
|
height: 10px;
|
|
position: absolute;
|
|
width: 10px;
|
|
}
|
|
.callout-arrow.from-below:before {
|
|
left: 24px;
|
|
top: -6px;
|
|
transform: rotate(135deg);
|
|
}
|
|
.callout-arrow.from-above:before {
|
|
bottom: -6px;
|
|
left: 24px;
|
|
transform: rotate(-45deg);
|
|
}
|
|
.callout-arrow.from-left:before {
|
|
height: 26px;
|
|
right: -14px;
|
|
top: 26px;
|
|
transform: rotate(-135deg);
|
|
width: 26px;
|
|
}
|
|
|
|
.hc-light .callout-arrow:before,
|
|
.hc-black .callout-arrow:before {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.hc-light .callout-arrow.from-left:before,
|
|
.hc-black .callout-arrow.from-left:before {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.modal.callout-dialog .modal-header {
|
|
padding: 18px 24px 8px 24px;
|
|
}
|
|
|
|
.modal.callout-dialog .modal-footer {
|
|
padding: 15px 24px 15px 24px;
|
|
}
|
|
|
|
.modal.callout-dialog .modal-body {
|
|
padding: 8px 24px;
|
|
}
|
|
|
|
.modal.callout-dialog.compact .modal-header {
|
|
padding: 16px 24px 4px 24px;
|
|
}
|
|
.modal.callout-dialog.compact .modal-body {
|
|
padding: 4px 24px 16px 24px;
|
|
}
|