123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704 |
- #conversejs {
- .chatbox-navback {
- display: none;
- }
- .flyout {
- border-radius: $chatbox-border-radius;
- position: absolute;
- @media screen and (max-height: $mobile-landscape-height) {
- border-radius: 0;
- }
- @media screen and (max-width: $mobile-portrait-length) {
- border-radius: 0;
- }
- @media screen and (max-height: $mobile-landscape-height) {
- bottom: 0;
- }
- @media screen and (max-width: $mobile-portrait-length) {
- bottom: 0;
- }
- }
- .chatbox-btn {
- border-radius: 25%;
- border: none;
- cursor: pointer;
- font-size: $chatbox-button-size;
- margin: 0 0.2em;
- padding: 0 0 0 0.5em;
- text-decoration: none;
- &:active {
- position: relative;
- top: 1px;
- }
- }
- .chat-head {
- flex-wrap: nowrap;
- color: #ffffff;
- font-size: 100%;
- margin: 0;
- padding: 0.5em;
- position: relative;
- &.chat-head-chatbox {
- background-color: $chat-head-color;
- }
- .avatar {
- height: 36px;
- width: 36px;
- margin-right: 0.5em;
- }
- .chatbox-title {
- .chatroom-description {
- font-size: 80%;
- }
- }
- .chatbox-buttons {
- flex-direction: row-reverse;
- @include make-col-ready();
- @include make-col(3);
- padding: 0;
- }
- .user-custom-message {
- color: lighten($chat-head-color, 50%);
- font-size: 75%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin: 0;
- padding-top: 0.2em;
- }
- a, a:visited, a:hover, a:not([href]):not([tabindex]) {
- &.chatbox-btn {
- &.fa,
- &.fas,
- &.far {
- color: white;
- &.button-on:before {
- padding: 0.2em;
- background-color: $chat-head-text-color;
- color: $chat-head-color;
- }
- }
- }
- }
- .chatbox-btn {
- color: white;
- &.fa, &.far, &.fas {
- color: white;
- }
- &:active {
- position: relative;
- top: 1px;
- }
- &.button-on:before {
- border-radius: 5%;
- background-color: $chat-head-text-color;
- color: $chat-head-color;
- }
- }
- }
- .chatbox {
- text-align: left;
- margin: 0 $chat-gutter;
- img {
- &.emoji {
- height: 1.2em;
- width: 1.2em;
- margin: 0 .05em 0 .1em;
- vertical-align: -0.1em;
- }
- }
- @media screen and (max-height: $mobile-landscape-height) {
- margin: 0;
- width: $mobile-chat-width;
- }
- @media screen and (max-width: $mobile-portrait-length) {
- margin: 0;
- width: $mobile-chat-width;
- }
- .box-flyout {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- background-color: $chat-head-color;
- box-shadow: 1px 3px 5px 3px rgba(0, 0, 0, 0.4);
- z-index: 1;
- overflow-y: hidden;
- width: 100%;
- @media screen and (max-height: $mobile-landscape-height) {
- height: $mobile-chat-height;
- width: $mobile-chat-width;
- height: 100vh;
- }
- @media screen and (max-width: $mobile-portrait-length) {
- height: $mobile-chat-height;
- width: $mobile-chat-width;
- height: 100vh;
- }
- }
- .chat-title {
- font-family: $heading-font;
- color: white;
- display: block;
- line-height: $line-height-large;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- a {
- color: $chat-head-text-color;
- width: 100%;
- }
- }
- .chat-body {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- height: 100%;
- background-color: $chat-head-color;
- border-bottom-left-radius: $chatbox-border-radius;
- border-bottom-right-radius: $chatbox-border-radius;
- @media screen and (max-height: $mobile-landscape-height) {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- @media screen and (max-width: $mobile-portrait-length) {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- border-top: 0;
- p {
- color: $text-color;
- font-size: $message-font-size;
- margin: 0;
- padding: 5px;
- }
- }
- .new-msgs-indicator {
- position: relative;
- width: 100%;
- cursor: pointer;
- background-color: $chat-head-color;
- color: $light-background-color;
- padding: 0.5em;
- font-size: 0.9em;
- text-align: center;
- z-index: 20;
- white-space: nowrap;
- margin-bottom: 0.25em;
- }
- .chat-content {
- height: 100%;
- font-size: $message-font-size;
- color: $text-color;
- overflow-y: auto;
- border: 0;
- background-color: #ffffff;
- line-height: 1.3em;
- video {
- width: 100%
- }
- progress {
- margin: 0.5em 0;
- width: 100%
- }
- }
- .chat-content-sendbutton {
- height: calc(100% - #{$chat-textarea-height + $send-button-height + 2*$send-button-margin});
- }
- .dropdown { /* status dropdown styles */
- background-color: $light-background-color;
- dd {
- margin: 0;
- padding: 0;
- position: relative;
- }
- }
- .sendXMPPMessage {
- -moz-background-clip: padding;
- -webkit-background-clip: padding-box;
- @include border-bottom-radius($chatbox-border-radius);
- background-clip: padding-box;
- background-color: white;
- border: 0;
- margin: 0;
- padding: 0;
- @media screen and (max-height: $mobile-landscape-height) {
- width: 100%;
- }
- @media screen and (max-width: $mobile-portrait-length) {
- width: 100%;
- }
- .suggestion-box__results {
- &:after {
- display: none;
- }
- }
- .spoiler-hint {
- width: 100%;
- }
- .chat-textarea {
- color: $chat-textarea-color;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- @include border-bottom-radius($chatbox-border-radius);
- padding: 0.5em;
- width: 100%;
- border: none;
- min-height: $chat-textarea-height;
- margin-bottom: -4px; // Not clear why this is necessar :(
- resize: none;
- &.spoiler {
- height: 42px;
- }
- &.correcting {
- background-color: lighten($chat-head-color, 50%);
- }
- }
- .send-button {
- position: absolute;
- left: $send-button-margin;
- @include calc(width, '100% - #{2*$send-button-margin}');
- background-color: $chat-head-color;
- color: $inverse-link-color;
- font-size: 80%;
- height: $send-button-height;
- bottom: -$send-button-height - $send-button-margin;
- }
- .chat-toolbar {
- box-sizing: border-box;
- margin: 0;
- padding: 0.25em;
- display: block;
- border-top: 4px solid $chat-head-color;
- background-color: white;
- color: $chat-head-color;
- .fa, .fa:hover,
- .far, .far:hover,
- .fas, .fas:hover {
- color: $chat-head-color;
- font-size: $font-size-large;
- }
- .unencrypted a,
- .unencrypted {
- color: $text-color;
- .toolbar-menu {
- a {
- color: $link-color;
- }
- }
- }
- .unverified a,
- .unverified {
- color: #cf5300;
- }
- .private a,
- .private {
- color: #4b7003;
- }
- .toggle-occupants {
- float: right;
- }
- li {
- cursor: pointer;
- display: inline-block;
- list-style: none;
- padding: 0 0.5em;
- &:hover {
- cursor: pointer;
- }
- .toolbar-menu {
- background-color: #fff;
- bottom: 2rem;
- box-shadow: -1px -1px 2px 0 rgba(0, 0, 0, 0.4);
- height: auto;
- margin-bottom: 0;
- min-width: 21rem;
- position: absolute;
- right: 0;
- top: auto;
- z-index: $zindex-dropdown;
- &.otr-menu {
- left: -6em;
- min-width: 15rem;
- &.show {
- display: flex;
- flex-direction: column;
- }
- }
- a {
- color: $link-color;
- }
- .emoji-picker-container {
- background: white;
- }
- ul {
- &.emoji-picker {
- overflow-y: scroll;
- overflow-x: hidden;
- padding: 0.5em;
- }
- li {
- margin-left: 0;
- cursor: pointer;
- list-style: none;
- position: relative;
- &.insert-emoji {
- padding: 0.2em;
- &.picked {
- background-color: $highlight-color;
- }
- &:hover {
- background-color: $highlight-color;
- }
- a {
- font-size: $font-size-huge;
- &:hover {
- color: #8f2831;
- }
- }
- }
- }
- }
- }
- &.toggle-smiley {
- a.toggle-smiley {
- padding: 0;
- }
- .emoji-toolbar {
- box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.4);
- .emoji-category-picker {
- padding-top: 0.5em;
- ul {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- }
- .emoji-category-picker,
- .emoji-skintone-picker {
- li {
- padding: 0.25em;
- font-size: $font-size-huge;
- &:hover {
- background-color: $highlight-color;
- }
- }
- }
- }
- }
- &.toggle-otr {
- ul {
- z-index: 99;
- li {
- &:hover {
- background-color: $highlight-color;
- }
- display: block;
- padding: 7px;
- a {
- display: block;
- }
- }
- }
- }
- }
- }
- }
- .dragresize {
- background: transparent;
- border: 0;
- margin: 0;
- position: absolute;
- top: 0;
- z-index: 20;
- &-top {
- cursor: n-resize;
- height: 5px;
- width: 100%;
- }
- &-left {
- cursor: w-resize;
- width: 5px;
- height: 100%;
- left: 0;
- }
- &-topleft {
- cursor: nw-resize;
- width: 15px;
- height: 15px;
- top: 0;
- left: 0;
- }
- }
- }
- }
- /* ******************* Overlay and embedded styles *************************** */
- #conversejs.converse-embedded {
- .chat-textarea {
- max-height: $fullpage-max-chat-textarea-height;
- }
- }
- #conversejs.converse-embedded,
- #conversejs.converse-overlayed {
- .chat-head {
- border-top-left-radius: $chatbox-border-radius;
- border-top-right-radius: $chatbox-border-radius;
- @media screen and (max-height: $mobile-landscape-height) {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- @media screen and (max-width: $mobile-portrait-length) {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- .chatbox-title {
- @include make-col(8);
- }
- .chatbox-buttons {
- @include make-col(4);
- }
- }
- .emoji-picker {
- height: $embedded-emoji-picker-height;
- }
-
- .chatbox {
- min-width: $overlayed-chat-width !important;
- width: $overlayed-chat-width;
- .box-flyout {
- min-width: $overlayed-chat-width !important;
- width: $overlayed-chat-width;
- .chat-body {
- height: calc(100% - #{$overlayed-chat-head-height});
- }
- }
- }
- }
- #conversejs.converse-overlayed {
- .flyout {
- bottom: $overlayed-chatbox-hover-height;
- }
- .box-flyout {
- height: $overlayed-chat-height;
- min-height: $overlayed-chat-height/2;
- }
- .chat-head {
- height: $overlayed-chat-head-height;
- }
- .chat-textarea {
- max-height: $overlayed-max-chat-textarea-height;
- }
- .emoji-picker {
- height: $overlayed-emoji-picker-height;
- }
- .chatbox {
- form.sendXMPPMessage {
- .chat-toolbar {
- li {
- .toolbar-menu {
- min-width: 235px;
- ul {
- &.emoji-toolbar {
- width: 100%;
- .emoji-category {
- float: left;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- @include media-breakpoint-down(sm) {
- #conversejs.converse-overlayed {
- > .row {
- flex-direction: column;
- &.no-gutters {
- margin: -1em;
- }
- }
- }
- }
- /* ******************* Fullpage styles *************************** */
- #conversejs.converse-fullscreen {
- .flyout {
- border-radius: 0;
- border-top: 0.8em solid $chat-head-color;
- border: $flyout-padding solid $chat-head-color;
- bottom: 0;
- }
- .chatbox-btn {
- font-size: $fullpage-chatbox-button-size;
- margin: 0 0.3em;
- }
- .chat-head {
- height: $fullpage-chat-head-height;
- font-size: $font-size-huge;
- padding: 0;
- .user-custom-message {
- font-size: 70%;
- height: auto;
- line-height: $line-height;
- }
- .chatbox-title {
- @include make-col(10);
- }
- .chatbox-buttons {
- @include make-col(2);
- }
- }
- .chat-textarea {
- max-height: $fullpage-max-chat-textarea-height;
- }
- .emoji-picker {
- height: $fullpage-emoji-picker-height;
- }
- .chatbox {
- width: 100%;
- height: 100%;
- margin: 0;
- @include make-col-ready();
- @include media-breakpoint-up(md) {
- @include make-col(8);
- }
- @include media-breakpoint-up(lg) {
- @include make-col(9);
- }
- @include media-breakpoint-up(xl) {
- @include make-col(10);
- }
- .box-flyout {
- background-color: $chat-head-color;
- box-shadow: none;
- height: $fullpage-chat-height;
- min-height: $fullpage-chat-height/2;
- width: $fullpage-chat-width;
- overflow: hidden;
- }
- .chat-body {
- height: calc(100% - #{$fullpage-chat-head-height});
- background-color: $chat-head-color;
- border-top-left-radius: $chatbox-border-radius;
- border-top-right-radius: $chatbox-border-radius;
- }
- .chat-content {
- border-top-left-radius: $chatbox-border-radius;
- border-top-right-radius: $chatbox-border-radius;
- }
- .chat-title {
- font-size: $font-size-huge;
- line-height: $line-height-huge;
- }
- .sendXMPPMessage {
- ul {
- width: 100%;
- }
- .toggle-smiley {
- ul {
- &.emoji-toolbar {
- .emoji-category-picker {
- margin-right: 5em;
- }
- .emoji-category {
- padding-left: 10px;
- padding-right: 10px;
- }
- }
- }
- }
- }
- }
- }
- @include media-breakpoint-down(sm) {
- #conversejs:not(.converse-embedded) {
- > .row {
- flex-direction: row-reverse;
- }
- #converse-login-panel {
- .converse-form {
- padding: 3em 2em 3em;
- }
- }
- .chatbox {
- width: calc(100% - 50px);
- .row {
- .box-flyout {
- left: 50px;
- bottom: 0;
- height: 100vh;
- box-shadow: none;
- }
- }
- }
- }
- #conversejs.converse-mobile,
- #conversejs.converse-overlayed,
- #conversejs.converse-embedded,
- #conversejs.converse-fullscreen {
- .chatbox {
- .box-flyout {
- .chatbox-navback {
- display: flex;
- @include make-col(2);
- .fa-arrow-left {
- &:before {
- color: white;
- }
- }
- }
- .chatbox-title {
- @include make-col(7);
- }
- .chatbox-buttons {
- @include make-col(3);
- }
- }
- }
- }
- }
|