v5.1 fixes
This commit is contained in:
parent
2b74e7983f
commit
ff572bbf8e
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
--button-color: hsla(0,0%,100%,.15);
|
--button-color: hsla(0,0%,100%,.15);
|
||||||
--button-color-hover: hsla(0,0%,100%,.30);
|
--button-color-hover: hsla(0,0%,100%,.30);
|
||||||
--accent-color: rgba(255, 255, 255, 0.25);
|
--accent-color: rgba(255, 255, 255, 0.5);
|
||||||
--accent-color-hover: rgba(255, 255, 255, 0.45);
|
--accent-color-hover: rgba(255, 255, 255, 0.45);
|
||||||
--queue-color: rgba(255, 255, 255, 0.45);;
|
--queue-color: rgba(255, 255, 255, 0.45);;
|
||||||
}
|
}
|
||||||
@ -12,12 +12,13 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
background: var(--main-bg-color) !important;
|
background: var(--main-bg-color) !important;
|
||||||
color: #eee;
|
color: #eee !important;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: var(--link-color);
|
color: var(--link-color);
|
||||||
}
|
}
|
||||||
a:hover, a:active, a:focus {
|
a:hover, a:active, a:focus,
|
||||||
|
.treeview-menu > li.active > a, .treeview-menu > li > a:hover {
|
||||||
color: var(--accent-color) !important;
|
color: var(--accent-color) !important;
|
||||||
}
|
}
|
||||||
/* Donate dropdown */
|
/* Donate dropdown */
|
||||||
@ -42,11 +43,14 @@ a:hover, a:active, a:focus {
|
|||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
/* Header */
|
/* Header */
|
||||||
.skin-blue .main-header .navbar, .skin-blue .main-header .logo {
|
.skin-blue .main-header .navbar, .skin-blue .main-header .logo,
|
||||||
|
.main-header .navbar {
|
||||||
background-color: rgba(0, 0, 0, .25);
|
background-color: rgba(0, 0, 0, .25);
|
||||||
}
|
}
|
||||||
.skin-blue .main-header .logo:hover, .skin-blue .main-header .navbar .sidebar-toggle:hover {
|
.skin-blue .main-header .logo:hover, .skin-blue .main-header .navbar .sidebar-toggle:hover,
|
||||||
|
.sidebar-menu > li:hover > a, .sidebar-menu > li.active > a {
|
||||||
background-color: rgba(255, 255, 255, .05);
|
background-color: rgba(255, 255, 255, .05);
|
||||||
|
color: white !important;
|
||||||
}
|
}
|
||||||
/* Footer */
|
/* Footer */
|
||||||
.main-footer {
|
.main-footer {
|
||||||
@ -61,15 +65,24 @@ a:hover, a:active, a:focus {
|
|||||||
.skin-blue .sidebar a:hover {
|
.skin-blue .sidebar a:hover {
|
||||||
color: white !important;
|
color: white !important;
|
||||||
}
|
}
|
||||||
.skin-blue .wrapper, .skin-blue .main-sidebar, .skin-blue .left-side {
|
.skin-blue .wrapper, .skin-blue .main-sidebar, .skin-blue .left-side,
|
||||||
background-color: rgba(0, 0, 0, .25);
|
.wrapper, .main-sidebar, .left-side {
|
||||||
|
background-color: rgba(0, 0, 0, .25) !important;
|
||||||
}
|
}
|
||||||
.skin-blue .sidebar-menu>li.header {
|
.skin-blue .sidebar-menu>li.header,
|
||||||
|
.sidebar-menu > li.header {
|
||||||
color: white;
|
color: white;
|
||||||
background: rgba(0, 0, 0, .2);
|
background: rgba(0, 0, 0, .2);
|
||||||
|
}
|
||||||
|
.treeview-menu > li > a {
|
||||||
|
color: #eee !important;
|
||||||
|
}
|
||||||
|
.sidebar-menu > li > .treeview-menu {
|
||||||
|
background-color: rgb(0 0 0 / 25%);
|
||||||
}
|
}
|
||||||
/* Menus */
|
/* Menus */
|
||||||
.skin-blue .sidebar-menu>li:hover>a, .skin-blue .sidebar-menu>li.active>a {
|
.skin-blue .sidebar-menu>li:hover>a, .skin-blue .sidebar-menu>li.active>a,
|
||||||
|
.sidebar-menu > li:hover > a, .sidebar-menu > li.active > a {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: rgba(0, 0, 0, .1);
|
background: rgba(0, 0, 0, .1);
|
||||||
border-left-color: var(--accent-color);
|
border-left-color: var(--accent-color);
|
||||||
@ -84,6 +97,7 @@ a:hover, a:active, a:focus {
|
|||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.sidebar-mini.sidebar-collapse .sidebar-menu>li:hover>a>span:not(.pull-right), .sidebar-mini.sidebar-collapse .sidebar-menu>li:hover>.treeview-menu {
|
.sidebar-mini.sidebar-collapse .sidebar-menu>li:hover>a>span:not(.pull-right), .sidebar-mini.sidebar-collapse .sidebar-menu>li:hover>.treeview-menu {
|
||||||
background: var(--main-bg-color);
|
background: var(--main-bg-color);
|
||||||
|
color: #eee;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* Pages */
|
/* Pages */
|
||||||
@ -91,6 +105,21 @@ a:hover, a:active, a:focus {
|
|||||||
.content-wrapper, .right-side {
|
.content-wrapper, .right-side {
|
||||||
background-color: var(--main-bg-color);
|
background-color: var(--main-bg-color);
|
||||||
}
|
}
|
||||||
|
.page-header>small {
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
.main-footer .nav-tabs, .nav-tabs-custom .nav-tabs {
|
||||||
|
background-color: rgb(0 0 0 / 0.25);
|
||||||
|
border-bottom-color: rgb(255 255 255 / 15%);
|
||||||
|
}
|
||||||
|
.nav-tabs-custom>.nav-tabs>li:hover {
|
||||||
|
background-color: rgba(255, 255, 255, .05);
|
||||||
|
color: #eee;
|
||||||
|
border-top-color: var(--accent-color);
|
||||||
|
}
|
||||||
|
.nav-tabs-custom > .nav-tabs > li:hover > a {
|
||||||
|
background-color: rgba(255, 255, 255, .05);
|
||||||
|
}
|
||||||
/* Dashboard */
|
/* Dashboard */
|
||||||
/*Total Queries box */
|
/*Total Queries box */
|
||||||
.box-header {
|
.box-header {
|
||||||
@ -101,6 +130,14 @@ a:hover, a:active, a:focus {
|
|||||||
border-top: 3px solid #0000;
|
border-top: 3px solid #0000;
|
||||||
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
|
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
|
||||||
}
|
}
|
||||||
|
.box-solid > .box-header, .box > .box-header {
|
||||||
|
color: #eee;
|
||||||
|
background-color: rgba(0, 0, 0, .25);
|
||||||
|
}
|
||||||
|
.box.box-warning {
|
||||||
|
border-top-color: var(--accent-color);
|
||||||
|
}
|
||||||
|
/*
|
||||||
.chart svg, .chart canvas, .chartjs-render-monitor, .chart-legend {
|
.chart svg, .chart canvas, .chartjs-render-monitor, .chart-legend {
|
||||||
-webkit-filter: invert(100%);
|
-webkit-filter: invert(100%);
|
||||||
filter: invert(100%);
|
filter: invert(100%);
|
||||||
@ -112,6 +149,7 @@ a:hover, a:active, a:focus {
|
|||||||
-webkit-filter: invert(100%);
|
-webkit-filter: invert(100%);
|
||||||
filter: invert(100%);
|
filter: invert(100%);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
/* Total queries box*/
|
/* Total queries box*/
|
||||||
.small-box.bg-green {
|
.small-box.bg-green {
|
||||||
background-color: rgba(0, 166, 90, .45) !important;
|
background-color: rgba(0, 166, 90, .45) !important;
|
||||||
@ -146,12 +184,14 @@ a:hover, a:active, a:focus {
|
|||||||
.text-black {
|
.text-black {
|
||||||
color: #eee!important;
|
color: #eee!important;
|
||||||
}
|
}
|
||||||
.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover {
|
.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover,
|
||||||
|
.dataTables_paginate .pagination li > a{
|
||||||
color: rgba(238, 238, 238, .5);
|
color: rgba(238, 238, 238, .5);
|
||||||
background-color: rgba(255, 255, 255, .1);
|
background-color: rgba(255, 255, 255, .1);
|
||||||
border-color: #ddd0;
|
border-color: #ddd0;
|
||||||
}
|
}
|
||||||
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
|
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover,
|
||||||
|
.paginate_button .active #all-queries_wrapper .pagination > li > a{
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: var(--button-color);
|
background-color: var(--button-color);
|
||||||
border-color: var(--button-color);
|
border-color: var(--button-color);
|
||||||
@ -178,9 +218,16 @@ a:hover, a:active, a:focus {
|
|||||||
}
|
}
|
||||||
.panel-default>.panel-heading {
|
.panel-default>.panel-heading {
|
||||||
color: #eee;
|
color: #eee;
|
||||||
background-color: transparent;
|
background-color: inherit;
|
||||||
border-color: rgba(255, 255, 255, .25)
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
|
.panel, .panel-body, .panel-default > .panel-heading {
|
||||||
|
background-color: rgb(0 0 0 / 25%);
|
||||||
|
border-radius: 0px;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
color: #bec5cb;
|
||||||
|
}
|
||||||
|
|
||||||
/* Blacklist */
|
/* Blacklist */
|
||||||
.nav-tabs-custom {
|
.nav-tabs-custom {
|
||||||
background: rgba(0, 0, 0, 0.25);
|
background: rgba(0, 0, 0, 0.25);
|
||||||
@ -197,7 +244,7 @@ a:hover, a:active, a:focus {
|
|||||||
border-right-color: rgba(255, 255, 255, 0.1);
|
border-right-color: rgba(255, 255, 255, 0.1);
|
||||||
}
|
}
|
||||||
.nav-tabs-custom>.nav-tabs>li.active>a, .nav-tabs-custom>.nav-tabs>li.active:hover>a {
|
.nav-tabs-custom>.nav-tabs>li.active>a, .nav-tabs-custom>.nav-tabs>li.active:hover>a {
|
||||||
background-color: rgba(255, 255, 255, .15);
|
background-color: rgba(0, 0, 0, 0.25);
|
||||||
color: #eee !important;
|
color: #eee !important;
|
||||||
}
|
}
|
||||||
.nav-tabs-custom>.nav-tabs>li>a {
|
.nav-tabs-custom>.nav-tabs>li>a {
|
||||||
@ -218,9 +265,9 @@ a:hover, a:active, a:focus {
|
|||||||
.table-striped>tbody>tr:nth-of-type(even) {
|
.table-striped>tbody>tr:nth-of-type(even) {
|
||||||
background-color:rgba(0, 0, 0, .5) !important;
|
background-color:rgba(0, 0, 0, .5) !important;
|
||||||
}
|
}
|
||||||
.text-center {
|
#network-entries_wrapper.text-center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #000 !important;
|
color: #eee !important;
|
||||||
}
|
}
|
||||||
/* Buttons */
|
/* Buttons */
|
||||||
button,.btn-default {
|
button,.btn-default {
|
||||||
@ -259,12 +306,46 @@ a:hover, a:active, a:focus {
|
|||||||
background-color: #ec971f !important;
|
background-color: #ec971f !important;
|
||||||
border-color: #d58512 !important;
|
border-color: #d58512 !important;
|
||||||
}
|
}
|
||||||
|
.icheck-primary>input:first-child:checked+input[type=hidden]+label::before, .icheck-primary>input:first-child:checked+label::before {
|
||||||
|
background-color: var(--button-color) !important;
|
||||||
|
border-color: var(--button-color) !important;
|
||||||
|
}
|
||||||
|
.icheck-primary>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before, .icheck-primary>input:first-child:not(:checked):not(:disabled):hover+label::before {
|
||||||
|
border-color: var(--button-color) !important;
|
||||||
|
}
|
||||||
/* Input */
|
/* Input */
|
||||||
input,.form-control,pre,.box-footer,.datatables_processing {
|
input,.form-control,pre,.box-footer,.datatables_processing {
|
||||||
background:#080909;
|
background:#080909;
|
||||||
border:1px solid #666;
|
border:1px solid #666;
|
||||||
color:#b2b2b2;
|
color:#b2b2b2;
|
||||||
}
|
}
|
||||||
|
.dataTables_wrapper input[type="search"] {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
input,
|
||||||
|
select,
|
||||||
|
select.form-control,
|
||||||
|
.form-group .input-group-addon,
|
||||||
|
.input-group .input-group-addon,
|
||||||
|
.form-group input,
|
||||||
|
.input-group input,
|
||||||
|
.form-group textarea,
|
||||||
|
.input-group textarea,
|
||||||
|
.daterangepicker select.hourselect,
|
||||||
|
.daterangepicker select.minuteselect,
|
||||||
|
.daterangepicker select.secondselect,
|
||||||
|
.daterangepicker select.ampmselect,
|
||||||
|
.form-control,
|
||||||
|
div.dataTables_wrapper div.dataTables_length select {
|
||||||
|
background-color: rgb(0 0 0 / 0.25);
|
||||||
|
color: #eee;
|
||||||
|
border: 1px solid rgb(255 255 255 / 15%);
|
||||||
|
}
|
||||||
|
.form-control:focus {
|
||||||
|
border-color: rgb(255 255 255 / 0.25);
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
/* Scrollbar */
|
/* Scrollbar */
|
||||||
@media only screen and (min-width: 768px) {
|
@media only screen and (min-width: 768px) {
|
||||||
html {
|
html {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user