Files
ocrcc-chatbox/src/components/_chat.scss
2020-02-24 14:16:43 -05:00

291 lines
5.0 KiB
SCSS

@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
display: inherit;
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
display: none;
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}
.docked-widget {
position: fixed;
bottom: 10px;
right: 10px;
z-index: 9999;
width: 400px;
}
.dock {
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
width: 400px;
max-width: calc(100vw - 10px);
color: $white;
font-family: $theme-font;
font-size: 1rem;
border: none;
color: $white;
font-size: 1rem;
line-height: 1;
#open-chatbox-label {
background: $theme-color;
padding: 0.75rem 1.5rem;
flex: 1 1 auto;
text-align: left;
margin-right: 0.25rem;
}
.label-icon {
background: $theme-color;
height: 40px;
width: 40px;
border-radius: 40px;
display: flex;
justify-content: center;
align-items: center;
}
}
.widget {
width: 400px;
max-width: calc(100vw - 10px);
border-bottom: none;
animation-duration: 0.2s;
animation-fill-mode: forwards;
&-entering {
animation-name: slideInUp;
}
&-entered {
display: inherit;
visibility: visible;
}
&-exiting {
animation-name: slideOutDown;
}
&-exited {
display: none;
visibility: hidden;
}
&-header {
display: flex;
align-items: center;
margin-bottom: 0.2rem;
justify-content: flex-end;
&-title {
display: flex;
flex-grow: 1;
}
&-minimize {
cursor: pointer;
display: flex;
align-items: center;
justify-content: flex-start;
border: 1px solid $dark-color !important;
background: $white;
color: $dark-color;
flex: 1 1 auto;
font-family: $theme-font;
font-size: 1rem;
padding: 0.5rem;
}
&-close {
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid $dark-color !important;
background: $white;
border-radius: 40px;
height: 40px;
width: 40px;
margin-left: 0.2rem;
color: $dark-color;
}
}
&-body {
background: white;
padding: 10px;
height: 150px;
}
&-footer {
background: green;
line-height: 30px;
padding-left: 10px;
}
}
.btn-icon {
font-size: 1.5rem;
line-height: 1;
transform: rotateX(0deg);
transition: all 0.5s linear;
display: flex;
align-items: center;
justify-content: center;
}
.arrow {
margin-right: 0.5rem;
transform: translateY(5px);
&.opened {
color: $dark-color;
transform: rotateX(180deg) translateY(5px);
}
}
@media screen and (max-width: 420px){
.docked-widget {
right: 0;
left: 0;
}
.dock, .widget {
width: 100vw;
max-width: 100vw;
}
}
#ocrcc-chatbox {
font-family: $theme-font;
display: flex;
flex-direction: column;
height: 60vh;
max-height: 100vh;
min-height: 180px;
a {
color: inherit;
}
.message-window {
background-color: $white;
border: 1px solid $dark-color;
flex: 1 1 auto;
padding: 0.5rem;
overflow: auto;
display: flex;
flex-direction: column-reverse;
justify-content: space-between;
margin-bottom: 0.2rem;
}
.notices {
color: $gray-color;
font-size: 0.9rem;
> div {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
}
.message {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
.text {
width: fit-content;
}
&.from-bot {
color: $gray-color;
font-size: 0.9rem;
}
&.from-me {
display: flex;
justify-content: flex-end;
.text {
border: 1px solid $theme-color;
background-color: $theme-color;
color: $white;
border-radius: 15px 15px 0 15px;
margin-left: 10%;
padding: 0.5rem 0.75rem;
}
}
&.from-support {
display: flex;
justify-content: flex-start;
.text {
border: 1px solid $light-color;
background-color: $light-color;
color: $dark-color;
border-radius: 15px 15px 15px 0;
margin-right: 10%;
padding: 0.5rem 0.75rem;
}
}
}
.input-window {
flex: 0 0 auto;
form {
display: flex;
align-items: center;
margin-bottom: 0;
}
input[type="text"] {
font-size: 1rem;
padding: 0.5rem;
border: none;
flex: 1 0 auto;
border: 1px solid $dark-color;
background: $light-color;
color: $dark-color;
font-family: $theme-font;
margin-right: 0.2rem;
&:focus {
border: none;
}
}
input[type="submit"] {
background-color: $theme-color;
height: 100%;
padding: 0.5rem 1rem;
font-size: 1rem;
color: $white;
font-weight: bold;
border: 1px solid $theme-color;
font-family: $theme-font;
cursor: pointer;
}
}
}