Style improve and make screen sharing windows background white.

This commit is contained in:
Ghazi Triki 2017-08-15 10:11:15 +01:00
parent 51253910ac
commit ccbd1b8070
6 changed files with 22 additions and 17 deletions

View File

@ -421,6 +421,9 @@ users|RoomActionsRenderer {
}
.breakoutTipBox {
backgroundColor : #CDD4DB;
paddingLeft : 10;
paddingRight : 10;
horizontalAlign : center;
}
@ -815,7 +818,7 @@ flexlib|MDIWindow {
paddingLeft : 0;
paddingRight : 0;
paddingTop : 0;
borderThicknessRight : 0;
borderThicknessLeft : 0;
@ -1091,10 +1094,9 @@ presentation|UploadedPresentationRenderer {
}
.presentationUploadFileFormatHintBoxStyle, .audioBroswerHintBoxStyle {
backgroundColor : #CDD4DB;
dropShadowEnabled : false;
paddingLeft : 10;
paddingRight : 10;
backgroundColor : #CDD4DB;
paddingLeft : 10;
paddingRight : 10;
}
.presentationUploadFileFormatHintTextStyle, .audioBroswerHintTextStyle {
@ -1391,6 +1393,7 @@ users|MoodMenu {
*/
videoconf|UserGraphicHolder {
backgroundColor : #FFFFFF;
iconPresenter : Embed(source="assets/swf/v2_skin.swf", symbol="Icon_Video_Presenter");
iconModerator : Embed(source="assets/swf/v2_skin.swf", symbol="Icon_Video_Moderator");
iconClose : Embed(source="assets/swf/v2_skin.swf", symbol="Icon_Close_Video");
@ -1398,6 +1401,13 @@ videoconf|UserGraphicHolder {
iconExitFullScreen : Embed(source="assets/swf/v2_skin.swf", symbol="Icon_Exit_Fullscreen_White");
}
.userGraphicBackground {
backgroundColor : #FFFFFF;
borderStyle : solid;
borderColor : #000000;
borderThickness : 0;
}
.videoToolbarBackgroundTalkingStyle {
backgroundColor : #1070D7;
backgroundAlpha : 0.5;

View File

@ -26,7 +26,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
implements="org.bigbluebutton.common.IBbbModuleWindow"
xmlns:mate="http://mate.asfusion.com/"
xmlns:common="org.bigbluebutton.common.*"
backgroundColor="#C0C0C0"
initialize="init()"
creationComplete="onCreationComplete()"
verticalScrollPolicy="off" horizontalScrollPolicy="off"

View File

@ -26,7 +26,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
implements="org.bigbluebutton.common.IBbbModuleWindow"
xmlns:mate="http://mate.asfusion.com/"
xmlns:dspub="org.bigbluebutton.common.*"
backgroundColor="#C0C0C0"
initialize="init()"
creationComplete="onCreationComplete()"
verticalScrollPolicy="off" horizontalScrollPolicy="off"

View File

@ -277,7 +277,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
<mx:TextArea width="100%" borderSkin="{null}" editable="false"
id="textArea" text="{ResourceUtil.getInstance().getString('bbb.users.breakout.breakoutRooms')}"
styleName="titleWindowStyle"/>
<mx:Canvas width="100%" styleName="breakoutTipBox" backgroundColor="0xcccccc">
<mx:Canvas width="100%" styleName="breakoutTipBox">
<mx:Text horizontalCenter="0" text="{ResourceUtil.getInstance().getString('bbb.users.breakout.dragAndDropToolTip')}"/>
</mx:Canvas>

View File

@ -15,18 +15,16 @@ package org.bigbluebutton.modules.videoconf.views
protected var _origHeight:Number = 240;
protected var _background:Canvas;
protected const BORDER_THICKNESS:int = 0;
protected var BORDER_THICKNESS:int = 0;
public function UserGraphic() {
super();
_background = new Canvas();
_background.setStyle("backgroundColor", "white");
_background.setStyle("borderStyle", "solid");
_background.setStyle("borderColor", "#000000");
_background.setStyle("borderThickness", BORDER_THICKNESS);
_background.styleName = "userGraphicBackground";
_background.horizontalScrollPolicy = "off";
_background.verticalScrollPolicy = "off";
BORDER_THICKNESS = _background.getStyle("borderThickness");
addChild(_background);
}

View File

@ -26,7 +26,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
xmlns:views="org.bigbluebutton.modules.videoconf.views.*"
initialize="init()"
creationComplete="onCreationComplete()"
backgroundColor="white" width="320" height="240"
width="320" height="240"
mouseOver="onCanvasMouseOver()" mouseOut="onCanvasMouseOut()" >
<fx:Declarations>
@ -41,12 +41,11 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
<fx:Script>
<![CDATA[
import com.asfusion.mate.events.Dispatcher;
import org.as3commons.logging.api.ILogger;
import org.as3commons.logging.api.getClassLogger;
import mx.core.UIComponent;
import org.as3commons.logging.api.ILogger;
import org.as3commons.logging.api.getClassLogger;
import org.bigbluebutton.common.Role;
import org.bigbluebutton.core.EventConstants;
import org.bigbluebutton.core.Options;