diff options
Diffstat (limited to 'FrontEnd/src/index.css')
-rw-r--r-- | FrontEnd/src/index.css | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/FrontEnd/src/index.css b/FrontEnd/src/index.css index 0381e5aa..c7747a53 100644 --- a/FrontEnd/src/index.css +++ b/FrontEnd/src/index.css @@ -25,7 +25,10 @@ textarea { resize: none;
outline: none;
border-color: var(--cru-background-2-color);
- -webkit-appearance: none;
+ -webkit-appearance: caret;
+ -moz-appearance: caret;
+ -o-appearance: caret;
+ appearance: caret;
}
textarea:hover {
@@ -37,22 +40,28 @@ textarea:focus { }
input,
-input[type="text"] {
+input[type="text"],
+input[type="password"] {
resize: none;
outline: none;
border: 1px solid;
transition: all 0.5s;
border-color: var(--cru-background-2-color);
- -webkit-appearance: none;
+ -webkit-appearance: caret;
+ -moz-appearance: caret;
+ -o-appearance: caret;
+ appearance: caret;
}
input:hover,
-input:hover[type="text"] {
+input:hover[type="text"],
+input:hover[type="password"] {
border-color: var(--cru-primary-r2-color);
}
input:focus,
-input:focus[type="text"] {
+input:focus[type="text"],
+input:focus[type="password"] {
border-color: var(--cru-primary-color);
}
|