From 8df4803b0fc0c8df9c0ce8de2d22e442f4ebf750 Mon Sep 17 00:00:00 2001 From: Awilum Date: Mon, 9 Sep 2019 18:54:37 +0300 Subject: [PATCH] fix(admin-plugin): fix dark theme for admin panel #186 #168 --- .../admin/assets/scss/components/nav.scss | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/site/plugins/admin/assets/scss/components/nav.scss b/site/plugins/admin/assets/scss/components/nav.scss index e2edede1..cadc30c1 100644 --- a/site/plugins/admin/assets/scss/components/nav.scss +++ b/site/plugins/admin/assets/scss/components/nav.scss @@ -220,6 +220,7 @@ .flex-column.nav-pills .nav-link { background: #21252b; font-size: 14px; + border-bottom: none; } .flex-column.nav-pills .nav-link:focus, @@ -240,3 +241,43 @@ .bootstrap-datetimepicker-widget table td span:hover { background: #3b404b!important; } + +.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after { + bottom: -8px; +} + +.bootstrap-datetimepicker-widget table thead tr:first-child th:hover { + background: #3b404b!important; + color: #b7b9bd!important; +} + +.bootstrap-datetimepicker-widget table td.day:hover, +.bootstrap-datetimepicker-widget table td.hour:hover, +.bootstrap-datetimepicker-widget table td.minute:hover, +.bootstrap-datetimepicker-widget table td.second:hover { + background: #3b404b!important; + color: #b7b9bd!important; +} + +.bootstrap-datetimepicker-widget .table tbody tr:hover td, +.bootstrap-datetimepicker-widget .table tbody tr:hover th { + background-color: transparent; +} + +.bootstrap-datetimepicker-widget table td span.active, +.bootstrap-datetimepicker-widget table td.active, +.bootstrap-datetimepicker-widget table td.active:hover { + background: #3b404b!important; + color: #b7b9bd!important; +} + +.bootstrap-datetimepicker-widget table th { + padding: 12.5px 20px; + vertical-align: middle; + border-color: #000; + font-size: 14px; +} + +.dropdown-menu { + background-color: #21252b; +}