Fix text entry issue

This commit is contained in:
EliverLara
2019-01-20 14:17:23 -06:00
parent c8cf6591e2
commit 011d8b2fea
3 changed files with 13 additions and 0 deletions

View File

@@ -1798,6 +1798,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(238, 238, 238, 0.1);
background-color: #181b28;
color: #e6133e; color: #e6133e;
border-color: #410512; } border-color: #410512; }
spinbutton.error:focus:not(.vertical), spinbutton.error:focus:not(.vertical),
@@ -1809,6 +1812,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(238, 238, 238, 0.1);
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

@@ -1805,6 +1805,9 @@ entry {
box-shadow: none; } box-shadow: none; }
spinbutton.error:not(.vertical), spinbutton.error:not(.vertical),
entry.error { entry.error {
color: #31363D;
border-color: rgba(0, 0, 0, 0.13);
background-color: #ebf0f5;
color: #ed254e; color: #ed254e;
border-color: #ed254e; } border-color: #ed254e; }
spinbutton.error:focus:not(.vertical), spinbutton.error:focus:not(.vertical),
@@ -1816,6 +1819,9 @@ entry {
background-color: #ed254e; } background-color: #ed254e; }
spinbutton.warning:not(.vertical), spinbutton.warning:not(.vertical),
entry.warning { entry.warning {
color: #31363D;
border-color: rgba(0, 0, 0, 0.13);
background-color: #ebf0f5;
color: #ff6a00; color: #ff6a00;
border-color: #ff6a00; } border-color: #ff6a00; }
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);