mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-27 01:25:36 -05:00
* make message box associated with wizard page * missed one condition check after renaming * fix compilation error
80 lines
1.5 KiB
CSS
80 lines
1.5 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.dialogModal-body {
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
width: 100%;
|
|
min-width: 500px;
|
|
min-height: 600px;
|
|
}
|
|
|
|
.modal.wide .dialogModal-body {
|
|
min-width: 800px;
|
|
}
|
|
|
|
.dialog-message-and-page-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.dialogModal-page-container {
|
|
flex: 1 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.dialogModal-pane {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.dialogModal-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.footer-button.dialogModal-hidden {
|
|
margin: 0;
|
|
}
|
|
|
|
.footer-button .validating {
|
|
background-size: 15px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
.vs .footer-button .validating {
|
|
background-image: url("loading.svg");
|
|
}
|
|
|
|
.vs-dark .footer-button .validating,
|
|
.hc-black .footer-button .validating {
|
|
background-image: url("loading_inverse.svg");
|
|
}
|
|
|
|
.dialogModal-wizardHeader {
|
|
padding: 10px 30px;
|
|
}
|
|
|
|
.dialogModal-wizardHeader h1 {
|
|
margin-top: 10px;
|
|
margin-bottom: 3px;
|
|
font-size: 1.5em;
|
|
font-weight: lighter;
|
|
}
|
|
|
|
.dialogContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|