add template managment

This commit is contained in:
smanylov
2026-05-21 16:33:01 +07:00
parent 921f3c0104
commit 76009e4abb
9 changed files with 413 additions and 10 deletions
@@ -15,6 +15,35 @@
overflow: hidden;
margin-bottom: 24px;
padding: 1.5rem;
.template-name-input {
width: 100%;
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 6px;
margin: 16px 0;
}
.modal-buttons {
display: flex;
gap: 12px;
justify-content: flex-end;
}
.btn-icon {
padding: 8px;
border: none;
background: transparent;
cursor: pointer;
border-radius: 6px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-icon:hover:not(:disabled) {
background: rgba(0, 0, 0, 0.05);
}
}
.edit-permissions-modal,
@@ -39,6 +68,13 @@
padding-top: 20px;
}
.templates-section {
margin-bottom: 20px;
padding: 15px;
background: #f5f5f5;
border-radius: 8px;
}
.checkbox-label {
display: flex;
gap: 10px;