Skip to content

Commit

Permalink
[AIR] reposition chat send button
Browse files Browse the repository at this point in the history
  • Loading branch information
capilkey committed Feb 6, 2018
1 parent 9f7887e commit cb59793
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion clients/flash/air-client/src/Default.css
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ settings|SettingsItemRenderer {
.messageInput {
fontFamily : SourceSansProMX;
contentBackgroundAlpha : 0;
skinClass : ClassReference("org.bigbluebutton.air.chat.views.skins.MessageInputSkin");
/*skinClass : ClassReference("org.bigbluebutton.air.chat.views.skins.MessageInputSkin");*/
}

.content {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,18 @@ package org.bigbluebutton.lib.chat.views {
_inputGroup.percentWidth = 100;
group.addElement(_inputGroup);

_sendButton = new Button();
_sendButton.styleName = "sendButton icon icon-plus";
//enabled="{inputMessage0.text!=''}"
_inputGroup.addElement(_sendButton);

_textInput = new TextInput();
_textInput.percentWidth = 100;
_textInput.percentHeight = 100;
//_textInput.showPromptWhenFocused = false;
_textInput.styleName = "messageInput";
_inputGroup.addElement(_textInput);

_sendButton = new Button();
_sendButton.styleName = "sendButton icon icon-plus";
//enabled="{inputMessage0.text!=''}"
_inputGroup.addElement(_sendButton);

addElement(group);
}

Expand Down

0 comments on commit cb59793

Please sign in to comment.