fdsfsda
This commit is contained in:
+150
-10
@@ -393,13 +393,14 @@
|
||||
display: inline-flex;
|
||||
flex-direction: column; /* stack lines vertically */
|
||||
align-items: flex-start;
|
||||
padding: 2px 0;
|
||||
padding: 2px 4px;
|
||||
font-family: var(--font, inherit);
|
||||
font-size: 35px;
|
||||
font-weight: 700;
|
||||
font-size: var(--danmaku-font-size, 35px);
|
||||
font-weight: var(--danmaku-font-weight, 700);
|
||||
line-height: 1.1;
|
||||
gap: 0;
|
||||
color: #fff;
|
||||
color: var(--danmaku-color, #fff);
|
||||
opacity: var(--danmaku-opacity, 1);
|
||||
/* Multi-layer outline shadow for readability over any background */
|
||||
text-shadow:
|
||||
-1px -1px 0 #000,
|
||||
@@ -412,12 +413,48 @@
|
||||
background: none;
|
||||
border: none;
|
||||
text-align: left;
|
||||
transition: opacity 0.15s ease;
|
||||
}
|
||||
|
||||
/* Pill Background Variations */
|
||||
.danmaku-overlay.danmaku-bg-glass .danmaku-pill {
|
||||
background: rgba(10, 10, 14, 0.65);
|
||||
backdrop-filter: blur(6px);
|
||||
-webkit-backdrop-filter: blur(6px);
|
||||
padding: 4px 12px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
.danmaku-overlay.danmaku-bg-capsule .danmaku-pill {
|
||||
background: rgba(18, 18, 24, 0.85);
|
||||
padding: 4px 14px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid rgba(var(--accent-rgb, 153, 255, 0), 0.35);
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
|
||||
/* Shadow / Glow Variations */
|
||||
.danmaku-overlay.danmaku-glow-neon .danmaku-pill {
|
||||
text-shadow:
|
||||
0 0 8px var(--danmaku-color, #99ff00),
|
||||
0 0 18px var(--danmaku-color, #99ff00),
|
||||
-1px -1px 0 #000,
|
||||
1px 1px 0 #000;
|
||||
}
|
||||
|
||||
.danmaku-overlay.danmaku-glow-none .danmaku-pill {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.danmaku-overlay.danmaku-glow-subtle .danmaku-pill {
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
|
||||
.danmaku-pill .dpill-text {
|
||||
font-family: var(--font, inherit);
|
||||
font-size: 35px;
|
||||
font-weight: 700;
|
||||
font-size: var(--danmaku-font-size, 35px);
|
||||
font-weight: var(--danmaku-font-weight, 700);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@@ -434,6 +471,10 @@
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.danmaku-overlay.danmaku-no-greentext .danmaku-pill .dpill-greentext {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
/* Spoiler inside a flying pill — black-on-black, click to reveal */
|
||||
.danmaku-pill .dpill-spoiler {
|
||||
background: #000;
|
||||
@@ -492,8 +533,8 @@
|
||||
|
||||
/* Inline image URL embedded in pill */
|
||||
.danmaku-pill .dpill-img {
|
||||
max-height: 80px;
|
||||
max-width: 120px;
|
||||
max-height: var(--danmaku-media-max-h, 80px);
|
||||
max-width: 140px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
vertical-align: middle;
|
||||
@@ -505,8 +546,8 @@
|
||||
|
||||
/* Inline video (converted GIF) in pill */
|
||||
.danmaku-pill .dpill-video {
|
||||
max-height: 80px;
|
||||
max-width: 120px;
|
||||
max-height: var(--danmaku-media-max-h, 80px);
|
||||
max-width: 140px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
vertical-align: middle;
|
||||
@@ -522,6 +563,105 @@
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
/* ── Danmaku Debug Overlays ────────────────────────────────── */
|
||||
.danmaku-lane-guides-container {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: 2;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.danmaku-lane-guide {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
border-top: 1px dashed rgba(var(--accent-rgb, 153, 255, 0), 0.35);
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 0 8px;
|
||||
font-family: monospace;
|
||||
font-size: 10px;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
background: rgba(0, 0, 0, 0.04);
|
||||
transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
|
||||
}
|
||||
|
||||
.danmaku-lane-guide.occupied {
|
||||
background: rgba(255, 60, 60, 0.12);
|
||||
border-top: 1px dashed rgba(255, 60, 60, 0.65);
|
||||
color: #ff7070;
|
||||
}
|
||||
|
||||
.danmaku-lane-badge {
|
||||
background: rgba(0, 0, 0, 0.65);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
padding: 1px 5px;
|
||||
border-radius: 4px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.danmaku-lane-status {
|
||||
font-size: 9px;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
/* Diagnostic Live HUD */
|
||||
.danmaku-debug-hud {
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
left: 14px;
|
||||
z-index: 10;
|
||||
background: rgba(12, 12, 16, 0.88);
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(var(--accent-rgb, 153, 255, 0), 0.45);
|
||||
border-radius: 8px;
|
||||
padding: 8px 12px;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
||||
font-size: 11px;
|
||||
color: #e0e0e0;
|
||||
pointer-events: none;
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
line-height: 1.3;
|
||||
min-width: 170px;
|
||||
}
|
||||
|
||||
.danmaku-debug-hud .hud-title {
|
||||
color: var(--accent, #99ff00);
|
||||
font-weight: 700;
|
||||
font-size: 11px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
||||
padding-bottom: 3px;
|
||||
margin-bottom: 2px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.danmaku-debug-hud .hud-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.danmaku-debug-hud .hud-val {
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.danmaku-debug-hud .hud-val.accent {
|
||||
color: var(--accent, #99ff00);
|
||||
}
|
||||
|
||||
@keyframes danmaku-fly {
|
||||
from { transform: translateX(calc(100vw + 100%)); }
|
||||
to { transform: translateX(calc(-100% - 200px)); }
|
||||
|
||||
Reference in New Issue
Block a user