diff --git a/bigbluebutton-client/branding/default/style/css/V2Theme.css b/bigbluebutton-client/branding/default/style/css/V2Theme.css
index 8a702627be..b557ee0521 100644
--- a/bigbluebutton-client/branding/default/style/css/V2Theme.css
+++ b/bigbluebutton-client/branding/default/style/css/V2Theme.css
@@ -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;
diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/screenshare/view/components/ScreensharePublishWindow.mxml b/bigbluebutton-client/src/org/bigbluebutton/modules/screenshare/view/components/ScreensharePublishWindow.mxml
index 9cd2f62ec9..986942acf6 100644
--- a/bigbluebutton-client/src/org/bigbluebutton/modules/screenshare/view/components/ScreensharePublishWindow.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/modules/screenshare/view/components/ScreensharePublishWindow.mxml
@@ -26,7 +26,6 @@ with BigBlueButton; if not, see .
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"
diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/screenshare/view/components/WebRTCDesktopPublishWindow.mxml b/bigbluebutton-client/src/org/bigbluebutton/modules/screenshare/view/components/WebRTCDesktopPublishWindow.mxml
index 1089a9b852..945196a1ee 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/modules/screenshare/view/components/WebRTCDesktopPublishWindow.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/modules/screenshare/view/components/WebRTCDesktopPublishWindow.mxml
@@ -26,7 +26,6 @@ with BigBlueButton; if not, see .
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"
diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/users/views/BreakoutRoomSettings.mxml b/bigbluebutton-client/src/org/bigbluebutton/modules/users/views/BreakoutRoomSettings.mxml
index 76271b5982..5244efa41d 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/modules/users/views/BreakoutRoomSettings.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/modules/users/views/BreakoutRoomSettings.mxml
@@ -277,7 +277,7 @@ with BigBlueButton; if not, see .
-
+
diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/UserGraphic.as b/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/UserGraphic.as
index d9e3e3372c..494db394b7 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/UserGraphic.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/UserGraphic.as
@@ -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);
}
diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/UserGraphicHolder.mxml b/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/UserGraphicHolder.mxml
index 11dbeebc5b..f51b61096f 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/UserGraphicHolder.mxml
+++ b/bigbluebutton-client/src/org/bigbluebutton/modules/videoconf/views/UserGraphicHolder.mxml
@@ -26,7 +26,7 @@ with BigBlueButton; if not, see .
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()" >
@@ -41,12 +41,11 @@ with BigBlueButton; if not, see .