From 786a3b355e78632a4810dd93220c5bc822199daa Mon Sep 17 00:00:00 2001 From: root <root@librenmscentos.localdomain> Date: Sun, 2 Jun 2019 00:11:31 +0200 Subject: [PATCH] Add table css & modify different style (adjust) --- html/css/custom/styles.css | 48 +++++++++++++++++++++++++++++++++++--- 1 file changed, 45 insertions(+), 3 deletions(-) diff --git a/html/css/custom/styles.css b/html/css/custom/styles.css index 0a8fc17..94f81f9 100644 --- a/html/css/custom/styles.css +++ b/html/css/custom/styles.css @@ -67,8 +67,8 @@ $config['site_style'] = "mono"; } html { - --text-color-normal: #0a244d; - --text-color-light: #8cabd9; + --text-color-normal: #ffffff; + --text-color-light: #85ace6; } html[data-theme='dark'] { @@ -373,6 +373,8 @@ A.black:visited, A.black, .black { background-color: black; } +/* Table */ + .table>tbody>tr.success>td, .table>tbody>tr.success>th, .table>tbody>tr>td.success, .table>tbody>tr>th.success, .table>tfoot>tr.success>td, .table>tfoot>tr.success>th, .table>tfoot>tr>td.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>thead>tr.success>th, .table>thead>tr>td.success, .table>thead>tr>th.success { background-color: #212121;; } @@ -392,6 +394,38 @@ A.black:visited, A.black, .black { color: white; background-color: #333333; } + + +.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { + + border: 0px solid #212121; + background-color: #333333; +} + +.table-bordered { + border: 0px solid #ddd; +} + +.table>tbody>tr.danger>td, .table>tbody>tr.danger>th, .table>tbody>tr>td.danger, .table>tbody>tr>th.danger, .table>tfoot>tr.danger>td, .table>tfoot>tr.danger>th, .table>tfoot>tr>td.danger, .table>tfoot>tr>th.danger, .table>thead>tr.danger>td, .table>thead>tr.danger>th, .table>thead>tr>td.danger, .table>thead>tr>th.danger { + background-color: #333; +} + +.table>tbody>tr.success>td, .table>tbody>tr.success>th, .table>tbody>tr>td.success, .table>tbody>tr>th.success, .table>tfoot>tr.success>td, .table>tfoot>tr.success>th, .table>tfoot>tr>td.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>thead>tr.success>th, .table>thead>tr>td.success, .table>thead>tr>th.success { + background-color: #333; +} + +.bootgrid-table th>.column-header-anchor>.text { + + color: white; +} + +.text-left { + background-color : #777777; +} + + +/* PAGINATION */ + .pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover { background-color: black; @@ -428,6 +462,7 @@ A.black:visited, A.black, .black { color: white; } +/* BTN INPUT*/ .btn-default { color: #ada5a5; background-color: #000; @@ -513,7 +548,6 @@ td, th { border: 1px solid #444; } .vis-major, .vis-grid, .vis-panel, .vis-background, .vis-horizontal { -border: 1px solid #444; } @@ -600,6 +634,14 @@ legend { border: 1px solid #333; } + +/* INTERFACE */ + +.interface, .interface-admindown, a.interface-admindown, a.interface-admindown:visited, .interface-updown, a.interface-updown, a.interface-updown:visited, .interface-upup, a.interface-upup { + color: #bcca1f; +} + + /* FOOTER */ .panel-footer { -- GitLab