Skip to content

Commit

Permalink
Adjusting Tyler's corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
OZhurbenko committed Jun 8, 2015
1 parent 8cf7328 commit e44617b
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 16 deletions.
19 changes: 7 additions & 12 deletions bigbluebutton-html5/app/client/stylesheets/chat.less
Expand Up @@ -6,7 +6,7 @@
-webkit-order: 1;
-ms-flex-order: 1;
-ms-order: 1;
background-color: #EEEEEE;
border-bottom: 1px solid #E5E5E5;
min-width: 205px;
height: 45px;
min-height: 45px;
Expand Down Expand Up @@ -43,6 +43,9 @@
-ms-flex: 3 3 30%;
flex: 3 3 30%;
height: 100%;
border-top: 0px;
border-right: 0px;
border-top-left-radius: 0px;
}
order: 3;
}
Expand All @@ -51,7 +54,7 @@
list-style: none;
margin: 0px;
padding: 0px;

height: 100%;
@media @desktop-portrait, @landscape {
li {
margin: 0px;
Expand Down Expand Up @@ -91,6 +94,7 @@
grow:1;
-webkit-grow: 1;
-moz-grow: 1;
height: calc(~'100% - 45px');
}
overflow-y: auto;
padding-left: 0px;
Expand Down Expand Up @@ -141,10 +145,6 @@
float: left;
width: 75%;
resize: none;
border-bottom-left-radius: 10px;
border-top-left-radius: 10px;
border-bottom-right-radius: 0px;
border-top-right-radius: 0px;
padding-top: 5px;
padding-bottom: 0px;

Expand Down Expand Up @@ -173,7 +173,7 @@
position: relative;
background: extract(@white, 1);
padding: 0;
border-top: 1px solid extract(@lightGrey, 3);
border-top: 1px solid #E5E5E5;
}

#sendMessageButton {
Expand All @@ -183,12 +183,7 @@
font-weight: bold;
height: 50px;
margin: 0px;

border: 1px solid extract(@lightGrey, 3);
border-bottom-left-radius: 00px;
border-top-left-radius: 0px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;

@media @desktop-portrait {
width: 20%; /* 75% for the message input, 5% margin between the two */
Expand Down
18 changes: 17 additions & 1 deletion bigbluebutton-html5/app/client/stylesheets/users.less
Expand Up @@ -4,6 +4,10 @@
font-size: 16px;
}

#usericons {
text-align: right;
}

.usernameEntry {
float:left;
overflow: hidden;
Expand All @@ -12,10 +16,11 @@
width: 60%;
@media @landscape {
height: 20px;
font-size: 4.5mm;
}
@media @desktop-portrait {
height: 25px;
font-size: 2vh;
font-size: 4.5mm;
}
@media @mobile-portrait, @mobile-portrait-with-keyboard {
font-size: 4vw;
Expand All @@ -28,6 +33,10 @@
-moz-flex: 1 1 20%;
-ms-flex: 1 1 20%;
flex: 1 1 20%;
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;
Expand Down Expand Up @@ -82,4 +91,11 @@
@media @mobile-portrait-with-keyboard, @desktop-portrait, @mobile-portrait {
display: none;
}
.closeSettings {
@media @landscape {
color: #aaa;
font-style: normal;
font-size: 30px;
}
}
}
3 changes: 3 additions & 0 deletions bigbluebutton-html5/app/client/stylesheets/whiteboard.less
Expand Up @@ -4,6 +4,9 @@
padding: 0 !important;
min-width: 0;
@media @landscape {
border-top: 0px;
border-left: 0px;
border-right: 0px;
-webkit-order: 2;
order: 2;
-webkit-flex: 7 7 70%;
Expand Down
6 changes: 4 additions & 2 deletions bigbluebutton-html5/app/client/views/chat/chat_bar.html
Expand Up @@ -46,8 +46,10 @@
</template>

<template name="chatInputControls">
<textarea id="newMessageInput" rel="tooltip" data-placement="top" title="Write a new message"></textarea>
<button type="submit" id="sendMessageButton" class="btn" rel="tooltip" data-placement="top">Send</button>
<div class="button-group radius">
<textarea id="newMessageInput" rel="tooltip" data-placement="top" title="Write a new message"></textarea>
<input type="submit" id="sendMessageButton" class="button radius" rel="tooltip" data-placement="top" value="Send" />
</div>
</template>

<!-- Displays and styles an individual message in the chat -->
Expand Down
2 changes: 1 addition & 1 deletion bigbluebutton-html5/app/client/views/users/users_list.html
Expand Up @@ -2,7 +2,7 @@
<div id="{{id}}" {{visibility name}} class="component {{class}}">
<h3 class="meetingTitle">
{{getMeetingName}}
<span class="closeUserlistIcon"><i class="ion-close-circled"></i></span>
<span class="closeUserlistIcon"><i class="closeSettings close-reveal-modal">&#215;</i></span>
</h3>
<div id="user-contents">
<div class="userlist ScrollableWindowY">
Expand Down

0 comments on commit e44617b

Please sign in to comment.