mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 09:35:37 -05:00
* Fix loading and clickable div screen reader issues * Change back to default clickable to false
35 lines
917 B
CSS
35 lines
917 B
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.modelview-loadingComponent-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.modelview-loadingComponent-status-text {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.vs .modelview-loadingComponent-spinner {
|
|
content: url("loading.svg");
|
|
}
|
|
|
|
.vs-dark .modelview-loadingComponent-spinner,
|
|
.hc-black .modelview-loadingComponent-spinner {
|
|
content: url("loading_inverse.svg");
|
|
}
|
|
|
|
.modelview-loadingComponent-spinner {
|
|
height: 20px;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.modelview-loadingComponent-content-loading {
|
|
display: none;
|
|
}
|