Merge pull request #4849 from capilkey/2.1-fix-minor-issues

Fixes for some spacing issues in the client
This commit is contained in:
Fred Dixon 2017-12-19 21:58:30 -05:00 committed by GitHub
commit 59eef1767f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -164,7 +164,7 @@ phonecomponents|MuteMeButton {
}
.topBoxStyle {
paddingTop : 6;
paddingTop : 0;
paddingBottom : 0;
paddingLeft : 8;
paddingRight : 8;

View File

@ -170,7 +170,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
[Bindable] private var toolbarHeight:Number = DEFAULT_TOOLBAR_HEIGHT;
[Bindable] private var showFooterOpt:Boolean = true;
[Bindable] private var _showFooter:Boolean = true;
[Bindable] private var footerHeight:Number = 60;
[Bindable] private var footerHeight:Number = 50;
[Bindable] private var isTunneling:Boolean = false;

View File

@ -525,7 +525,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
tabIndices="{[recordBtn, webRTCAudioStatus, shortcutKeysBtn, helpBtn, btnLogout]}"/>
</fx:Declarations>
<mx:VBox id="mainBox" styleName="toolbarMainBox" width="100%" horizontalScrollPolicy="off" verticalAlign="top">
<mx:VBox id="mainBox" styleName="toolbarMainBox" width="100%" horizontalScrollPolicy="off" verticalAlign="top" verticalGap="0">
<!-- Breakout room Ribbon-->
<mx:HBox id="banner" visible="false" includeInLayout="false" styleName="bannerStyle" width="100%" height="30">
<mx:Label id="bannerLabel" width="100%" textAlign="center"/>

View File

@ -25,7 +25,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
prompt="{ResourceUtil.getInstance().getString('bbb.layout.combo.prompt')}"
height="{LayoutButton.BUTTON_SIZE}" creationComplete="init()"
change="onSelectedItemChanged(event)"
rowCount="10" width="240" >
rowCount="15" width="240" >
<fx:Declarations>
<mate:Listener type="{SwitchedLayoutEvent.SWITCHED_LAYOUT_EVENT}" method="onLayoutChanged" />