2015-02-22 07:50:47 +08:00
@import "variables";
#content {
margin-top: 10px;
2015-04-21 23:14:49 +08:00
&:first-child {
margin-top: 0px;
}
2015-02-22 07:50:47 +08:00
overflow: hidden;
width: 100%;
2015-03-03 00:08:08 +08:00
@media @mobile-portrait, @mobile-portrait-with-keyboard {
2015-03-04 00:36:15 +08:00
background: #E6F0FA;
2015-03-03 00:08:08 +08:00
}
2015-02-22 07:50:47 +08:00
}
#usericons {
float: right;
span {
margin-left: 3px;
padding: 2px;
border: 1px solid white;
2015-03-03 00:08:08 +08:00
@media @desktop-portrait {
font-size: 25px;
}
2015-03-04 00:36:15 +08:00
@media @mobile-portrait, @mobile-portrait-with-keyboard{
font-size: 3vh;
2015-03-03 00:08:08 +08:00
}
2015-02-22 07:50:47 +08:00
}
.raisedHandIcon, .muteIcon {
2015-03-03 07:00:15 +08:00
&:hover {
2015-02-22 07:50:47 +08:00
cursor: pointer;
border: 1px solid #f2f2f2;
background-color: #f2f2f2;
border-radius: 4px;
}
}
}
.usernameEntry {
float:left;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 60%;
@media @landscape {
height: 20px;
}
@media @desktop-portrait {
2015-02-24 04:54:56 +08:00
height: 25px;
2015-03-03 00:49:49 +08:00
font-size: 2vh;
2015-02-22 07:50:47 +08:00
}
2015-03-03 00:08:08 +08:00
@media @mobile-portrait, @mobile-portrait-with-keyboard {
2015-03-05 01:27:35 +08:00
font-size: 4vw;
2015-02-22 07:50:47 +08:00
}
}
#users {
2015-05-06 22:52:43 +08:00
-webkit-flex: 1 1 20%;
-moz-flex: 1 1 20%;
-ms-flex: 1 1 20%;
flex: 1 1 20%;
height: 100%;
2015-02-22 07:50:47 +08:00
}
#user-contents {
2015-03-12 23:45:40 +08:00
height: 100%; /* for the inside scrolling list to utilize as much room as possible, this surrounding window must also take up as much room as possible */
2015-02-22 07:50:47 +08:00
.userlist {
2015-03-12 23:45:40 +08:00
height: calc(~'100% - 29px'); /* height of user contents - user list */
2015-03-03 07:00:15 +08:00
@media @landscape {
2015-02-22 07:50:47 +08:00
padding:10px;
2015-02-25 07:09:26 +08:00
max-height:83vh;
2015-02-22 07:50:47 +08:00
}
@media @desktop-portrait {
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
}
2015-03-03 00:08:08 +08:00
@media @desktop-portrait, @mobile-portrait {
2015-03-05 01:27:35 +08:00
max-height: 58vw; //for longer userlist a scrollbar appears
2015-02-25 07:09:26 +08:00
}
2015-02-22 07:50:47 +08:00
}
}
.userCurrent {
font-weight: bold;
}
#username {
@media @landscape {
display:block;
}
@media @desktop-portrait {
display:block;
width:70%;
}
}
2015-05-06 22:52:43 +08:00
.closeUserlistIcon {
float: right;
margin-right: 5px;
}