Fix inconsistent table styling. Fixes #2027

This commit is contained in:
Harshal Dhumal
2016-12-19 09:21:49 +00:00
committed by Dave Page
parent 6fc8f040ff
commit 2994c128f3
2 changed files with 10 additions and 2 deletions

View File

@@ -281,7 +281,7 @@ function(r, $, pgAdmin, _, Backbone) {
var grid = new Backgrid.Grid({
columns: columns,
collection: data,
className: "backgrid table-bordered table-striped"
className: "backgrid table-bordered presentation table backgrid-striped"
});
// Render the grid

View File

@@ -506,6 +506,7 @@ fieldset[disabled] .form-control {
.table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
border-bottom-width: 1px;
padding: 3px;
}
.subnode > table.backgrid{
@@ -521,7 +522,6 @@ fieldset[disabled] .form-control {
.backgrid > thead > th, .backgrid > tbody > td {
line-height: 18px;
font-size: 12px;
}
.backgrid > thead > th {
@@ -537,6 +537,7 @@ fieldset[disabled] .form-control {
.backgrid > thead th a {
color: white;
font-size: 12px;
}
.backgrid > th.object {
@@ -1481,3 +1482,10 @@ body {
border-color: #245580;
border-radius: 4px;
}
.dashboard-tab-container table,
.pg-panel-statistics-container table,
.pg-panel-depends-container table,
.pg-panel-depends-container table {
font-size: 12px !important;
}