Index: openacs-4/packages/chat/www/resources/chat.css =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/chat/www/resources/Attic/chat.css,v diff -u -r1.8 -r1.9 --- openacs-4/packages/chat/www/resources/chat.css 9 Nov 2018 16:48:36 -0000 1.8 +++ openacs-4/packages/chat/www/resources/chat.css 12 Nov 2018 16:35:32 -0000 1.9 @@ -6,6 +6,7 @@ #xowiki-chat-container { height: 70vh; width: 100%; + position: relative; } /* Users and messages container */ @@ -18,6 +19,21 @@ background-color: white; } +#xowiki-chat-fs { + height: 100vh; + width: 100%; + overflow: hidden; + display: flex; + background-color: white; + + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + zIndex: 999; +} + /* Users block */ #xowiki-chat-users { border: 1px solid #ddd; @@ -129,11 +145,32 @@ border-radius: 8px; } +/* Full screen trigger */ +.xowiki-chat-trigger-fs-block { + padding: 10px; +} + +.xowiki-chat-trigger-fs-link { + text-decoration: none; +} + +.xowiki-chat-trigger-fs-link:hover { + text-decoration: none !important; +} + +.xowiki-chat-trigger-fs-pic:hover { + background-color: white; + border: 1px solid white; +} + /* Responsive design */ @media (max-width: 1000px) { #xowiki-chat { flex-direction: column; } + #xowiki-chat-fs { + flex-direction: column; + } #xowiki-chat-users { order: 1; border-left: 1px solid #ddd;