From: Jo-Philipp Wich Date: Wed, 18 Jul 2018 10:02:35 +0000 (+0200) Subject: luci-theme-bootstrap: various fixes X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fbc02d33a3ed0c194e74279c46eed50a7d75fa2d;p=oweals%2Fluci.git luci-theme-bootstrap: various fixes - Styling fixes for table hover rows, striping and title row coloring - Fixes for page action button placement Signed-off-by: Jo-Philipp Wich (cherry picked from commit 29f542fa6274337b366ccad9b268aba639936430) --- diff --git a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css index 4ca9e84f4..d0348a197 100644 --- a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css +++ b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css @@ -39,6 +39,7 @@ form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td, abbr[title], acronym[title] { border-bottom: 1px dotted; + font-weight: inherit; cursor: help; } @@ -644,6 +645,7 @@ textarea[readonly] { .cbi-page-actions > form { display: inline; + margin: 0; } .help-inline, .help-block { @@ -693,13 +695,13 @@ textarea[readonly] { text-align: left; } -.table .th { +.table .tr:first-child .th { padding-top: 9px; font-weight: bold; - vertical-align: middle; + vertical-align: top; } -.table .td, .table .tbody .th { +.table .td, .table .th { border-top: 1px solid #ddd; } @@ -1257,9 +1259,15 @@ footer { color: #c44; } -.cbi-page-actions .cbi-button-link, -.cbi-page-actions form[method="get"]:first-child { +.cbi-page-actions::after { + display: table; + content: ""; + clear: both; +} + +.cbi-page-actions > :not([method="post"]):not(.cbi-button-apply):not(.cbi-button-save):not(.cbi-button-reset) { float: left; + margin-right: .4em; } .btn.primary, @@ -1649,7 +1657,7 @@ a.label:hover { cursor: pointer; } -form.inline { display: inline } +form.inline { display: inline; margin-bottom: 0; } header .pull-right { padding-top: 8px; } @@ -1657,15 +1665,13 @@ header .pull-right { padding-top: 8px; } #syslog { width: 100%; } -.cbi-section-table tbody tr:nth-child(odd) td, .cbi-section-table tbody tr:nth-child(odd) th { - background-color: #f9f9f9; -} - -.cbi-section-table tbody tr:hover td, .cbi-section-table tbody tr:hover th { +.cbi-section-table .tr:hover .td, +.cbi-section-table .tr:hover .th, +.cbi-section-table .tr:hover::before { background-color: #f5f5f5; } -.cbi-section-table tr.cbi-section-table-descr th { +.cbi-section-table .tr.cbi-section-table-descr .th { font-weight: normal; } @@ -1680,6 +1686,8 @@ header .pull-right { padding-top: 8px; } vertical-align: middle; } +.cbi-section-table-titles.named::before, +.cbi-section-table-descr.named::before, .cbi-section-table-row[data-title]::before { border-top: 1px solid #ddd; } @@ -1744,7 +1752,9 @@ table table td, vertical-align: middle; } -.cbi-rowstyle-2 { +.cbi-rowstyle-2, +.tr.table-titles, +.tr.cbi-section-table-titles { background: #f9f9f9; }