Fix schedule

This commit is contained in:
2026-05-06 20:49:10 +07:00
parent c76e471161
commit ac9fd4cf42
9 changed files with 459 additions and 87 deletions

View File

@@ -1253,7 +1253,7 @@ body>*:not(.sfB-bg):not(.sfB-topbar) {
.sfB-row {
display: grid;
grid-template-columns: 130px 75px 1fr 1fr 1fr 95px;
grid-template-columns: 140px 130px 1fr 1fr 1fr 1fr;
align-items: center;
gap: 14px;
padding: 18px 22px;
@@ -1360,14 +1360,20 @@ body>*:not(.sfB-bg):not(.sfB-topbar) {
font-weight: 500;
}
.sfB-row .col-social .sub {
display: block;
font-family: 'JetBrains Mono', monospace;
font-size: 9px;
letter-spacing: 0.5px;
color: rgba(255, 246, 232, 0.6);
margin-top: 4px;
text-transform: uppercase;
.sfB-row .col-org {
font-size: 15px;
font-weight: 700;
background: linear-gradient(135deg, var(--sf-coral), var(--sf-gold));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.sfB-row .col-org a {
background: linear-gradient(135deg, var(--sf-coral), var(--sf-gold));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.sfB-row .col-music {
@@ -1398,14 +1404,6 @@ body>*:not(.sfB-bg):not(.sfB-topbar) {
color: #7ed4dd;
}
.sfB-row .col-org {
font-size: 11px;
color: rgba(255, 246, 232, 0.5);
text-align: right;
letter-spacing: 0.3px;
line-height: 1.4;
}
.sfB-row.today .tonight-label {
font-family: 'JetBrains Mono', monospace;
font-size: 8px;
@@ -2261,6 +2259,147 @@ body>*:not(.sfB-bg):not(.sfB-topbar) {
}
}
/* ── Schedule: click hint ── */
.sfB-sched-hint {
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.5px;
color: rgba(255, 246, 232, 0.75);
text-align: center;
margin: -4px 0 12px;
}
/* ── Schedule: organizer links inside row ── */
.sfB-row .col-org a {
text-decoration: none;
}
.sfB-row .col-org a:hover {
background: none;
-webkit-background-clip: unset;
background-clip: unset;
color: var(--sf-teal);
}
/* ── Event detail modal ── */
.sfB-ev-modal {
display: none;
position: fixed;
inset: 0;
z-index: 9000;
align-items: center;
justify-content: center;
}
.sfB-ev-modal.open {
display: flex;
}
.sfB-ev-modal-box {
position: relative;
z-index: 1;
background: #1a1a1a;
border: 1px solid rgba(255, 246, 232, 0.12);
border-radius: 20px;
width: min(520px, calc(100vw - 32px));
max-height: calc(100vh - 64px);
overflow-y: auto;
}
.sfB-ev-head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
padding: 22px 24px 18px;
border-bottom: 1px solid rgba(255, 246, 232, 0.08);
position: sticky;
top: 0;
background: #1a1a1a;
z-index: 1;
}
.sfB-ev-day-time {
font-family: 'JetBrains Mono', monospace;
font-size: 13px;
letter-spacing: 1px;
text-transform: uppercase;
color: var(--sf-coral);
margin-bottom: 6px;
}
.sfB-ev-name {
font-family: 'Bricolage Grotesque', sans-serif;
font-size: 22px;
font-weight: 800;
color: var(--sf-paper);
letter-spacing: -0.5px;
line-height: 1.1;
}
.sfB-ev-body {
padding: 20px 24px 24px;
display: flex;
flex-direction: column;
gap: 14px;
}
.sfB-ev-row {
display: grid;
grid-template-columns: 64px 1fr;
gap: 10px;
align-items: flex-start;
}
.sfB-ev-label {
font-family: 'JetBrains Mono', monospace;
font-size: 9px;
letter-spacing: 1.2px;
text-transform: uppercase;
color: rgba(255, 246, 232, 0.35);
padding-top: 3px;
}
.sfB-ev-val {
font-size: 13px;
color: rgba(255, 246, 232, 0.85);
display: flex;
flex-direction: column;
gap: 3px;
}
.sfB-ev-val a {
color: #5dd6df;
text-decoration: none;
}
.sfB-ev-val a:hover {
color: #a8eef2;
}
.sfB-ev-address {
font-size: 11px;
color: rgba(255, 246, 232, 0.75);
}
.sfB-ev-fee {
font-family: 'JetBrains Mono', monospace;
font-size: 15px;
font-weight: 600;
color: var(--sf-gold);
}
.sfB-ev-chips {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 4px;
}
.sfB-ev-offer {
color: var(--sf-gold) !important;
}
/* ── Playlists page ── */
.sfB-pl-section {
margin-top: 40px;