AutorÃa | Ultima modificación | Ver Log |
#react-chat {
bottom: 0;
margin: 0;
padding: 0;
right: 5%;
position: fixed;
z-index: 1000;
display: flex;
flex-direction: row-reverse;
align-items: flex-end;
gap: 1rem;
font-family: Arial, sans-serif;
button {
background: transparent;
border: none;
margin: 0;
padding: 0;
outline: none;
}
}
.chat-helper {
background-color: $bg-color;
border-top-left-radius: $border-radius;
border-top-right-radius: $border-radius;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
display: grid !important;
grid-template-rows: auto 1fr;
max-height: 25rem;
height: fit-content;
width: 235px;
.chat_options {
border-bottom: 1px solid $border-primary;
overflow: hidden;
position: relative;
a {
border-left: 1px solid $border-primary;
color: $font-color;
padding: 3px 8px 3px 3px;
border: 0;
font-size: 0.9rem;
cursor: pointer;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
.contacts-list {
width: 100%;
overflow-y: auto;
max-height: 250px;
.contacts-list__item {
align-items: center;
display: flex;
height: auto;
padding: 0.2rem 1rem;
gap: 0.5rem;
img {
height: 36px;
width: 36px;
border-radius: 50%;
}
.contacts-list__item-content {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
span {
font-size: 0.9rem;
cursor: pointer;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 20ch;
}
}
}
.lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.82);
text-align: center;
z-index: 10000;
p {
text-align: right;
color: #fff;
margin-right: 20px;
font-size: 12px;
}
#content {
vertical-align: middle;
padding-left: 20%;
padding-right: 20%;
}
#gcontent {
vertical-align: middle;
padding-left: 40%;
padding-right: 50%;
}
#content img {
box-shadow: 0 0 25px #111;
max-width: 100%;
max-height: 550px;
border: 10px solid #95d9cc;
border-radius: 10px;
}
}