mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-31 17:23:31 -05:00
76 lines
892 B
CSS
76 lines
892 B
CSS
.fullsize {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
/* vertical box styles */
|
|
.vertBox {
|
|
display: flex;
|
|
flex-flow: column;
|
|
}
|
|
|
|
.vertBox .boxRow.header {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.vertBox .boxRow.content {
|
|
flex: 1 1 0;
|
|
}
|
|
|
|
.edgesPadding {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.messagesTopSpacing {
|
|
height: 5px;
|
|
}
|
|
|
|
.results {
|
|
flex: 100 1 0;
|
|
}
|
|
|
|
.scrollable {
|
|
overflow: auto;
|
|
}
|
|
|
|
.maxHeight {
|
|
max-height: fit-content;
|
|
}
|
|
|
|
.messages {
|
|
flex: 1 100 0;
|
|
min-height: 25%;
|
|
}
|
|
|
|
.minHeight {
|
|
min-height: fit-content;
|
|
}
|
|
|
|
/* horizontal box style */
|
|
.horzBox {
|
|
display: flex;
|
|
flex-flow: row;
|
|
}
|
|
|
|
.horzBox .boxCol.content {
|
|
flex: 1 1 1%;
|
|
overflow: auto;
|
|
max-width: fit-content;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
/* testing
|
|
|
|
.vertBox {
|
|
border: 1px solid green;
|
|
}
|
|
|
|
.horzBox {
|
|
border: 1px solid red;
|
|
}
|
|
*/ |