push setup

This commit is contained in:
cpu
2025-03-29 06:01:10 +01:00
parent 2d8c1a6fff
commit 5ebd2cf005
4 changed files with 376 additions and 4 deletions

View File

@@ -367,4 +367,58 @@ input[type="file"] {
flex-direction: column;
align-items: center;
gap: 0.3rem;
}
/* Push notification controls */
.push-notification-controls {
margin-right: 10px;
}
.notification-status-container {
margin: 1rem 0;
padding: 1rem;
background-color: #f8f9fa;
border-radius: 4px;
}
.notification-status p {
margin-bottom: 0.5rem;
}
.advanced-options {
margin-top: 1rem;
display: flex;
justify-content: space-between;
border-top: 1px solid #eee;
padding-top: 1rem;
}
.advanced-options button {
width: 48%;
}
/* Status indicators */
.status-granted {
color: #28a745;
font-weight: bold;
}
.status-denied {
color: #dc3545;
font-weight: bold;
}
.status-default {
color: #ffc107;
font-weight: bold;
}
.status-active {
color: #28a745;
font-weight: bold;
}
.status-inactive {
color: #6c757d;
font-weight: bold;
}