🎨 Minor UI updates

This commit is contained in:
liyasthomas
2019-10-06 07:46:48 +05:30
parent 11e6a8838c
commit 9317b5b983
5 changed files with 32 additions and 33 deletions

View File

@@ -148,11 +148,6 @@ legend {
}
}
fieldset textarea,
fieldset pre code {
resize: vertical;
}
fieldset.blue legend {
color: #57b5f9;
}
@@ -209,6 +204,7 @@ pre {
user-select: text;
width: calc(100% - 8px);
min-height: 40px;
resize: vertical;
&:not([readonly]):hover {
background-color: var(--bg-dark-color);

View File

@@ -31,7 +31,7 @@
:root.light {
// Dark Background color
--bg-dark-color: #e8f0fe;
--bg-dark-color: #f6f6f6;
// Background color
--bg-color: #ffffff;
// Auto-complete color
@@ -41,9 +41,9 @@
// Light Text color
--fg-light-color: rgb(150, 155, 160);
// Border color
--brd-color: #f2f2f2;
--brd-color: #eeeeed;
// Error color
--err-color: invert(#303341, 1);
--err-color: #f6f6f6;
// Acent color
--ac-color: #57b5f9;
// Active text color
@@ -52,29 +52,29 @@
:root.black {
// Dark Background color
--bg-dark-color: rgb(23, 24, 26);
--bg-dark-color: rgb(8, 8, 8);
// Background color
--bg-color: #000000;
// Auto-complete color
--atc-color: rgb(49, 49, 55);
--atc-color: rgb(18, 18, 18);
// Text color
--fg-color: rgb(247, 248, 248);
--fg-color: rgb(250, 250, 250);
// Light Text color
--fg-light-color: rgb(150, 155, 160);
--fg-light-color: rgb(100, 100, 100);
// Border color
--brd-color: rgb(48, 47, 55);
--brd-color: rgb(16, 16, 16);
// Error color
--err-color: rgb(41, 42, 45);
--err-color: rgb(8, 8, 8);
// Acent color
--ac-color: #50fa7b;
// Active text color
--act-color: rgb(37, 38, 40);
--act-color: #000000;
}
@media(prefers-color-scheme: light) {
:root.auto {
// Dark Background color
--bg-dark-color: #e8f0fe;
--bg-dark-color: #f6f6f6;
// Background color
--bg-color: #ffffff;
// Auto-complete color
@@ -84,13 +84,13 @@
// Light Text color
--fg-light-color: rgb(150, 155, 160);
// Border color
--brd-color: #f2f2f2;
--brd-color: #eeeeed;
// Error color
--err-color: invert(#303341, 1);
--err-color: #f6f6f6;
// Acent color
--ac-color: #57b5f9;
// Active text color
--act-color: #fff;
--act-color: #ffffff;
}
}