2017-01-16 22:15:07 +01:00
|
|
|
#converse-embedded-chat,
|
2015-06-04 15:07:03 +02:00
|
|
|
#conversejs {
|
2015-10-27 11:17:55 +01:00
|
|
|
bottom: 0;
|
|
|
|
color: $text-color;
|
|
|
|
direction: ltr;
|
|
|
|
display: block;
|
2017-02-03 14:39:17 +01:00
|
|
|
font-family: "Helvetica", "Arial", sans-serif;
|
2015-06-04 15:07:03 +02:00
|
|
|
font-size: $font-size;
|
2015-10-27 11:17:55 +01:00
|
|
|
height: $bottom-gutter-height;
|
|
|
|
position: fixed;
|
2015-11-04 19:32:08 +01:00
|
|
|
right: 0;
|
2015-06-04 15:07:03 +02:00
|
|
|
width: auto;
|
2016-04-01 12:53:15 +02:00
|
|
|
z-index: 1031; // One more than bootstrap navbar
|
|
|
|
@media screen and (max-height: $mobile-landscape-height) {
|
|
|
|
width: 100%;
|
|
|
|
width: 100vw;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: $mobile-portrait-length) {
|
2015-11-04 19:32:08 +01:00
|
|
|
width: 100%;
|
|
|
|
width: 100vw;
|
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
|
2017-06-14 11:14:42 +02:00
|
|
|
|
|
|
|
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
|
|
|
|
color: $subdued-color;
|
|
|
|
}
|
|
|
|
::-moz-placeholder { /* Firefox 19+ */
|
|
|
|
color: $subdued-color;
|
|
|
|
}
|
|
|
|
:-ms-input-placeholder { /* IE 10+ */
|
|
|
|
color: $subdued-color;
|
|
|
|
}
|
|
|
|
:-moz-placeholder { /* Firefox 18- */
|
|
|
|
color: $subdued-color;
|
|
|
|
}
|
2017-03-19 16:59:48 +01:00
|
|
|
::placeholder {
|
2017-06-14 11:14:42 +02:00
|
|
|
color: $subdued-color;
|
2017-03-19 16:59:48 +01:00
|
|
|
}
|
|
|
|
|
2017-02-28 06:27:30 +01:00
|
|
|
.circle {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
::selection {
|
|
|
|
background-color: $highlight-color;
|
2015-06-04 15:07:03 +02:00
|
|
|
}
|
2015-10-27 11:17:55 +01:00
|
|
|
::-moz-selection {
|
|
|
|
background-color: $highlight-color;
|
2015-06-04 15:07:03 +02:00
|
|
|
}
|
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
.no-text-select {
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
@include user-select(none);
|
|
|
|
}
|
2016-11-30 10:45:43 +01:00
|
|
|
|
|
|
|
@keyframes fadein {
|
|
|
|
0% { opacity: 0 }
|
|
|
|
100% { opacity: 1 }
|
|
|
|
}
|
|
|
|
@-webkit-keyframes fadein {
|
2016-11-30 18:08:23 +01:00
|
|
|
0% { opacity: 0 }
|
|
|
|
100% { opacity: 1 }
|
2016-11-30 10:45:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.visible {
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
@include animation-name(fadein);
|
|
|
|
@include animation-fill-mode(forwards);
|
|
|
|
@include animation-duration(350ms);
|
|
|
|
@include animation-timing-function(ease);
|
|
|
|
}
|
2015-10-27 11:17:55 +01:00
|
|
|
.hidden {
|
2016-11-30 10:45:43 +01:00
|
|
|
opacity: 0;
|
2015-10-27 11:17:55 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2017-07-15 11:03:22 +02:00
|
|
|
.collapsed {
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2016-11-30 10:45:43 +01:00
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
.locked {
|
|
|
|
padding-right: 22px;
|
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
@include keyframes(spin) {
|
|
|
|
from {
|
|
|
|
@include transform(rotate(0deg));
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
@include transform(rotate(359deg));
|
|
|
|
}
|
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
|
2017-06-16 11:31:57 +02:00
|
|
|
.emojione {
|
|
|
|
height: $emoji_height;
|
|
|
|
}
|
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
.spinner {
|
|
|
|
@include animation(spin 2s infinite, linear);
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
2017-04-04 16:22:19 +02:00
|
|
|
margin: 1em;
|
2015-10-27 11:17:55 +01:00
|
|
|
&:before {
|
|
|
|
font-size: 24px;
|
|
|
|
font-family: 'Converse-js' !important;
|
|
|
|
content: "\231b";
|
|
|
|
}
|
|
|
|
}
|
2017-04-04 16:22:19 +02:00
|
|
|
.left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.centered {
|
|
|
|
text-align: center;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
2017-06-14 18:09:22 +02:00
|
|
|
padding: 10% 0;
|
2017-04-04 16:22:19 +02:00
|
|
|
}
|
|
|
|
.hor_centered {
|
|
|
|
text-align: center;
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
clear: both;
|
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
.button-group,
|
|
|
|
.input-button-group {
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
.button-group {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.input-button-group button,
|
|
|
|
.input-button-group input {
|
|
|
|
display: table-cell;
|
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
.error {
|
2017-06-14 11:14:42 +02:00
|
|
|
color: $error-color;
|
2015-10-27 11:17:55 +01:00
|
|
|
}
|
|
|
|
.reg-feedback {
|
|
|
|
font-size: 85%;
|
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
.reg-feedback,
|
|
|
|
#converse-login .conn-feedback {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
|
2015-10-31 19:29:43 +01:00
|
|
|
a.restore-chat {
|
2015-10-27 11:17:55 +01:00
|
|
|
padding: 1px 0 1px 5px;
|
|
|
|
color: $chat-head-text-color;
|
|
|
|
line-height: 15px;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
a.restore-chat:visited {
|
|
|
|
color: $chat-head-text-color;
|
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
.activated {
|
|
|
|
display: block !important;
|
|
|
|
}
|
2015-10-29 08:12:13 +01:00
|
|
|
.pure-button {
|
|
|
|
border-radius: $chatbox-border-radius;
|
|
|
|
}
|
2015-10-29 10:55:34 +01:00
|
|
|
.button-primary {
|
2015-10-29 10:21:31 +01:00
|
|
|
color: white;
|
2015-10-29 10:55:34 +01:00
|
|
|
background-color: $primary-color;
|
2015-10-29 10:21:31 +01:00
|
|
|
}
|
2015-10-29 10:55:34 +01:00
|
|
|
.button-secondary {
|
|
|
|
color: white;
|
|
|
|
background-color: $secondary-color;
|
|
|
|
}
|
|
|
|
.button-cancel {
|
2015-10-29 10:21:31 +01:00
|
|
|
color: white;
|
2017-06-17 23:48:46 +02:00
|
|
|
background-color: $text-color;
|
2015-10-29 10:21:31 +01:00
|
|
|
}
|
2015-10-29 08:12:13 +01:00
|
|
|
|
2015-10-28 08:33:50 +01:00
|
|
|
form {
|
2015-10-28 22:07:29 +01:00
|
|
|
&.pure-form.converse-form {
|
2015-10-29 08:12:13 +01:00
|
|
|
background: white;
|
2017-07-05 11:59:55 +02:00
|
|
|
padding: 1em;
|
2015-10-29 08:12:13 +01:00
|
|
|
legend {
|
|
|
|
color: $text-color;
|
|
|
|
}
|
2015-10-28 22:07:29 +01:00
|
|
|
label {
|
|
|
|
margin-top: 1em;
|
2017-02-28 08:32:00 +01:00
|
|
|
font-size: $font-size-large;
|
2015-10-28 22:07:29 +01:00
|
|
|
}
|
2015-10-29 08:12:13 +01:00
|
|
|
input[type=text],
|
|
|
|
input[type=password],
|
|
|
|
input[type=number],
|
|
|
|
input[type=button],
|
|
|
|
input[type=submit] {
|
2017-02-03 13:26:14 +01:00
|
|
|
padding: 0.5em;
|
2015-10-29 08:12:13 +01:00
|
|
|
}
|
|
|
|
input[type=button],
|
|
|
|
input[type=submit] {
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
2017-02-28 08:32:00 +01:00
|
|
|
margin: 0.5em 0;
|
|
|
|
border: none;
|
2015-10-29 08:12:13 +01:00
|
|
|
}
|
|
|
|
input.error {
|
2017-06-14 11:14:42 +02:00
|
|
|
border: 1px solid $error-color;
|
2015-10-29 08:12:13 +01:00
|
|
|
color: $text-color;
|
2015-10-28 22:07:29 +01:00
|
|
|
}
|
|
|
|
.form-help {
|
|
|
|
color: gray;
|
|
|
|
font-size: 85%;
|
2015-10-31 17:18:31 +01:00
|
|
|
padding-top: 0.5em;
|
2015-10-28 22:07:29 +01:00
|
|
|
&:hover {
|
|
|
|
color: $text-color;
|
|
|
|
}
|
2015-10-28 08:33:50 +01:00
|
|
|
}
|
2015-10-27 11:17:55 +01:00
|
|
|
}
|
2017-01-16 22:15:07 +01:00
|
|
|
&.pure-form.converse-centered-form {
|
|
|
|
text-align: center;
|
2017-02-03 13:26:14 +01:00
|
|
|
width: 100%;
|
2017-01-16 22:15:07 +01:00
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
}
|
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
.chat-textarea-chatbox-selected {
|
|
|
|
border: 1px solid #578308;
|
2015-06-04 15:07:03 +02:00
|
|
|
margin: 0;
|
|
|
|
}
|
2015-10-27 11:17:55 +01:00
|
|
|
.chat-textarea-chatroom-selected {
|
|
|
|
border: 2px solid $link-color;
|
|
|
|
margin: 0;
|
2015-06-04 15:07:03 +02:00
|
|
|
}
|
|
|
|
|
2015-10-27 11:17:55 +01:00
|
|
|
.dropdown dt,
|
|
|
|
.dropdown ul {
|
2015-10-24 21:52:54 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2015-09-24 19:41:35 +02:00
|
|
|
}
|
2015-06-04 15:07:03 +02:00
|
|
|
}
|