clay-server 4.0.0-beta.20 → 4.0.0-beta.21
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.
package/lib/public/css/admin.css
CHANGED
|
@@ -651,7 +651,7 @@
|
|
|
651
651
|
}
|
|
652
652
|
|
|
653
653
|
/* --- Session visibility indicator --- */
|
|
654
|
-
.session-
|
|
654
|
+
.session-shared-icon {
|
|
655
655
|
display: inline-flex;
|
|
656
656
|
align-items: center;
|
|
657
657
|
margin-right: 4px;
|
|
@@ -659,7 +659,7 @@
|
|
|
659
659
|
vertical-align: middle;
|
|
660
660
|
}
|
|
661
661
|
|
|
662
|
-
.session-
|
|
662
|
+
.session-shared-icon svg {
|
|
663
663
|
width: 12px;
|
|
664
664
|
height: 12px;
|
|
665
665
|
}
|
|
@@ -1290,8 +1290,8 @@ function renderSessionItem(s, options) {
|
|
|
1290
1290
|
if (s.loop && s.loop.source === "debate") {
|
|
1291
1291
|
textHtml += '<span class="session-debate-icon" title="Debate">' + iconHtml("mic") + '</span>';
|
|
1292
1292
|
}
|
|
1293
|
-
if (store.get('isMultiUserMode') && s.sessionVisibility
|
|
1294
|
-
textHtml += '<span class="session-
|
|
1293
|
+
if (store.get('isMultiUserMode') && s.sessionVisibility === "shared") {
|
|
1294
|
+
textHtml += '<span class="session-shared-icon" title="Shared session" aria-label="Shared session">' + iconHtml("users") + '</span>';
|
|
1295
1295
|
}
|
|
1296
1296
|
textHtml += highlightMatch(s.title || "New Session", searchQuery);
|
|
1297
1297
|
textSpan.innerHTML = textHtml;
|
package/package.json
CHANGED