Files
azuredatastudio/src/sql/workbench/browser/modelComponents/media/declarativeTable.css
Amir Omidi 61ceb72cea Change tables to make them work for our scenario (#12193)
* Change tables to make them work for our scenario

* Comments & deprecate API

* Disable selections by default
2020-09-11 13:44:19 -07:00

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