noah33565 commited on
Commit
d9ad801
Β·
verified Β·
1 Parent(s): 602f94d

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +26 -0
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; }