mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 17:23:10 -05:00
* working on adding charts * working on chart options * adding image and table insight * add chart viewing and handle a bunch of small bugs * formatting * add actions to chart viewer * formatting * remove unimplemented function
31 lines
665 B
CSS
31 lines
665 B
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.chart-parent-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.actionbar-container {
|
|
width: 100%;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.charting-container {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.insight-container {
|
|
flex: 1 1 0;
|
|
}
|
|
|
|
.options-container {
|
|
width: 250px;
|
|
padding-right: 10px;
|
|
}
|