mirror of
https://github.com/Coldsmiles/infstarweb.git
synced 2026-04-23 02:30:41 +08:00
feat: add share functionality and update modal layout in facilities
This commit is contained in:
@@ -314,6 +314,13 @@
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.modal-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.large-badge {
|
||||
padding: 6px 14px;
|
||||
border-radius: 8px;
|
||||
@@ -533,6 +540,35 @@
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.btn-share-facility {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 6px 16px;
|
||||
background: transparent;
|
||||
color: var(--text-secondary);
|
||||
border: 1.5px solid rgba(0,0,0,0.12);
|
||||
border-radius: 18px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
white-space: nowrap;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.btn-share-facility:hover {
|
||||
color: var(--accent-color);
|
||||
border-color: var(--accent-color);
|
||||
background: rgba(0,113,227,0.04);
|
||||
}
|
||||
|
||||
.btn-share-facility.shared {
|
||||
color: #15803d;
|
||||
border-color: #34c759;
|
||||
background: #e8fceb;
|
||||
}
|
||||
|
||||
.btn-edit-facility {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
||||
Reference in New Issue
Block a user