Spaces:
Sleeping
Sleeping
File size: 2,451 Bytes
fd52f31 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
.delete-modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
backdrop-filter: blur(5px);
}
.delete-modal-content {
background: rgba(17, 17, 17, 0.95);
backdrop-filter: blur(10px);
padding: 2rem;
border-radius: 12px;
width: 90%;
max-width: 500px;
border: 1px solid rgba(255, 255, 255, 0.1);
animation: modalSlideIn 0.3s ease-out;
}
.delete-modal-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}
.delete-modal-header h2 {
color: #fff;
margin: 0;
font-size: 1.5rem;
}
.warning-icon {
color: #ef4444;
font-size: 1.5rem;
}
.delete-modal-body {
margin-bottom: 2rem;
}
.delete-modal-body p {
color: rgba(255, 255, 255, 0.8);
margin: 0.5rem 0;
font-size: 1rem;
line-height: 1.5;
}
.podcast-name {
color: #6366f1;
font-weight: 500;
}
.warning-text {
color: #ef4444 !important;
font-size: 0.9rem !important;
margin-top: 1rem !important;
}
.delete-modal-footer {
display: flex;
justify-content: flex-end;
gap: 1rem;
}
.cancel-btn,
.delete-btn {
padding: 0.5rem 1rem;
border-radius: 6px;
font-size: 0.9rem;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}
.cancel-btn {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 0.8);
}
.cancel-btn:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.3);
}
.delete-btn {
background: #ef4444;
border: none;
color: white;
}
.delete-btn:hover {
background: #dc2626;
transform: translateY(-1px);
}
@keyframes modalSlideIn {
from {
transform: translateY(20px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
/* Light theme adjustments */
.light .delete-modal-content {
background: rgba(255, 255, 255, 0.95);
border-color: rgba(0, 0, 0, 0.1);
}
.light .delete-modal-header h2 {
color: #000;
}
.light .delete-modal-body p {
color: rgba(0, 0, 0, 0.8);
}
.light .cancel-btn {
border-color: rgba(0, 0, 0, 0.2);
color: rgba(0, 0, 0, 0.8);
}
.light .cancel-btn:hover {
background: rgba(0, 0, 0, 0.1);
border-color: rgba(0, 0, 0, 0.3);
} |