diff --git a/bigbluebutton-html5/app/client/stylesheets/chat.less b/bigbluebutton-html5/app/client/stylesheets/chat.less
index 807ef2690c..b0b22cad08 100755
--- a/bigbluebutton-html5/app/client/stylesheets/chat.less
+++ b/bigbluebutton-html5/app/client/stylesheets/chat.less
@@ -27,9 +27,9 @@
margin: 0px;
padding: 15px;
word-wrap: break-word;
- &:nth-child(even) {
- background-color: rgb(245,245,245);
- }
+ // &:nth-child(even) {
+ // background-color: rgb(245,245,245);
+ // }
table {
width: 100%;
}
@@ -39,7 +39,7 @@
#chatbody {
@media @landscape {
- height: calc(~'100% - 121px');
+ height: calc(~'100% - 70px');
}
overflow-y: scroll;
padding-left: 0px;
@@ -165,9 +165,13 @@
float: left;
width: 75%;
resize: none;
- padding:5px;
- border-radius:4px;
+ border-bottom-left-radius: 10px;
+ border-top-left-radius: 10px;
+ border-bottom-right-radius: 0px;
+ border-top-right-radius: 0px;
+
border:1px solid extract(@lightGrey, 3);
+ margin: 0px;
@media @landscape {
height: 40px; /* same height as send button */
@@ -201,9 +205,10 @@
.panel-footer {
bottom: 0px;
- /* padding: 10px; TODO: investigate (causes the overflow in the chat's title) */
position: relative;
background: extract(@white, 1);
+ padding: 0;
+ border-top: 1px solid extract(@lightGrey, 3);
}
.private-chat-user-box {
@@ -220,34 +225,37 @@
}
#sendMessageButton {
- background-color: extract(@azure, 1);
width: 20%; /* 75% for the message input, 5% margin between the two */
- color: extract(@white, 1);
+ color: extract(@black, 1);
+ background-color: extract(@white, 1);
+ 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 */
font-size: 30px;
height: 60px;
- margin-left: 5%;
}
@media @mobile-portrait {
width: 15vw;
height: 8vw;
font-size: 4vw;
- margin-left: 5%;
}
@media @mobile-portrait-with-keyboard {
width: 19vw;
height: 21vh;
font-size: 3vh;
- margin-left: 1%;
- margin-right: 1%;
- marigin-top: 2vh;
- margin-bottom: 2vh;
}
@media @landscape {
- height: 40px;
+ height: 50px;
padding: 0px;
- margin-left: 5%;
}
}
diff --git a/bigbluebutton-html5/app/client/stylesheets/style.less b/bigbluebutton-html5/app/client/stylesheets/style.less
index 78c9778db6..8eea3f6687 100755
--- a/bigbluebutton-html5/app/client/stylesheets/style.less
+++ b/bigbluebutton-html5/app/client/stylesheets/style.less
@@ -186,10 +186,6 @@ body {
background: extract(@darkGrey, 4);
}
-.panel-footer {
- padding: 0;
-}
-
.recordingStatus {
background: none!important;
border: none;
diff --git a/bigbluebutton-html5/app/client/views/chat/chat_bar.html b/bigbluebutton-html5/app/client/views/chat/chat_bar.html
index d8cd5f9990..715ad1421e 100755
--- a/bigbluebutton-html5/app/client/views/chat/chat_bar.html
+++ b/bigbluebutton-html5/app/client/views/chat/chat_bar.html
@@ -26,24 +26,25 @@
{{#if privateChatDisabled}}
{{else}}
-
-
+ {{> chatInputControls}}
{{/if}}
{{else}}
{{#if publicChatDisabled}}
{{else}}
-
-
+ {{> chatInputControls}}
{{/if}}
{{/if}}
+
+
+
+
+
Chat Options:
{{> optionsFontSize}}