Update style.css
Browse files
style.css
CHANGED
|
@@ -352,3 +352,29 @@ body {
|
|
| 352 |
.txt-muted { color:var(--muted); }
|
| 353 |
.fw700 { font-weight:700; }
|
| 354 |
.mono { font-family:'Orbitron',monospace; font-size:.75rem; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 352 |
.txt-muted { color:var(--muted); }
|
| 353 |
.fw700 { font-weight:700; }
|
| 354 |
.mono { font-family:'Orbitron',monospace; font-size:.75rem; }
|
| 355 |
+
|
| 356 |
+
/* βββ PING STYLES βββ */
|
| 357 |
+
.ping-everyone {
|
| 358 |
+
background: rgba(255, 170, 0, 0.2);
|
| 359 |
+
color: var(--warn);
|
| 360 |
+
padding: 1px 4px;
|
| 361 |
+
border-radius: 3px;
|
| 362 |
+
font-weight: 700;
|
| 363 |
+
}
|
| 364 |
+
.ping-user {
|
| 365 |
+
background: rgba(0, 212, 255, 0.12);
|
| 366 |
+
color: var(--accent);
|
| 367 |
+
padding: 1px 4px;
|
| 368 |
+
border-radius: 3px;
|
| 369 |
+
font-weight: 600;
|
| 370 |
+
}
|
| 371 |
+
.ping-me {
|
| 372 |
+
background: rgba(255, 170, 0, 0.25);
|
| 373 |
+
color: var(--warn);
|
| 374 |
+
font-weight: 700;
|
| 375 |
+
}
|
| 376 |
+
|
| 377 |
+
/* βββ TICKET ITEM βββ */
|
| 378 |
+
.ticket-item { transition: border-color .2s; }
|
| 379 |
+
.ticket-item.open { border-left: 3px solid var(--green) !important; }
|
| 380 |
+
.ticket-item.closed { border-left: 3px solid var(--muted) !important; opacity: .75; }
|