added editor loading placeholder

This commit is contained in:
Gani Georgiev
2023-04-21 00:42:41 +03:00
parent d407ca2163
commit 0c63e0e219
31 changed files with 50 additions and 37 deletions
+13
View File
@@ -1209,7 +1209,20 @@ select {
border: 0;
}
.form-field label ~ & {
position: relative;
padding: 5px 2px 2px 2px;
// blank placeholder
&:before {
content: '';
position: absolute;
z-index: -1;
top: 5px;
left: 2px;
right: 2px;
bottom: 2px;
background: #fff;
border-radius: var(--baseRadius);
}
}
}
body {