blur background when changing password
This commit is contained in:
@@ -43,6 +43,10 @@ button:hover {
|
|||||||
background-color: var(--primary-hover);
|
background-color: var(--primary-hover);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button:focus {
|
||||||
|
outline: 2px solid var(--primary-accent);
|
||||||
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
background-color: var(--bg-input);
|
background-color: var(--bg-input);
|
||||||
@@ -51,6 +55,10 @@ input {
|
|||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input:focus {
|
||||||
|
outline: 2px solid var(--primary-accent);
|
||||||
|
}
|
||||||
|
|
||||||
input::placeholder {
|
input::placeholder {
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
}
|
}
|
||||||
@@ -74,8 +82,9 @@ input::placeholder {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
z-index: 9999; /* higher = on top */
|
z-index: 9999; /* higher = on top */
|
||||||
|
|
||||||
background-color: black;
|
backdrop-filter: blur(4px);
|
||||||
opacity: 10%;
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
|
pointer-events: all;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dialouge_title {
|
.dialouge_title {
|
||||||
|
|||||||
Reference in New Issue
Block a user