/*
MIT License
Copyright 2021 Wizards Toolkit
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
----------------------------------------------------------------
This file is part of the Wizards Toolkit low-code development library
https://WizardsToolkit.com
Table of Content
-------
BUTTON
DROPDOWN
FORM
FORUM
PAGES
SIDEBAR
TABLE
WZ-CHAT
*/
:root {
--border-color: #444;
--box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 2px 0 rgba(0, 0, 0, 0.09), 0 2px 1px -1px rgba(0, 0, 0, 0.1);
--card-color: #3C3838;
--focus-color: var(--dark-theme-focus);
--main-bg-color: #212121;
--main-text-color: #ccc;
--secondary-bg-color: #272727;
}
/*BUTTON*/
.btn-cancel {
color: #212121;
}
.wtk-btn {
color: var(--main-text-color);
}
/*DROPDOWN*/
.dropdown-content li>span {
color: #999;
}
/*FORM*/
form input[type="text"]:not(.browser-default):focus:not([readonly])+label {
color: #777;
}
input:not([type]):focus:not([readonly])+label,
input[type="text"]:not(.browser-default):focus:not([readonly])+label,
input[type="password"]:not(.browser-default):focus:not([readonly])+label,
input[type="email"]:not(.browser-default):focus:not([readonly])+label,
input[type="url"]:not(.browser-default):focus:not([readonly])+label,
input[type="time"]:not(.browser-default):focus:not([readonly])+label,
input[type="date"]:not(.browser-default):focus:not([readonly])+label,
input[type="datetime"]:not(.browser-default):focus:not([readonly])+label,
input[type="datetime-local"]:not(.browser-default):focus:not([readonly])+label,
input[type="tel"]:not(.browser-default):focus:not([readonly])+label,
input[type="number"]:not(.browser-default):focus:not([readonly])+label,
input[type="search"]:not(.browser-default):focus:not([readonly])+label,
textarea.materialize-textarea:focus:not([readonly])+label {
color: #777;
}
textarea.materialize-textarea:disabled {
color: #605e5e;
}
/*FORUM*/
.forum-single .content-info {
border-top: 1px solid #333;
}
/*PAGES*/
.content form {
background: #3c3838 !important;
}
.content-right.right span {
color: #272727 !important;
}
.helper-text::after {
color: #D12020 !important;
}
.modal-content {
background: var(--card-color);
}
.page-list .content {
color: #888;
}
#modFooter {
background-color: var(--secondary-bg-color);
}
#myNote {
background-color: #595353 !important;
}
/*SIDEBAR*/
.sidenav li>a {
color: #ccc !important;
}
.sidebar-panel .side-nav {
background: #212121;
}
.sidebar-panel .side-nav .user-view {
background: #DBD9F3;
}
/*TABLE*/
table.striped>tbody>tr:nth-child(2n+1) {
background: #333;
}
/*WZ-CHAT*/
.wz-chat .wrap-input input {
color: #9E9E9E;
}
.chat-detail .wrapper-date span {
background-color: #9e9e9e;
}
.chat-detail .content-right {
background-color: #DBD9F3;
}
.chat-detail .content-right .triangles {
border-top: solid 8px #dcdaf4;
border-left: solid 8px #dcdaf4;
border-right: solid 8px transparent;
border-bottom: solid 8px transparent;
}
|