mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 17:23:02 -05:00
* support icon button * formatting * fix dropdown css and set attribute for model view editor
43 lines
1.2 KiB
CSS
43 lines
1.2 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.modelview-toolbar-container {
|
|
display: flex;
|
|
padding: 15px;
|
|
justify-content: flex-start;
|
|
line-height: 1.4em;
|
|
white-space: nowrap;
|
|
flex-wrap: wrap;
|
|
border-bottom-width: .5px;
|
|
border-bottom-style: solid;
|
|
box-sizing: border-box;
|
|
border-bottom-color: rgba(128, 128, 128, 0.35);
|
|
}
|
|
|
|
.modelview-toolbar-container .modelview-toolbar-item {
|
|
flex: 0 0;
|
|
flex-direction: row;
|
|
display: flex;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.modelview-toolbar-container .modelview-toolbar-title {
|
|
padding-right: 5px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
margin: auto;
|
|
}
|
|
|
|
.modelview-toolbar-container .modelview-toolbar-component select,
|
|
.modelview-toolbar-container .modelview-toolbar-component .monaco-inputbox {
|
|
width: 200px;
|
|
height: 25px;
|
|
}
|
|
|
|
.modelview-toolbar-container .modelview-toolbar-component modelview-button .monaco-text-button.icon {
|
|
padding-left: 15px;
|
|
background-size: 11px;
|
|
margin-right: 0.3em;
|
|
} |