2015-02-22 07:50:47 +08:00
@import "variables";
2015-06-19 03:09:17 +08:00
@import "mixins";
2015-02-22 07:50:47 +08:00
2015-05-07 12:14:17 +08:00
.usericon {
font-size: 16px;
}
2015-06-09 07:29:49 +08:00
#usericons {
text-align: right;
}
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;
2015-06-09 07:29:49 +08:00
font-size: 4.5mm;
2015-02-22 07:50:47 +08:00
}
@media @desktop-portrait {
2015-02-24 04:54:56 +08:00
height: 25px;
2015-06-09 07:29:49 +08:00
font-size: 4.5mm;
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 {
2015-06-19 03:09:17 +08:00
width: 100%;
2015-06-09 07:29:49 +08:00
border-left: 0px;
border-top: 0px;
border-top-right-radius: 0px;
background-color: #FAFAFA;
2015-05-07 03:28:30 +08:00
}
@media @mobile-portrait-with-keyboard, @desktop-portrait, @mobile-portrait {
2015-06-19 03:09:17 +08:00
width: 100%;
2015-05-12 05:34:53 +08:00
height: 100%;
2015-06-19 03:09:17 +08:00
border: none;
.linear-gradient(rgb(65,68,77), rgb(58,60,69));
2015-05-07 03:28:30 +08:00
}
2015-05-19 23:53:17 +08:00
order: 0;
2015-06-19 03:09:17 +08:00
height: 100%;
}
.darkening-in {
opacity: 0;
animation: darken-in 0.5s;
animation-fill-mode: forwards;
}
@keyframes darken-in {
0% {
opacity: 0;
}
100% {
opacity: 0.5;
}
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 {
2015-06-19 03:09:17 +08:00
/*background-color: #EEEEEE;*/
background: transparent;
2015-05-25 11:24:21 +08:00
}
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 {
2015-06-19 03:09:17 +08:00
/*background: #E6F0FA;*/
background: transparent;
color: white;
2015-05-14 02:55:15 +08:00
}
}
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-06-19 03:09:17 +08:00
color: white;
2015-02-22 07:50:47 +08:00
}
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-06-09 07:29:49 +08:00
.closeSettings {
@media @landscape {
color: #aaa;
font-style: normal;
font-size: 30px;
}
}
2015-05-06 22:52:43 +08:00
}
2015-06-05 05:31:59 +08:00
// changing mute/unmute icons on hover:
2015-06-05 06:25:07 +08:00
.muteIcon .ion-ios-mic-outline:hover:before {
2015-06-05 05:31:59 +08:00
content: "\f45f";
}
2015-06-05 06:25:07 +08:00
.muteIcon .ion-ios-mic:hover:before {
2015-06-05 05:31:59 +08:00
content: "\f45f";
}
2015-06-05 06:25:07 +08:00
.muteIcon .ion-ios-mic-off:hover:before {
2015-06-05 05:31:59 +08:00
content: "\f461";
}