Despliegue en VPS
This commit is contained in:
+115
@@ -240,6 +240,25 @@ button.primary:hover {
|
||||
font-size: 0.85rem;
|
||||
color: var(--muted);
|
||||
margin-bottom: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.repick-link {
|
||||
padding: 2px 8px;
|
||||
font-size: 0.8rem;
|
||||
border-color: var(--border);
|
||||
background: transparent;
|
||||
color: var(--accent);
|
||||
border-radius: 3px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.repick-link:hover {
|
||||
background: var(--bg);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.actions {
|
||||
@@ -248,6 +267,102 @@ button.primary:hover {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
/* Admin */
|
||||
.admin-btn {
|
||||
margin-top: 8px;
|
||||
width: 100%;
|
||||
font-size: 0.85rem;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.admin-panel {
|
||||
max-width: 560px;
|
||||
}
|
||||
|
||||
.admin-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.admin-header h2 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.admin-header .close {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.admin-empty {
|
||||
color: var(--muted);
|
||||
text-align: center;
|
||||
padding: 24px 0;
|
||||
}
|
||||
|
||||
.admin-item {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
align-items: flex-start;
|
||||
padding: 14px 0;
|
||||
border-top: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.admin-item-info {
|
||||
flex: 1;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.admin-item-info strong {
|
||||
display: block;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.admin-item-info p {
|
||||
margin: 2px 0;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.admin-desc {
|
||||
color: var(--text) !important;
|
||||
}
|
||||
|
||||
.admin-contact, .admin-coords {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.admin-actions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.admin-actions .approve {
|
||||
background: var(--accent);
|
||||
border-color: var(--accent);
|
||||
color: white;
|
||||
padding: 6px 14px;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.admin-actions .approve:hover {
|
||||
background: var(--accent-hover);
|
||||
}
|
||||
|
||||
.admin-actions .reject {
|
||||
padding: 6px 14px;
|
||||
font-size: 0.85rem;
|
||||
color: #c0392b;
|
||||
border-color: #e0b0b0;
|
||||
}
|
||||
|
||||
.admin-actions .reject:hover {
|
||||
background: #fff5f5;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 720px) {
|
||||
.app {
|
||||
|
||||
Reference in New Issue
Block a user