Fix text entry issue

This commit is contained in:
EliverLara
2019-02-01 00:01:41 -06:00
parent 6333090684
commit c46e1b47d1
3 changed files with 13 additions and 0 deletions

View File

@@ -1784,6 +1784,9 @@ entry {
box-shadow: none; } box-shadow: none; }
spinbutton.error:not(.vertical), spinbutton.error:not(.vertical),
entry.error { entry.error {
color: #C3C7D1;
border-color: rgba(12, 14, 21, 0.8);
background-color: #181b28;
color: #e6133e; color: #e6133e;
border-color: #410512; } border-color: #410512; }
spinbutton.error:focus:not(.vertical), spinbutton.error:focus:not(.vertical),
@@ -1795,6 +1798,9 @@ entry {
background-color: #e6133e; } background-color: #e6133e; }
spinbutton.warning:not(.vertical), spinbutton.warning:not(.vertical),
entry.warning { entry.warning {
color: #C3C7D1;
border-color: rgba(12, 14, 21, 0.8);
background-color: #181b28;
color: #cc5500; color: #cc5500;
border-color: #1a0b00; } border-color: #1a0b00; }
spinbutton.warning:focus:not(.vertical), spinbutton.warning:focus:not(.vertical),

View File

@@ -1784,6 +1784,9 @@ entry {
box-shadow: none; } box-shadow: none; }
spinbutton.error:not(.vertical), spinbutton.error:not(.vertical),
entry.error { entry.error {
color: #C3C7D1;
border-color: rgba(12, 14, 21, 0.8);
background-color: #181b28;
color: #e6133e; color: #e6133e;
border-color: #410512; } border-color: #410512; }
spinbutton.error:focus:not(.vertical), spinbutton.error:focus:not(.vertical),
@@ -1795,6 +1798,9 @@ entry {
background-color: #e6133e; } background-color: #e6133e; }
spinbutton.warning:not(.vertical), spinbutton.warning:not(.vertical),
entry.warning { entry.warning {
color: #C3C7D1;
border-color: rgba(12, 14, 21, 0.8);
background-color: #181b28;
color: #cc5500; color: #cc5500;
border-color: #1a0b00; } border-color: #1a0b00; }
spinbutton.warning:focus:not(.vertical), spinbutton.warning:focus:not(.vertical),

View File

@@ -53,6 +53,7 @@ entry {
@each $e_type, $e_color in (error, $error_color), @each $e_type, $e_color in (error, $error_color),
(warning, $warning_color) { (warning, $warning_color) {
&.#{$e_type} { &.#{$e_type} {
@include entry(normal);
color: $e_color; color: $e_color;
border-color: entry_focus_border($e_color); border-color: entry_focus_border($e_color);