mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 17:22:42 -05:00
* Change tables to make them work for our scenario * Comments & deprecate API * Disable selections by default
33 lines
788 B
CSS
33 lines
788 B
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.declarative-table {
|
|
padding: 5px 30px 0px 30px;
|
|
box-sizing: border-box;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.declarative-table-header {
|
|
padding: 5px;
|
|
border: 1px solid;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.declarative-table-cell {
|
|
padding: 5px;
|
|
border: 1px solid;
|
|
}
|
|
|
|
.declarative-table-cell>checkbox {
|
|
float: left;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.declarative-table-row.selected {
|
|
background-color: rgb(0, 120, 215);
|
|
}
|