zomg indicator

This commit is contained in:
2026-05-22 18:15:31 +02:00
parent e07fb589c5
commit bc89c1d7a8
2 changed files with 31 additions and 5 deletions

View File

@@ -14395,15 +14395,16 @@ body.scroller-active #gchat-reopen-bubble {
.filter-badge {
position: absolute;
bottom: -6px;
font-size: 6px;
font-weight: 796;
padding: 2px 4px;
right: -8px;
font-size: 8px;
font-weight: 800;
padding: 1px 4px;
border-radius: 4px;
line-height: 1;
text-transform: uppercase;
color: #fff !important;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
pointer-events: none;
cursor: pointer;
font-family: var(--font, monospace);
letter-spacing: 0.5px;
z-index: 10;
@@ -14484,4 +14485,22 @@ body.scroller-active #gchat-reopen-bubble {
background-color: #f1c40f;
/* Yellow */
box-shadow: 0 0 3px #f1c40f;
}
/* ZOMG Mode glowing Z indicator */
.zomg-z {
color: #f1c40f; /* Gold/Yellow */
font-weight: 900;
text-shadow: 0 0 3px #f1c40f;
margin-left: 2px;
animation: zomg-pulse 1.5s infinite alternate;
}
@keyframes zomg-pulse {
from {
text-shadow: 0 0 2px #f1c40f;
}
to {
text-shadow: 0 0 6px #f1c40f, 0 0 10px #f1c40f;
}
}