|
@@ -1,9 +1,9 @@
|
|
@mixin fade-in {
|
|
@mixin fade-in {
|
|
opacity: 0; /* make things invisible upon start */
|
|
opacity: 0; /* make things invisible upon start */
|
|
- @include animation-name(fadein);
|
|
|
|
- @include animation-fill-mode(forwards);
|
|
|
|
- @include animation-duration(0.75s);
|
|
|
|
- @include animation-timing-function(ease);
|
|
|
|
|
|
+ animation-name: fadein;
|
|
|
|
+ animation-fill-mode: forwards;
|
|
|
|
+ animation-duration: 0.75s;
|
|
|
|
+ animation-timing-function: ease;
|
|
}
|
|
}
|
|
|
|
|
|
body.converse-fullscreen {
|
|
body.converse-fullscreen {
|
|
@@ -16,10 +16,10 @@ body.converse-fullscreen {
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
margin-top: 15vh;
|
|
margin-top: 15vh;
|
|
- @include animation-name(fadein);
|
|
|
|
- @include animation-fill-mode(forwards);
|
|
|
|
- @include animation-duration(5s);
|
|
|
|
- @include animation-timing-function(ease);
|
|
|
|
|
|
+ animation-name: fadein;
|
|
|
|
+ animation-fill-mode: forwards;
|
|
|
|
+ animation-duration: 5s;
|
|
|
|
+ animation-timing-function: ease;
|
|
}
|
|
}
|
|
|
|
|
|
.converse-brand__padding {
|
|
.converse-brand__padding {
|
|
@@ -121,9 +121,9 @@ body.converse-fullscreen {
|
|
height: 3em;
|
|
height: 3em;
|
|
}
|
|
}
|
|
&.converse-embedded {
|
|
&.converse-embedded {
|
|
- @include box-sizing(border-box);
|
|
|
|
|
|
+ box-sizing: border-box;
|
|
*, *:before, *:after {
|
|
*, *:before, *:after {
|
|
- @include box-sizing(border-box);
|
|
|
|
|
|
+ box-sizing: border-box;
|
|
}
|
|
}
|
|
bottom: auto;
|
|
bottom: auto;
|
|
height: 100%; // When embedded, it fills the containing element
|
|
height: 100%; // When embedded, it fills the containing element
|
|
@@ -356,7 +356,7 @@ body.converse-fullscreen {
|
|
|
|
|
|
.no-text-select {
|
|
.no-text-select {
|
|
-webkit-touch-callout: none;
|
|
-webkit-touch-callout: none;
|
|
- @include user-select(none);
|
|
|
|
|
|
+ user-select: none;
|
|
}
|
|
}
|
|
|
|
|
|
@keyframes colorchange-chatmessage {
|
|
@keyframes colorchange-chatmessage {
|
|
@@ -411,10 +411,10 @@ body.converse-fullscreen {
|
|
|
|
|
|
.visible {
|
|
.visible {
|
|
opacity:0; /* make things invisible upon start */
|
|
opacity:0; /* make things invisible upon start */
|
|
- @include animation-name(fadein);
|
|
|
|
- @include animation-fill-mode(forwards);
|
|
|
|
- @include animation-duration(500ms);
|
|
|
|
- @include animation-timing-function(ease);
|
|
|
|
|
|
+ animation-name: fadein;
|
|
|
|
+ animation-fill-mode: forwards;
|
|
|
|
+ animation-duration: 500ms;
|
|
|
|
+ animation-timing-function: ease;
|
|
}
|
|
}
|
|
|
|
|
|
.hidden {
|
|
.hidden {
|
|
@@ -440,17 +440,17 @@ body.converse-fullscreen {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- @include keyframes(spin) {
|
|
|
|
|
|
+ @keyframes spin {
|
|
from {
|
|
from {
|
|
- @include transform(rotate(0deg));
|
|
|
|
|
|
+ transform: rotate(0deg);
|
|
}
|
|
}
|
|
to {
|
|
to {
|
|
- @include transform(rotate(359deg));
|
|
|
|
|
|
+ transform: rotate(359deg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.spinner {
|
|
.spinner {
|
|
- @include animation(spin 2s infinite, linear);
|
|
|
|
|
|
+ animation: spin 2s infinite, linear;
|
|
width: 1em;
|
|
width: 1em;
|
|
display: block;
|
|
display: block;
|
|
text-align: center;
|
|
text-align: center;
|