Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dark Skin to fix modal being light and some other issues #3323

Merged
merged 1 commit into from Aug 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 16 additions & 7 deletions web/skins/classic/css/dark/skin.css
@@ -1,5 +1,5 @@
/*
* ZoneMinder Base Stylesheet, $Date$, $Revision$
* ZoneMinder Dark Stylesheet, $Date$, $Revision$
* Copyright (C) 2001-2008 Philip Coombes
*
* This program is free software; you can redistribute it and/or
Expand Down Expand Up @@ -47,7 +47,7 @@ p {
}

th {
color: #117AAd;
color: #10a4e8;
}

img.normal {
Expand Down Expand Up @@ -147,9 +147,9 @@ fieldset {
border-bottom: 1px solid #000000;
}

input {
input, textarea, select, button, .btn-primary {
background-color: rgb(68,68,68);
color: #999;
color: #dddddd;
}
/* PP - make it easy to identify disabled buttons */

Expand Down Expand Up @@ -185,7 +185,8 @@ input[type=submit]:disabled,
}

.table-hover > tbody > tr:hover {
background-color: orange;
color: orange;
background-color: #444444;
}

.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
Expand Down Expand Up @@ -216,6 +217,14 @@ li.search-choice {
}
/* end chosen override */

modal-content {
background-color: #222222;
.modal-content {
background-color: #222222;
}

ul.nav.nav-pills.flex-column {
background-color: #485460;
}

.thead-highlight {
background-color:#485460;
}