123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- #conversejs {
- .flyout {
- border-radius: $chatbox-border-radius;
- bottom: $chatbox-hover-height;
- 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%;
- height: $chat-head-height;
- 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-buttons {
- flex-direction: row-reverse;
- @include make-col-ready();
- @include make-col(4);
- padding: 0;
- }
- .user-custom-message {
- color: white;
- font-size: 75%;
- font-style: italic;
- 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 {
- color: white;
- &.button-on:before {
- padding: 0.2em;
- background-color: $chat-head-text-color;
- color: $chat-head-color;
- }
- }
- }
- }
- .chatbox-btn {
- color: white;
- &.fa {
- 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;
- @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);
- height: $chat-height;
- min-height: $chat-height/2;
- z-index: 1;
- overflow-y: scroll;
- 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%;
- }
- .spoiler-hint {
- width: 100%;
- }
- .chat-textarea {
- 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;
- max-height: $max-chat-textarea-height;
- margin-bottom: -4px; // Not clear why this is necessar :(
- &.spoiler {
- height: 42px;
- }
- }
- .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: 8px solid $chat-head-color;
- background-color: white;
- color: $chat-head-color;
- .fa, .fa: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);
- margin-bottom: 0;
- min-width: 20rem;
- 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;
- }
- ul {
- &.emoji-picker {
- height: $emoji-picker-height;
- overflow: scroll;
- padding: 0.5em;
- }
- li {
- margin-left: 0;
- cursor: pointer;
- list-style: none;
- position: relative;
- &.emoji-skintone {
- }
- &.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.2em;
- 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;
- }
- }
- }
- }
- #conversejs.converse-fullscreen {
- .chatbox-btn {
- font-size: $fullpage-chatbox-button-size;
- }
- .chat-head {
- .chatbox-buttons {
- @include make-col(3);
- }
- }
- }
- @media screen and (max-width: 767px) {
- #conversejs:not(.converse-embedded) {
- > .row {
- flex-direction: row-reverse;
- }
- #converse-login-panel {
- .converse-form {
- padding: 3em 2em 3em;
- }
- }
- .sidebar {
- display: block;
- }
- .chatbox {
- width: calc(100% - 50px);
- .row {
- .box-flyout {
- left: 50px;
- bottom: 0;
- height: 100vh;
- box-shadow: none;
- }
- }
- }
- }
- }
|