229 lines
4.2 KiB
SCSS
229 lines
4.2 KiB
SCSS
@import "vars";
|
|
|
|
.chat {
|
|
background: white;
|
|
}
|
|
#chat-log p {
|
|
margin: 0;
|
|
padding-top: 0.1em;
|
|
padding-bottom: 0.1em;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
.chatbtn_remove_mess {
|
|
float: right;
|
|
margin-right: 1em;
|
|
}
|
|
#chat-log {
|
|
padding: 0;
|
|
padding-top: 2em;
|
|
width: 100%;
|
|
font-size: 14px;
|
|
}
|
|
#chat-log li {
|
|
list-style-type: none;
|
|
margin: 0.5em;
|
|
}
|
|
#chat-submit {
|
|
margin-top: 1em;
|
|
}
|
|
.big-emoji {
|
|
font-size: 16px;
|
|
}
|
|
#chat-online {
|
|
border-right: 1px solid #ccc;
|
|
padding-bottom: 0 !important;
|
|
border-bottom: 0;
|
|
font-size: 1.2em;
|
|
}
|
|
#chat-online-content {
|
|
margin-bottom: 0;
|
|
overflow: hidden;
|
|
overflow-wrap: break-word;
|
|
overflow-y: auto;
|
|
max-height: 100%;
|
|
}
|
|
#chat-box {
|
|
/*border: 1px solid #ccc;*/
|
|
/*border-top-right-radius: 4px;*/
|
|
width: 100%;
|
|
overflow: hidden;
|
|
overflow-wrap: break-word;
|
|
overflow-y: scroll;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
#chat-input {
|
|
color: black;
|
|
border: 2px solid #e4a81c;
|
|
}
|
|
#chat-online-content {
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
.selected-status-row {
|
|
background-color: lightgray;
|
|
}
|
|
.status_last_message {
|
|
color: darkgray;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
@media (min-width: 800px) {
|
|
#chat-container {
|
|
display: flex;
|
|
width: 100%;
|
|
height: calc(100vh - 3em);
|
|
border: 1px solid #ccc;
|
|
/*border-radius: 0 4px 0 0;*/
|
|
border-bottom: 0;
|
|
}
|
|
#chat-online {
|
|
margin: 0;
|
|
width: 35%;
|
|
}
|
|
#chat-area {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
#chat-input, #chat-log .content-message {
|
|
font-family: "Noto Sans", Arial, "Lucida Grande", sans-serif;
|
|
}
|
|
.info-pic {
|
|
height: 100%;
|
|
}
|
|
|
|
.info-name {
|
|
margin-left: 10px;
|
|
font-size: 2em;
|
|
font-weight: bold !important;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.info-name a {
|
|
display: table-caption;
|
|
}
|
|
#chat-info {
|
|
display: flex;
|
|
align-items: center;
|
|
box-shadow: 0px 2px 3px rgb(0 0 0 / 20%);
|
|
position: relative;
|
|
z-index: 100;
|
|
}
|
|
#refresh-button {
|
|
padding: 0;
|
|
margin-left: auto;
|
|
margin-right: 0.3em;
|
|
background: transparent;
|
|
border: none;
|
|
height: 1.5em;
|
|
width: 1.5em;
|
|
}
|
|
#refresh-button:hover {
|
|
background: lightgreen;
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
transition: 1.5s ease-in-out;
|
|
}
|
|
.status-pic {
|
|
height: 32px;
|
|
width: 32px;
|
|
border-radius: 50%;
|
|
}
|
|
.status-container {
|
|
position: relative;
|
|
display: inline-flex;
|
|
flex: 0 0 auto;
|
|
}
|
|
.status-circle {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
cx: 27px;
|
|
cy: 27px;
|
|
r: 4.5px;
|
|
stroke: white;
|
|
stroke-width: 1;
|
|
}
|
|
.status-row {
|
|
display: flex;
|
|
padding: 15px;
|
|
gap: 0.5em;
|
|
border-radius: 6px;
|
|
}
|
|
.status-row:hover {
|
|
background: lightgray;
|
|
cursor: pointer;
|
|
}
|
|
.status-list {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.status-section-title {
|
|
cursor: pointer;
|
|
margin-top: 0.5em;
|
|
}
|
|
.message-text {
|
|
padding: 0.4em 0.6em 0.5em;
|
|
border-radius: 15px;
|
|
max-width: 70%;
|
|
width: fit-content;
|
|
font-size: 1.05rem;
|
|
line-height: 1.3;
|
|
}
|
|
.message-text-other {
|
|
background: #eeeeee;
|
|
color: black;
|
|
}
|
|
.message-text-myself {
|
|
background: rgb(0, 132, 255);
|
|
color: white;
|
|
}
|
|
.chat-input-icon {
|
|
color: $theme_color;
|
|
}
|
|
.chat-input-icon:hover {
|
|
background: lightgray;
|
|
}
|
|
.chat {
|
|
.active-span {
|
|
color: #636363;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.unread-count {
|
|
float: right;
|
|
color: white;
|
|
background-color: darkcyan;
|
|
border-radius: 2px;
|
|
padding: 0 0.5em;
|
|
align-self: flex-end;
|
|
}
|
|
#setting-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #f1f1f1;
|
|
min-width: 160px;
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
z-index: 1;
|
|
right: 0;
|
|
}
|
|
#setting-content li {
|
|
padding: 12px 16px;
|
|
text-decoration: none;
|
|
display: block;
|
|
color: black;
|
|
font-weight: bold;
|
|
}
|
|
#setting-content li:hover {
|
|
background-color: #ddd;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 799px) {
|
|
#chat-area {
|
|
height: calc(100vh - 120px);
|
|
}
|
|
}
|