- Add Tracking folder to sidebar with 📊 icon
- Display tracking stats panel (sent, opened, rate, avg time)
- Show read status indicators (✓✓ green=read, gray=sent)
- Add read count badges for multiple opens
- Implement tracking item details view
- Add CSS for read indicators, stats panel, tooltips
21 lines
919 B
XML
21 lines
919 B
XML
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- GB-inspired checkmark icon -->
|
|
<defs>
|
|
<linearGradient id="gbCheckGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#10b981"/>
|
|
<stop offset="100%" style="stop-color:#059669"/>
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Outer circle - GB style -->
|
|
<circle cx="12" cy="12" r="10" stroke="url(#gbCheckGradient)" stroke-width="1.5" fill="none"/>
|
|
|
|
<!-- Inner fill with GB transparency -->
|
|
<circle cx="12" cy="12" r="8" fill="url(#gbCheckGradient)" opacity="0.15"/>
|
|
|
|
<!-- Checkmark path - bold and confident -->
|
|
<path d="M7 12.5L10.5 16L17 8" stroke="url(#gbCheckGradient)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
|
|
|
|
<!-- Subtle accent dot at tip - GB brand element -->
|
|
<circle cx="17" cy="8" r="1" fill="#10b981"/>
|
|
</svg>
|