bigbluebutton-Github/labs/meteor-client/app/client/stylesheets/users.less

107 lines
2.0 KiB
Plaintext
Raw Normal View History

2015-02-22 07:50:47 +08:00
@import "variables";
#content {
margin-top: 10px;
overflow: hidden;
width: 100%;
2015-03-03 00:08:08 +08:00
@media @mobile-portrait, @mobile-portrait-with-keyboard {
background: #efeaea;
}
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;
}
@media @mobile-portrait {
font-size: 5vh;
}
2015-02-22 07:50:47 +08:00
}
.raisedHandIcon, .muteIcon {
&:hover {
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 {
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 {
font-size: 4vh;
2015-02-22 07:50:47 +08:00
}
}
#users {
margin-left: 0.25%;
margin-right: 0.25%;
padding-bottom: 10px; /*min-width:230px;*/
-webkit-flex: 1 1 25%;
flex: 1 1 25%;
@media @landscape {
height:98%;
2015-02-22 07:50:47 +08:00
-webkit-order: 1;
order: 1;
min-width: 0;
}
2015-03-03 00:08:08 +08:00
@media @desktop-portrait, @mobile-portrait {
2015-02-22 07:50:47 +08:00
-webkit-order: 3;
order: 3;
margin-bottom: 0px;
padding-bottom: 55px; /*so that the footer does not overlap */
2015-03-03 00:08:08 +08:00
}
@media @mobile-portrait-with-keyboard {
display: none; //hide when typing
2015-02-22 07:50:47 +08:00
}
}
#user-contents {
.userlist {
@media @landscape {
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: 40vh; //for longer userlist a scrollbar appears
}
2015-02-22 07:50:47 +08:00
}
}
.userCurrent {
font-weight: bold;
}
#username {
@media @landscape {
display:block;
}
@media @desktop-portrait {
display:block;
width:70%;
}
}