watercooler 0.0.5 → 0.0.7
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/package.json +1 -1
- package/public/app.js +921 -259
- package/public/index.html +7 -7
package/public/index.html
CHANGED
|
@@ -538,7 +538,7 @@
|
|
|
538
538
|
transform: translateY(-50%) translateY(0);
|
|
539
539
|
}
|
|
540
540
|
|
|
541
|
-
/*
|
|
541
|
+
/* Desk dialog - full screen on mobile */
|
|
542
542
|
.house-dialog-content {
|
|
543
543
|
width: 100%;
|
|
544
544
|
max-width: 100%;
|
|
@@ -632,7 +632,7 @@
|
|
|
632
632
|
}
|
|
633
633
|
}
|
|
634
634
|
|
|
635
|
-
/*
|
|
635
|
+
/* Desk Dialog */
|
|
636
636
|
.house-dialog {
|
|
637
637
|
display: none;
|
|
638
638
|
position: fixed;
|
|
@@ -650,7 +650,7 @@
|
|
|
650
650
|
display: flex;
|
|
651
651
|
}
|
|
652
652
|
|
|
653
|
-
/* Desktop override for
|
|
653
|
+
/* Desktop override for desk dialog */
|
|
654
654
|
@media (min-width: 769px) {
|
|
655
655
|
.house-dialog {
|
|
656
656
|
align-items: center;
|
|
@@ -665,7 +665,7 @@
|
|
|
665
665
|
}
|
|
666
666
|
}
|
|
667
667
|
|
|
668
|
-
/* Desktop
|
|
668
|
+
/* Desktop desk dialog styles */
|
|
669
669
|
@media (min-width: 769px) {
|
|
670
670
|
.house-dialog-content {
|
|
671
671
|
background: rgba(255, 255, 255, 0.15);
|
|
@@ -681,7 +681,7 @@
|
|
|
681
681
|
}
|
|
682
682
|
}
|
|
683
683
|
|
|
684
|
-
/* Base
|
|
684
|
+
/* Base desk dialog styles (shared) */
|
|
685
685
|
.house-dialog-content {
|
|
686
686
|
background: rgba(255, 255, 255, 0.15);
|
|
687
687
|
backdrop-filter: blur(20px);
|
|
@@ -820,12 +820,12 @@
|
|
|
820
820
|
</div>
|
|
821
821
|
</div>
|
|
822
822
|
|
|
823
|
-
<!--
|
|
823
|
+
<!-- Desk Dialog - Shows messages with specific agent -->
|
|
824
824
|
<div class="house-dialog" id="house-dialog">
|
|
825
825
|
<div class="house-dialog-content">
|
|
826
826
|
<div class="house-dialog-header">
|
|
827
827
|
<h2 id="house-dialog-title">Messages</h2>
|
|
828
|
-
<button class="close-btn" onclick="
|
|
828
|
+
<button class="close-btn" onclick="closeDeskDialog()">×</button>
|
|
829
829
|
</div>
|
|
830
830
|
<div class="house-dialog-tabs">
|
|
831
831
|
<button class="tab-btn active" id="tab-received" onclick="switchTab('received')">
|