adaptable chat window
This commit is contained in:
parent
4a34a1aec7
commit
e8f15b02e8
1 changed files with 14 additions and 4 deletions
|
@ -104,9 +104,12 @@ body {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#main-ctn {
|
#main-ctn {
|
||||||
margin: 135px 0 0 0;
|
position: absolute;
|
||||||
padding: 10px 235px 10px 20px;
|
top: 135px;
|
||||||
min-width: 400px;
|
left: 0px;
|
||||||
|
padding: 10px;
|
||||||
|
width: calc(100% - 230px);
|
||||||
|
height: calc(100% - 155px);
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-ctn > * {
|
#main-ctn > * {
|
||||||
|
@ -118,6 +121,7 @@ body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background-color: #347db0;
|
background-color: #347db0;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -186,11 +190,17 @@ body {
|
||||||
#tab-body-wrapper {
|
#tab-body-wrapper {
|
||||||
margin: 2px 1px;
|
margin: 2px 1px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
height: calc(100% - 20px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-body {
|
||||||
|
height: calc(100% - 35px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-log {
|
.chat-log {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 268px;
|
/* height: 268px; */
|
||||||
|
height: 100%;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
background-color: #e4e4e4;
|
background-color: #e4e4e4;
|
||||||
|
|
Reference in a new issue