feat(modal): add license restriction indicators to model modal

Add visual indicators for commercial license restrictions in the model modal. New CSS classes and JavaScript utilities handle the display of restriction icons for selling, renting, and image usage limitations. The modal header actions container has been restructured to accommodate the new license restriction section.

- Add `.modal-header-actions` and `.license-restrictions` CSS classes
- Implement commercial license icon configuration and rendering logic
- Normalize and sanitize commercial restriction values
- Update header layout to remove bottom margin for better visual alignment
This commit is contained in:
Will Miao
2025-11-06 21:04:59 +08:00
parent ddf9e33961
commit a7ee883227
9 changed files with 250 additions and 20 deletions

View File

@@ -9,6 +9,42 @@
border-bottom: 1px solid var(--lora-border);
}
.modal-header-actions {
display: flex;
align-items: center;
gap: var(--space-2);
flex-wrap: wrap;
width: 100%;
margin-bottom: var(--space-1);
}
.modal-header-actions .license-restrictions {
margin-left: auto;
}
.license-restrictions {
display: flex;
align-items: center;
gap: 8px;
padding: 4px 0;
}
.license-restrictions .license-icon {
width: 22px;
height: 22px;
display: inline-block;
background-color: var(--text-muted);
-webkit-mask: var(--license-icon-image) center/contain no-repeat;
mask: var(--license-icon-image) center/contain no-repeat;
transition: background-color 0.2s ease, transform 0.2s ease;
cursor: default;
}
.license-restrictions .license-icon:hover {
background-color: var(--text-color);
transform: translateY(-1px);
}
/* Info Grid */
.info-grid {
display: grid;
@@ -798,7 +834,7 @@
display: flex;
align-items: center;
gap: 10px;
margin-bottom: var(--space-1);
margin-bottom: 0;
flex-wrap: wrap;
}