2015-02-22 07:50:47 +08:00
@import "variables";
2015-05-07 12:14:17 +08:00
.usericon {
font-size: 16px;
}
2015-02-22 07:50:47 +08:00
.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-07 03:28:30 +08:00
@media @landscape {
-webkit-flex: 1 1 20%;
-moz-flex: 1 1 20%;
-ms-flex: 1 1 20%;
flex: 1 1 20%;
}
@media @mobile-portrait-with-keyboard, @desktop-portrait, @mobile-portrait {
2015-05-12 05:34:53 +08:00
position: absolute;
left: -500px;
width: 500px;
height: 100%;
2015-05-07 03:28:30 +08:00
}
2015-05-19 23:53:17 +08:00
order: 0;
2015-02-22 07:50:47 +08:00
}
#user-contents {
2015-05-07 03:08:57 +08:00
height: 83vh; /* 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-03-12 23:45:40 +08:00
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-05-14 02:55:15 +08:00
#content {
2015-05-25 11:24:21 +08:00
span:hover {
background-color: #EEEEEE;
}
2015-05-14 02:55:15 +08:00
margin-top: 10px;
&:first-child { margin-top: 0px; }
overflow: hidden;
width: 100%;
@media @mobile-portrait, @mobile-portrait-with-keyboard {
background: #E6F0FA;
}
}
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;
}
2015-05-06 22:52:43 +08:00
.closeUserlistIcon {
float: right;
margin-right: 5px;
2015-05-22 00:37:21 +08:00
@media @mobile-portrait-with-keyboard, @desktop-portrait, @mobile-portrait {
display: none;
}
2015-05-06 22:52:43 +08:00
}