mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 17:22:29 -05:00
89 lines
1.7 KiB
CSS
89 lines
1.7 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.connection-label {
|
|
width: 80px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.connection-input {
|
|
padding-right:8px;
|
|
width: 200px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.connection-dialog {
|
|
height: calc(100% - 20px);
|
|
}
|
|
|
|
.connection-dialog .tabbedPanel {
|
|
border-top-color: transparent;
|
|
height: calc(100% - 350px);
|
|
display: block;
|
|
}
|
|
|
|
.connection-recent, .connection-saved {
|
|
margin: 15px;
|
|
height: calc(100% - 60px);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.no-recent-connections, .no-saved-connections {
|
|
font-size: 12px;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.connection-history-label {
|
|
font-size: 15px;
|
|
display: inline;
|
|
text-align: left;
|
|
}
|
|
|
|
.recent-titles-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.connection-provider-info {
|
|
overflow-y: hidden;
|
|
margin: 15px;
|
|
}
|
|
|
|
.connection-recent-content {
|
|
height: calc(100% - 20px);
|
|
}
|
|
|
|
.connection-table-content {
|
|
width:100%;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.connection-saved-content {
|
|
height: 100%;
|
|
}
|
|
|
|
.connection-type {
|
|
margin: 15px;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
.connection-dialog .connection-history-actions .action-label.icon {
|
|
display: block;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
min-width: 20px;
|
|
background-size: 16px;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.search-action.clear-search-results {
|
|
background: url('clear-search-results.svg');
|
|
}
|
|
|
|
.vs-dark .search-action.clear-search-results,
|
|
.hc-black .search-action.clear-search-results {
|
|
background: url('clear-search-results-dark.svg');
|
|
} |