From c8aff8c109e66447caff989ca0ce1ad329f9adae Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 25 Mar 2023 22:32:11 +0000 Subject: [PATCH 1/2] perm change --- package-lock.json | 0 tests/app/foldable.htm | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 package-lock.json mode change 100644 => 100755 tests/app/foldable.htm diff --git a/package-lock.json b/package-lock.json old mode 100644 new mode 100755 diff --git a/tests/app/foldable.htm b/tests/app/foldable.htm old mode 100644 new mode 100755 From e0c9e27fb235800b665b3de67a8084d2a8c47504 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 26 Mar 2023 22:50:21 +0000 Subject: [PATCH 2/2] fix invalid input rendering --- input.scss | 12 ++++++------ styles.css | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/input.scss b/input.scss index 37847d9..0b2f629 100755 --- a/input.scss +++ b/input.scss @@ -276,25 +276,25 @@ input::placeholder { } textarea:invalid, input:invalid { - transition: all 0.5s; - border-color: #f00; + transition: all 0.5s !important; + border-color: #f00 !important; & ~ i.ok { - display: none; + display: none !important; } & ~ i.error { - display: inline-block; + display: inline-block !important; } } input:valid { & ~ i.ok { - display: inline-block; + display: inline-block !important; } & ~ i.error { - display: none; + display: none !important; } } diff --git a/styles.css b/styles.css index 91c17f2..0e8ceba 100755 --- a/styles.css +++ b/styles.css @@ -3667,17 +3667,17 @@ input::placeholder { opacity: 0.5; } textarea:invalid, input:invalid { - transition: all 0.5s; - border-color: #f00; } + transition: all 0.5s !important; + border-color: #f00 !important; } textarea:invalid ~ i.ok, input:invalid ~ i.ok { - display: none; } + display: none !important; } textarea:invalid ~ i.error, input:invalid ~ i.error { - display: inline-block; } + display: inline-block !important; } input:valid ~ i.ok { - display: inline-block; } + display: inline-block !important; } input:valid ~ i.error { - display: none; } + display: none !important; } textarea, .textarea { overflow: auto;