bigbluebutton-Github/bigbluebutton-html5/app/client/stylesheets/users.less

113 lines
2.3 KiB
Plaintext
Raw Normal View History

2015-02-22 07:50:47 +08:00
@import "variables";
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 {
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 {
font-size: 4vw;
2015-02-22 07:50:47 +08:00
}
}
#users {
@media @landscape {
-webkit-flex: 1 1 20%;
-moz-flex: 1 1 20%;
-ms-flex: 1 1 20%;
flex: 1 1 20%;
2015-06-09 07:29:49 +08:00
border-left: 0px;
border-top: 0px;
border-top-right-radius: 0px;
background-color: #FAFAFA;
}
@media @mobile-portrait-with-keyboard, @desktop-portrait, @mobile-portrait {
position: absolute;
left: -500px;
width: 500px;
height: 100%;
}
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-02-22 07:50:47 +08:00
.userlist {
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;
}
}
@media @landscape {
2015-02-22 07:50:47 +08:00
padding:10px;
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 {
max-height: 58vw; //for longer userlist a scrollbar appears
}
2015-02-22 07:50:47 +08:00
}
}
.userCurrent {
font-weight: bold;
}
.closeUserlistIcon {
float: right;
margin-right: 5px;
@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;
}
}
}
// changing mute/unmute icons on hover:
.muteIcon .ion-ios-mic-outline:hover:before {
content: "\f45f";
}
.muteIcon .ion-ios-mic:hover:before {
content: "\f45f";
}
.muteIcon .ion-ios-mic-off:hover:before {
content: "\f461";
}