CSS · 670 bytes Raw Blame History
1 /* Custom styles for LooseCannon WhatsApp integration */
2
3 /* Ensure our controls stay visible */
4 .loosecannon-toggle,
5 .loosecannon-indicator {
6 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
7 }
8
9 /* Highlight active conversations when LooseCannon is active */
10 body[data-loosecannon-active="true"] [data-testid="conversation-panel-wrapper"] {
11 border-left: 3px solid #44ff44;
12 }
13
14 /* Visual feedback for automated messages */
15 .loosecannon-automated-message {
16 position: relative;
17 }
18
19 .loosecannon-automated-message::after {
20 content: "🤖";
21 position: absolute;
22 top: -5px;
23 right: -5px;
24 font-size: 12px;
25 opacity: 0.5;
26 }