
* cleaned up some files * Fundamental style update * Redesigned some style * fixed hostbanner popup * Removed old identity stuff * fixed close listener * Fixed changelog date * fixed release chat icons * fixed url * Fixed hostbanner * Uploaded missing images * Improved update handling * Improved script files * Fixed loading error and icon error * fixed Yes/No modal * Fixed loader issues with MS Edge * fixed modal style bug * Fixed control bar overflow for small devices * Improved error handling on identity creation * Logging generate error to terminal * fixed possible php error * fixed some possible loading errors when other files have'nt been already loaded. * removed debug message * Changed emsrcypten flags * Improved codec error handling * removed webassembly as required dependency * Improved and fixed channel tree issues * Improved the sliders * Removed unneeded files * fixed loader versions cache * second slight performance improved (dont animate elements anymore if they are not shown) * Fixed query visibility setting * not showing useless client infos for query clients * Added an auto reconnect system * Added a canceled message and increased reconnect interval * removed implemented todo * fixed repetitive channel names * Reworked the channel tree selected lines * Fixed channel tree names * Fixed name alignment * fixed the native client * added min width to the server select groups to avoid a disappearing effect on shrink * fixed bugged downloaded icons
127 lines
2.6 KiB
SCSS
127 lines
2.6 KiB
SCSS
#chat {
|
|
font-family: Arial, serif;
|
|
font-size: 12px;
|
|
/*white-space: pre;*/
|
|
line-height: 1;
|
|
padding: 2px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
div, a {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.messages {
|
|
border-color: #6f6f6f;
|
|
border-radius: 2px 2px 2px 0;
|
|
border-style: solid;
|
|
overflow-y: auto;
|
|
flex-grow: 1;
|
|
|
|
.message_box {
|
|
flex-wrap: wrap;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
height: auto;
|
|
|
|
.message {
|
|
width: 100%;
|
|
display: inline-block;
|
|
|
|
* {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.chats {
|
|
max-width: 100%;
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
overflow: auto;
|
|
overflow-y: hidden;
|
|
white-space: nowrap;
|
|
margin-top: -1px;
|
|
display: flex;
|
|
user-select: none;
|
|
|
|
.chat {
|
|
background: #5f5f5f5f;
|
|
display: inline-block;
|
|
border: 1px solid #6f6f6f;
|
|
border-radius: 0 0 2px 2px;
|
|
vertical-align: middle;
|
|
padding-right: 5px;
|
|
padding-left: 2px;
|
|
cursor: pointer;
|
|
height: 18px;
|
|
|
|
&.active {
|
|
background: #11111111;
|
|
}
|
|
|
|
.btn_close {
|
|
float: none;
|
|
margin-right: -5px;
|
|
margin-left: 8px;
|
|
|
|
&:hover, &:focus {
|
|
color: black;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.name, .chatIcon {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.input {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: stretch;
|
|
|
|
height: auto;
|
|
width: 100%;
|
|
margin-top: 2px;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
|
|
.bmd-form-group {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
|
|
margin-right: 5px;
|
|
padding-top: 0;
|
|
}
|
|
|
|
|
|
.form-group {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
margin: 0 5px 0 0;
|
|
|
|
textarea {
|
|
height: 30px;
|
|
min-height: 30px;
|
|
max-height: 80px;
|
|
|
|
resize: vertical;
|
|
overflow-y: auto;
|
|
}
|
|
}
|
|
|
|
button {
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
}
|
|
}
|
|
}
|