mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 14:50:00 -07:00
Fix status dot color, map tiles, and button issues
- Fix status dot to be red when inactive, green when tracking - Add additional map invalidateSize call to fix missing tiles on load - Add type="button" and z-index to strip buttons for proper click handling Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1604,6 +1604,8 @@ body {
|
||||
}
|
||||
|
||||
.strip-btn {
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
background: rgba(74, 158, 255, 0.1);
|
||||
border: 1px solid rgba(74, 158, 255, 0.2);
|
||||
color: var(--text-primary);
|
||||
@@ -1654,15 +1656,15 @@ body {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
background: var(--accent-red);
|
||||
box-shadow: 0 0 10px var(--accent-red);
|
||||
background: var(--accent-green);
|
||||
box-shadow: 0 0 10px var(--accent-green);
|
||||
animation: pulse 2s ease-in-out infinite;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.strip-status .status-dot.active {
|
||||
background: var(--accent-green);
|
||||
box-shadow: 0 0 10px var(--accent-green);
|
||||
.strip-status .status-dot.inactive {
|
||||
background: var(--accent-red);
|
||||
box-shadow: 0 0 10px var(--accent-red);
|
||||
}
|
||||
|
||||
.strip-time {
|
||||
|
||||
Reference in New Issue
Block a user