edit form
This commit is contained in:
parent
83ef7bab6c
commit
f991aee8ed
16 changed files with 1019 additions and 72 deletions
|
@ -0,0 +1,46 @@
|
|||
form {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.row {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.presets {
|
||||
background: rgba(159, 211, 246, 0.2);
|
||||
border: 1px dashed rgba(0,0,0,0.08);
|
||||
border-radius: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.presets.under-field { margin-top: 8px; }
|
||||
|
||||
.preset-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.preset-list button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px 10px;
|
||||
border-radius: 10px;
|
||||
border: 1px solid rgba(0,0,0,0.08);
|
||||
background: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.preset-groups { display: grid; gap: 10px; }
|
||||
.group-title { font-weight: 700; opacity: 0.8; margin-bottom: 6px; }
|
||||
.group { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 10px; padding: 8px; }
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue