xmpp.chapril.org-conversejs/sass/_core.scss

641 lines
15 KiB
SCSS
Raw Normal View History

@mixin fade-in {
2018-01-04 13:10:35 +01:00
opacity: 0; /* make things invisible upon start */
@include animation-name(fadein);
@include animation-fill-mode(forwards);
2018-01-04 13:10:35 +01:00
@include animation-duration(0.75s);
@include animation-timing-function(ease);
}
body.converse-fullscreen {
margin: 0;
background-color: var(--global-background-color);
}
#conversejs-bg {
.converse-brand {
display: flex;
justify-content: space-between;
margin-top: 15vh;
@include animation-name(fadein);
@include animation-fill-mode(forwards);
@include animation-duration(5s);
@include animation-timing-function(ease);
2018-09-06 21:03:23 +02:00
}
.converse-brand__padding {
@include make-col-ready();
@include media-breakpoint-up(md) {
@include make-col(4);
}
@include media-breakpoint-up(lg) {
@include make-col(3);
}
@include media-breakpoint-up(xl) {
@include make-col(2);
}
padding: 0;
2018-09-06 21:03:23 +02:00
}
.converse-brand__heading {
@include make-col-ready();
@include media-breakpoint-up(md) {
font-size: 4em;
@include make-col(8);
}
@include media-breakpoint-up(lg) {
font-size: 5em;
@include make-col(9);
}
@include media-breakpoint-up(xl) {
font-size: 6em;
@include make-col(10);
}
padding: 0;
display: flex;
justify-content: center;
margin: auto;
svg {
margin-top: 0.3em;
}
}
2019-01-01 12:18:02 +01:00
.converse-brand__text {
color: #ffffff;
font-family: var(--branding-font);
font-weight: normal;
text-align: center;
font-size: 140%;
margin-left: 0.2em;
.byline {
margin: 0;
font-family: var(--heading-font);
font-size: 0.3em;
opacity: 0.55;
margin-bottom: 2em;
margin-left: -2.7em;
word-spacing: 5px;
}
}
}
#conversejs-bg, #conversejs {
.subdued {
opacity: 0.35;
2018-09-06 21:03:23 +02:00
}
}
2018-05-14 13:27:10 +02:00
#conversejs {
bottom: 0;
height: 100%;
position: fixed;
2018-01-29 15:03:10 +01:00
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
color: var(--text-color);
font-family: "Helvetica", "Arial", sans-serif;
font-size: var(--font-size);
direction: ltr;
z-index: 1031; // One more than bootstrap navbar
textarea:disabled {
background-color: #EEE !important;
}
.nopadding {
padding: 0 !important;
}
&.converse-overlayed {
> .row {
flex-direction: row-reverse;
}
}
2018-06-01 12:37:14 +02:00
&.converse-fullscreen,
&.converse-mobile {
.converse-chatboxes {
width: 100vw;
2018-07-20 14:07:33 +02:00
left: -15px; // Hack due to padding added by bootstrap
}
}
2018-06-01 12:37:14 +02:00
&.converse-overlayed {
height: 3em;
}
.brand-heading-container {
text-align: center;
}
2018-05-14 13:27:10 +02:00
.brand-heading {
display: inline-flex;
flex-direction: row;
align-items: flex-start;
2019-01-01 12:05:46 +01:00
font-family: var(--branding-font);
2019-01-03 10:57:04 +01:00
color: var(--link-color);
margin-bottom: 1em;
.brand-name {
color: var(--link-color);
display: flex;
flex-direction: column;
align-items: center;
margin-top: -0.5em;
}
.brand-name__text {
font-size: 120%;
vertical-align: text-bottom;
}
.byline {
margin: 0;
font-family: var(--heading-font);
font-size: 0.25em;
opacity: 0.55;
margin-left: -4em;
word-spacing: 5px;
margin-top: -15px;
}
2019-01-03 10:57:04 +01:00
.converse-svg-logo {
color: var(--link-color);
height: 1.5em;
margin-right: 0.25em;
margin-bottom: -0.25em;
.cls-1 {
isolation: isolate;
}
.cls-2 {
opacity: 0.5;
mix-blend-mode: multiply;
}
.cls-3 {
fill: var(--link-color);
}
.cls-4 {
fill: var(--link-color);
}
}
}
.brand-heading--inverse {
.converse-svg-logo {
margin-bottom: 0em;
}
2018-05-14 13:27:10 +02:00
}
.popover {
position: fixed;
}
.converse-chatboxes {
2018-03-25 11:38:22 +02:00
z-index: 1031; // One more than bootstrap navbar
position: fixed;
bottom: 0;
right: 0;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: var(--subdued-color);
}
::-moz-placeholder { /* Firefox 19+ */
color: var(--subdued-color);
}
:-ms-input-placeholder { /* IE 10+ */
color: var(--subdued-color);
}
:-moz-placeholder { /* Firefox 18- */
color: var(--subdued-color);
}
::placeholder {
color: var(--subdued-color);
}
::selection {
background-color: var(--highlight-color);
}
::-moz-selection {
background-color: var(--highlight-color);
}
@media screen and (max-width: $mobile-portrait-length) {
margin: 0;
right: 10px;
left: 10px;
bottom: 5px;
}
@media screen and (max-height: $mobile-landscape-height) {
margin: 0;
right: 10px;
left: 10px;
bottom: 5px;
}
ul li { height: auto; }
div, span, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, em, img, strong, dl, dt, dd, ol, ul, li,
fieldset, form, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, details,
embed, figure, figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline;
}
textarea,
input[type=submit], input[type=button],
input[type=text], input[type=password],
button {
font-size: var(--font-size);
padding: 0.25em;
min-height: 0;
}
strong {
font-weight: 700;
}
em {
font-style: italic;
}
ol, ul {
list-style: none;
}
li {
height: 10px;
}
ul, ol, dl {
font: inherit;
margin: 0;
}
2018-06-12 17:01:10 +02:00
a, a:visited, a:not([href]):not([tabindex]) {
text-decoration: none;
color: var(--link-color);
text-shadow: none;
2018-06-12 17:01:10 +02:00
&:hover {
color: var(--link-color-darken-20-percent);
2018-06-12 17:01:10 +02:00
text-decoration: none;
text-shadow: none;
}
2018-09-04 11:39:27 +02:00
&.fa, &.far, &.fas {
color: var(--subdued-color);
&:hover {
color: var(--gray-color);
}
}
}
svg {
border-radius: var(--chatbox-border-radius);
}
2018-09-04 11:39:27 +02:00
.fa, .far, .fas {
color: var(--subdued-color);
}
2018-09-04 11:39:27 +02:00
.fa:hover, .far:hover, .fas:hover {
color: var(--gray-color);
}
2018-03-05 18:43:43 +01:00
.modal {
background-color: rgba(0, 0, 0, 0.4);
.modal-body {
p {
padding: 0.25rem 0;
}
}
2018-11-12 12:21:17 +01:00
.modal-footer {
justify-content: flex-start;
}
2018-03-05 18:43:43 +01:00
}
2018-02-19 16:05:29 +01:00
.selected {
color: var(--link-color) !important;
2018-02-19 16:05:29 +01:00
}
.circle {
border-radius: 50%;
}
.badge {
line-height: 1;
font-weight: normal;
font-size: 90%;
}
.btn {
2018-05-14 13:27:10 +02:00
font-weight: normal;
color: #fff;
2018-09-04 11:39:27 +02:00
.fa, .far, .fas {
color: #fff;
margin-right: 0.5em;
}
}
.no-text-select {
-webkit-touch-callout: none;
@include user-select(none);
}
2016-11-30 10:45:43 +01:00
@keyframes colorchange-chatmessage {
0% {background-color: rgba(141, 216, 174, 1);}
25% {background-color: rgba(141, 216, 174, 0.75);}
50% {background-color: rgba(141, 216, 174, 0.5);}
75% {background-color: rgba(141, 216, 174, 0.25);}
100% {background-color: transparent;}
}
@-webkit-keyframes colorchange-chatmessage {
0% {background-color: rgba(141, 216, 174, 1);}
25% {background-color: rgba(141, 216, 174, 0.75);}
50% {background-color: rgba(141, 216, 174, 0.5);}
75% {background-color: rgba(141, 216, 174, 0.25);}
100% {background-color: transparent;}
}
@keyframes colorchange-chatmessage-muc {
0% {background-color: rgba(255, 181, 162, 1);}
25% {background-color: rgba(255, 181, 162, 0.75);}
50% {background-color: rgba(255, 181, 162, 0.5);}
75% {background-color: rgba(255, 181, 162, 0.25);}
100% {background-color: transparent;}
}
@-webkit-keyframes colorchange-chatmessage-muc {
0% {background-color: rgba(255, 181, 162, 1);}
25% {background-color: rgba(255, 181, 162, 0.75);}
50% {background-color: rgba(255, 181, 162, 0.5);}
75% {background-color: rgba(255, 181, 162, 0.25);}
100% {background-color: transparent;}
}
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
}
@-webkit-keyframes fadeOut {
0% { opacity: 1; visibility: visible; }
100% { opacity: 0; visibility: hidden; }
}
@keyframes fadeOut {
0% { opacity: 1; visibility: visible; }
100% { opacity: 0; visibility: hidden; }
}
2017-12-20 11:02:01 +01:00
.fade-in {
@include fade-in;
}
2016-11-30 10:45:43 +01:00
.visible {
2017-12-20 11:02:01 +01:00
opacity:0; /* make things invisible upon start */
2016-11-30 10:45:43 +01:00
@include animation-name(fadein);
@include animation-fill-mode(forwards);
2017-12-20 11:02:01 +01:00
@include animation-duration(500ms);
2016-11-30 10:45:43 +01:00
@include animation-timing-function(ease);
}
2017-12-20 11:02:01 +01:00
.hidden {
2018-02-19 16:05:29 +01:00
opacity: 0 !important;
display: none !important;
}
.fade-out {
animation-duration: 1s;
animation-fill-mode: forwards;
animation-name: fadeOut;
animation-timing-function: ease-in-out;
}
.collapsed {
height: 0 !important;
overflow: hidden !important;
padding: 0 !important;
}
2016-11-30 10:45:43 +01:00
.locked {
padding-right: 22px;
}
@include keyframes(spin) {
from {
@include transform(rotate(0deg));
}
to {
@include transform(rotate(359deg));
}
}
.spinner {
@include animation(spin 2s infinite, linear);
2018-11-12 15:40:43 +01:00
width: 1em;
display: block;
text-align: center;
2018-03-07 14:36:19 +01:00
margin: 2em;
font-size: 24px;
}
.left {
float: left;
}
.right {
float: right;
}
.centered {
text-align: center;
display: block;
2018-03-11 16:36:44 +01:00
margin: auto;
}
.hor_centered {
text-align: center;
display: block;
margin: 0 auto;
clear: both;
}
.error {
color: var(--error-color);
}
.info {
color: var(--info-color);
}
.reg-feedback {
font-size: 85%;
margin-bottom: 1em;
}
.reg-feedback,
#converse-login .conn-feedback {
display: block;
text-align: center;
width: 100%;
}
2018-02-19 22:12:50 +01:00
.avatar {
border-radius: var(--avatar-border-radius);
border: var(--avatar-border);
background-color: var(--avatar-background-color);
2018-02-19 22:12:50 +01:00
}
.activated {
display: block !important;
}
2018-02-19 22:12:50 +01:00
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
background-color: var(--primary-color);
}
.list-group-item.active {
background-color: var(--primary-color);
border-color: var(--primary-color-dark);
}
.badge {
text-shadow: none;
}
.badge {
2015-10-29 10:21:31 +01:00
color: white;
}
.btn-primary, .button-primary, .badge-primary {
background-color: var(--primary-color);
border-color: transparent;
&:hover {
background-color: var(--primary-color-dark);
border-color: transparent;
}
&.active {
background-color: var(--primary-color-dark) !important;
border-color: transparent !important;
}
2015-10-29 10:21:31 +01:00
}
.badge-groupchat {
background-color: var(--chatroom-head-color);
border-color: transparent;
&:hover {
background-color: var(--chatroom-head-color-dark);
border-color: transparent;
}
&.active {
background-color: var(--chatroom-head-color-dark) !important;
border-color: transparent !important;
}
}
.btn-info, .badge-info {
background-color: var(--primary-color);
border-color: var(--primary-color);
&:hover {
background-color: var(--primary-color-dark);
border-color: var(--primary-color-dark);
}
}
.button-cancel,
.btn-secondary, .badge-secondary {
color: white;
background-color: var(--secondary-color);
border-color: var(--secondary-color);
&:hover {
background-color: var(--secondary-color-dark);
border-color: var(--secondary-color-dark);
}
}
.btn-warning {
color: white;
background-color: var(--warning-color);
border-color: var(--warning-color);
&:hover {
color: white;
background-color: var(--warning-color-dark);
border-color: var(--warning-color-dark)
}
}
.btn-danger {
color: white;
background-color: var(--danger-color);
border-color: var(--danger-color) !important;
&:hover {
background-color: var(--danger-color-dark);
border-color: var(--danger-color-dark);
}
}
.chat-textarea-chatbox-selected {
border: 1px solid #578308;
margin: 0;
}
.chat-textarea-chatroom-selected {
border: 2px solid var(--link-color);
margin: 0;
}
}
@media screen and (max-width: 575px) {
body {
2018-09-06 21:03:23 +02:00
.converse-brand {
font-size: 3.75em;
2018-05-14 13:27:10 +02:00
}
}
#conversejs:not(.converse-embedded) {
.chatbox {
.chat-body {
border-radius: var(--chatbox-border-radius);
}
}
.flyout {
border-radius: var(--chatbox-border-radius);
}
}
}
2018-01-25 12:36:13 +01:00
@media screen and (min-width: 576px) {
#conversejs .offset-sm-2 {
margin-left: 16.666667%;
}
}
@media screen and (min-width: 768px) {
#conversejs .offset-md-2 {
margin-left: 16.666667%;
}
#conversejs .offset-md-3 {
margin-left: 25%;
}
}
@media screen and (min-width: 992px) {
#conversejs .offset-lg-2 {
margin-left: 16.666667%;
}
#conversejs .offset-lg-3 {
margin-left: 25%;
}
}
@media screen and (min-width: 1200px) {
#conversejs .offset-xl-2 {
margin-left: 16.666667%;
}
}
@media screen and (max-height: 450px) {
#conversejs {
left: 0;
}
}