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

152 lines
3.0 KiB
Plaintext
Raw Normal View History

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 {
2015-07-04 01:57:23 +08:00
cursor: pointer;
line-height: 1.1;
2015-02-22 07:50:47 +08:00
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 {
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;
}
@media @mobile-portrait-with-keyboard, @desktop-portrait, @mobile-portrait {
2015-06-19 03:09:17 +08:00
width: 100%;
height: 100%;
2015-06-19 03:09:17 +08:00
border: none;
.linear-gradient(rgb(65,68,77), rgb(58,60,69));
}
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-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 {
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
}
}
@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-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 {
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;
}
}
}
.toggleUserlistButton, .toggleMenuButton {
span {
@media @landscape, @desktop-portrait {
width: 30px;
margin-left: auto;
margin-right: auto;
height: 8%;
}
}
}
// 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";
}
#content > .ion-ios-email-outline {
color: red;
}
.userName {
color: #666666;
}