replaced some icons from the presentation module by the google's material design icons

This commit is contained in:
Felipe Cecagno 2015-01-24 17:18:30 -02:00
parent b86efc9119
commit 3cf904d8d7
9 changed files with 9 additions and 9 deletions

View File

@ -270,23 +270,23 @@ DataGrid {
} }
.presentationUploadButtonStyle { .presentationUploadButtonStyle {
icon: Embed('assets/images/upload.png'); icon: Embed('assets/images/ic_file_upload_16px.png');
} }
.presentationBackButtonStyle { .presentationBackButtonStyle {
icon: Embed('assets/images/left-arrow.png'); icon: Embed('assets/images/ic_arrow_back_24px.png');
} }
.presentationBackButtonDisabledStyle { .presentationBackButtonDisabledStyle {
icon: Embed('assets/images/left-arrow-disabled.png'); icon: Embed('assets/images/ic_arrow_back_grey_24px.png');
} }
.presentationForwardButtonStyle { .presentationForwardButtonStyle {
icon: Embed('assets/images/right-arrow.png'); icon: Embed('assets/images/ic_arrow_forward_24px.png');
} }
.presentationForwardButtonDisabledStyle { .presentationForwardButtonDisabledStyle {
icon: Embed('assets/images/right-arrow-disabled.png'); icon: Embed('assets/images/ic_arrow_forward_grey_24px.png');
} }
.presentationFitToWidthButtonStyle { .presentationFitToWidthButtonStyle {
@ -298,7 +298,7 @@ DataGrid {
} }
.presentationDownloadButtonStyle { .presentationDownloadButtonStyle {
icon: Embed('assets/images/disk.png'); icon: Embed('assets/images/ic_file_download_16px.png');
} }
.presentationZoomSliderStyle{ .presentationZoomSliderStyle{
@ -855,4 +855,4 @@ Alert {
.statusMessageStyle { .statusMessageStyle {
fontSize: 12; fontSize: 12;
paddingTop: 0; paddingTop: 0;
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 620 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 358 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

View File

@ -625,10 +625,10 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
<views:SlideView id="slideView" width="100%" height="100%" visible="false" mouseDown="mouseDown = true" <views:SlideView id="slideView" width="100%" height="100%" visible="false" mouseDown="mouseDown = true"
mouseUp="mouseDown = false" verticalScrollPolicy="off" horizontalScrollPolicy="off" tabIndex="{baseIndex+4}"/> mouseUp="mouseDown = false" verticalScrollPolicy="off" horizontalScrollPolicy="off" tabIndex="{baseIndex+4}"/>
<mx:ControlBar id="presCtrlBar" name="presCtrlBar" width="100%" height="{CONTROL_BAR_HEIGHT}" styleName="presentationWindowControlsStyle" > <mx:ControlBar id="presCtrlBar" name="presCtrlBar" width="100%" height="{CONTROL_BAR_HEIGHT}" styleName="presentationWindowControlsStyle" >
<mx:Button id="downloadPres" visible="true" height="30" styleName="presentationDownloadButtonStyle" <mx:Button id="downloadPres" visible="true" height="30" width="30" styleName="presentationDownloadButtonStyle"
toolTip="{ResourceUtil.getInstance().getString('bbb.presentation.downloadPresBtn.toolTip')}" toolTip="{ResourceUtil.getInstance().getString('bbb.presentation.downloadPresBtn.toolTip')}"
click="onDownloadButtonClicked()" tabIndex="{baseIndex+5}"/> click="onDownloadButtonClicked()" tabIndex="{baseIndex+5}"/>
<mx:Button id="uploadPres" visible="false" height="30" styleName="presentationUploadButtonStyle" <mx:Button id="uploadPres" visible="false" height="30" width="30" styleName="presentationUploadButtonStyle"
toolTip="{ResourceUtil.getInstance().getString('bbb.presentation.uploadPresBtn.toolTip')}" toolTip="{ResourceUtil.getInstance().getString('bbb.presentation.uploadPresBtn.toolTip')}"
click="onUploadButtonClicked()" tabIndex="{baseIndex+5}"/> click="onUploadButtonClicked()" tabIndex="{baseIndex+5}"/>
<mx:Spacer width="100%" id="spacer1"/> <mx:Spacer width="100%" id="spacer1"/>