@plusscommunities/pluss-circles-web-groups 1.5.3 → 1.5.5-auth.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,96 @@
1
+ /* Badge styling for unread count */
2
+ :root {
3
+ --badge-bg-color: #597db4; /* COLOUR_BRANDING_OFF */
4
+ }
5
+
6
+ .badgeTag {
7
+ font-size: 11px;
8
+ font-weight: 400;
9
+ padding: 3px 10px;
10
+ background-color: var(--badge-bg-color) !important;
11
+ color: #fff !important;
12
+ border-radius: 999px !important;
13
+ border: none !important;
14
+ display: inline-flex;
15
+ align-items: center;
16
+ justify-content: center;
17
+ line-height: 1;
18
+ letter-spacing: 0.02em;
19
+ }
20
+
21
+ /* Unread filter info banner */
22
+ .unreadFilterBanner {
23
+ background-color: #f0f4f8;
24
+ border-left: 3px solid var(--badge-bg-color);
25
+ border-radius: 4px;
26
+ padding: 12px 16px;
27
+ margin-top: 16px;
28
+ margin-bottom: 16px;
29
+ display: flex;
30
+ align-items: center;
31
+ }
32
+
33
+ .unreadFilterContent {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 10px;
37
+ width: 100%;
38
+ }
39
+
40
+ .unreadFilterIcon {
41
+ font-size: 16px;
42
+ color: var(--badge-bg-color);
43
+ flex-shrink: 0;
44
+ }
45
+
46
+ .unreadFilterText {
47
+ font-size: 14px;
48
+ line-height: 1.5;
49
+ color: #333333;
50
+ }
51
+
52
+ .unreadFilterButton {
53
+ background: none;
54
+ border: none;
55
+ color: var(--badge-bg-color);
56
+ font-size: 14px;
57
+ font-weight: 500;
58
+ text-decoration: underline;
59
+ cursor: pointer;
60
+ padding: 4px 8px;
61
+ margin-left: 4px;
62
+ min-height: 32px;
63
+ min-width: 32px;
64
+ transition: all 0.2s ease;
65
+ }
66
+
67
+ .unreadFilterButton:hover {
68
+ background-color: rgba(89, 125, 180, 0.1);
69
+ text-decoration: none;
70
+ }
71
+
72
+ .unreadFilterButton:focus {
73
+ outline: 2px solid var(--badge-bg-color);
74
+ outline-offset: 2px;
75
+ border-radius: 2px;
76
+ }
77
+
78
+ /* Mobile responsiveness */
79
+ @media (max-width: 768px) {
80
+ .unreadFilterBanner {
81
+ flex-direction: column;
82
+ align-items: flex-start;
83
+ padding: 12px;
84
+ }
85
+
86
+ .unreadFilterContent {
87
+ flex-direction: column;
88
+ align-items: flex-start;
89
+ gap: 8px;
90
+ }
91
+
92
+ .unreadFilterText {
93
+ font-size: 13px;
94
+ }
95
+ }
96
+