41 lines
784 B
CSS
41 lines
784 B
CSS
.custom-sidebar {
|
|
max-width: 300px !important; /* 设置最大宽度为 300px */
|
|
}
|
|
|
|
/* Toast with frosted glass effect */
|
|
.glass-toast {
|
|
backdrop-filter: blur(5px);
|
|
}
|
|
|
|
.glass-toast-success {
|
|
background-color: rgba(var(--bs-success-rgb), 0.75) !important;
|
|
}
|
|
|
|
.glass-toast-danger {
|
|
background-color: rgba(var(--bs-danger-rgb), 0.75) !important;
|
|
}
|
|
|
|
.glass-toast-info {
|
|
background-color: rgba(var(--bs-info-rgb), 0.75) !important;
|
|
}
|
|
|
|
.status-dot {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
border: 1px solid var(--bs-border-color);
|
|
}
|
|
|
|
.status-connected {
|
|
background-color: var(--bs-success);
|
|
}
|
|
|
|
.status-failed {
|
|
background-color: var(--bs-danger);
|
|
}
|
|
|
|
.status-unset {
|
|
background-color: var(--bs-secondary);
|
|
}
|