diff --git a/Whatsapp_Chat_Exporter/whatsapp_new.html b/Whatsapp_Chat_Exporter/whatsapp_new.html index dd477f1..47d4d19 100644 --- a/Whatsapp_Chat_Exporter/whatsapp_new.html +++ b/Whatsapp_Chat_Exporter/whatsapp_new.html @@ -136,6 +136,43 @@ .status-indicator.read { color: #34B7F1; } + .play-icon { + width: 0; + height: 0; + border-left: 8px solid white; + border-top: 5px solid transparent; + border-bottom: 5px solid transparent; + filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); + } + .speaker-icon { + position: relative; + width: 8px; + height: 6px; + background: #666; + border-radius: 1px 0 0 1px; + } + .speaker-icon::before { + content: ''; + position: absolute; + right: -4px; + top: -1px; + width: 0; + height: 0; + border-left: 4px solid #666; + border-top: 4px solid transparent; + border-bottom: 4px solid transparent; + } + .speaker-icon::after { + content: ''; + position: absolute; + right: -8px; + top: -3px; + width: 8px; + height: 12px; + border: 2px solid #666; + border-left: none; + border-radius: 0 8px 8px 0; + }