Files
azuredatastudio/src/sql/parts/query/editor/charting/chartView.css
Anthony Dresser b6891850a7 Charting actions (#2411)
* 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
2018-09-05 18:05:09 -07:00

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;
}