luci-theme-bootstrap: render tblsection row titles

The Bootstrap theme lacked appropriate CSS yet to render section title
attributes.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2018-06-25 09:52:29 +02:00
parent 18d92aca53
commit 211d8bc55e

View file

@ -1728,6 +1728,20 @@ header .pull-right { padding-top: 8px; }
font-weight: normal;
}
.cbi-section-table-titles.named::before,
.cbi-section-table-descr.named::before,
.cbi-section-table-row[data-title]::before {
content: attr(data-title) " ";
display: table-cell;
padding: 10px 10px 9px;
line-height: 18px;
font-weight: bold;
}
.cbi-section-table-row[data-title]::before {
border-top: 1px solid #ddd;
}
.left { text-align: left !important; }
.right { text-align: right !important; }