diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/views/SharedNotesNameWindow.mxml b/bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/views/SharedNotesNameWindow.mxml index 028b8fff2eb5c705b5b5a6f26982909d4cde46e8..a116d2546140e111a6b5271c8e517f4b8cbea842 100755 --- a/bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/views/SharedNotesNameWindow.mxml +++ b/bigbluebutton-client/src/org/bigbluebutton/modules/sharednotes/views/SharedNotesNameWindow.mxml @@ -30,7 +30,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. layout="absolute" creationComplete="onCreationComplete()" keyUp="keyUpHandler(event)" - width="250" xmlns:common="org.bigbluebutton.common.*"> + width="240" xmlns:common="org.bigbluebutton.common.*"> <fx:Script> <![CDATA[ @@ -80,24 +80,23 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. ]]> </fx:Script> - <mx:VBox width="100%" height="100%" paddingTop="15"> + <mx:VBox width="100%" height="100%" paddingTop="5" horizontalAlign="center"> <common:AdvancedLabel text="{ResourceUtil.getInstance().getString('bbb.sharedNotes.createNoteWindow.label')}" styleName="titleWindowStyle" - maxWidth="{this.width - 10}" /> - <mx:HBox width="100%" - height="100%" - verticalAlign="middle"> - <mx:TextInput id="textInput" - restrict="a-zA-Z0-9 " - maxChars="20" - width="100%" - text="{sharedNoteTitle}" /> - <mx:Button id="btnNew" - click="btnNew_clickHandler(event)" - height="30" - label="{ResourceUtil.getInstance().getString('bbb.sharedNotes.new.label')}" - toolTip="{ResourceUtil.getInstance().getString('bbb.sharedNotes.new.toolTip')}" /> - </mx:HBox> + width="180" /> + <mx:TextInput id="textInput" + restrict="a-zA-Z0-9 " + maxChars="20" + height="26" + width="100%" + text="{sharedNoteTitle}" /> + <mx:Button id="btnNew" + click="btnNew_clickHandler(event)" + styleName="mainActionButton" + height="30" + width="100%" + label="{ResourceUtil.getInstance().getString('bbb.sharedNotes.new.label')}" + toolTip="{ResourceUtil.getInstance().getString('bbb.sharedNotes.new.toolTip')}" /> </mx:VBox> <mx:Button id="closeButton" click="onCancelClicked()" styleName="titleWindowCloseButton"