mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 09:35:38 -05:00
* add error tab when the tab cannot be loaded * formatting * changing the look for error message per Smitha request
24 lines
644 B
CSS
24 lines
644 B
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
dashboard-error-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
dashboard-error-container .error-container {
|
|
padding: 6px;
|
|
background: #D02E00;
|
|
color: white;
|
|
}
|
|
|
|
dashboard-error-container .error-container .icon.globalError {
|
|
height: 16px;
|
|
width: 16px;
|
|
float: left;
|
|
padding-right: 15px;
|
|
}
|
|
|