Improved dark theme

This commit is contained in:
Pierre HUBERT 2019-01-10 17:01:00 +01:00
parent fc70840c41
commit 5bb4e2ae1f

View File

@ -17,6 +17,10 @@
--white: silver;
}
body {
background-color: var(--black6);
}
p, h1, h2, h3, h4, h5, h6 {
color: var(--white);
}
@ -33,13 +37,6 @@ p, h1, h2, h3, h4, h5, h6 {
background-color: var(--black3);
}
/**
* Sceditor body
*/
.sceditor-iframe-body {
background-color: var(--black5);
color: var(--white);
}
/**
* Buttons
@ -278,6 +275,50 @@ fieldset[disabled] .form-control {
background-color: var(--black4) !important;;
}
/**
* Sceditor
*/
.sceditor-iframe-body {
background-color: var(--black5);
color: var(--white);
}
.sceditor-container textarea {
background-color: var(--black5);
color: var(--white);
}
.sceditor-button {
background-color: var(--black6);
}
.sceditor-button svg {
fill: var(--black4);
}
.sceditor-button:hover,
.sceditor-button:active,
.sceditor-button.active {
background-color: var(--black4);
color: white;
}
.sceditor-button:hover svg,
.sceditor-button:active svg,
.sceditor-button.active svg {
fill: var(--black6);
}
div.sceditor-dropdown {
background-color: var(--black5);
}
div.sceditor-dropdown input {
background-color: var(--black4);
}
/**
* Conversations
*/