Fix text entry issue

This commit is contained in:
EliverLara
2019-02-01 00:10:01 -06:00
parent 58ec22eb04
commit 6bace045fc
3 changed files with 13 additions and 0 deletions

View File

@@ -1794,6 +1794,9 @@ entry {
box-shadow: none; }
spinbutton.error:not(.vertical),
entry.error {
color: #76777A;
border-color: rgba(12, 14, 21, 0.8);
background-color: #1c2124;
color: #f46665;
border-color: #9c0c0b; }
spinbutton.error:focus:not(.vertical),
@@ -1805,6 +1808,9 @@ entry {
background-color: #f46665; }
spinbutton.warning:not(.vertical),
entry.warning {
color: #76777A;
border-color: rgba(12, 14, 21, 0.8);
background-color: #1c2124;
color: #f47d49;
border-color: #832d08; }
spinbutton.warning:focus:not(.vertical),

View File

@@ -1794,6 +1794,9 @@ entry {
box-shadow: none; }
spinbutton.error:not(.vertical),
entry.error {
color: #76777A;
border-color: rgba(12, 14, 21, 0.8);
background-color: #1c2124;
color: #f46665;
border-color: #9c0c0b; }
spinbutton.error:focus:not(.vertical),
@@ -1805,6 +1808,9 @@ entry {
background-color: #f46665; }
spinbutton.warning:not(.vertical),
entry.warning {
color: #76777A;
border-color: rgba(12, 14, 21, 0.8);
background-color: #1c2124;
color: #f47d49;
border-color: #832d08; }
spinbutton.warning:focus:not(.vertical),

View File

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