replaced some icons from the presentation module by the google's material design icons
@ -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{
|
||||||
|
Before Width: | Height: | Size: 620 B |
After Width: | Height: | Size: 233 B |
After Width: | Height: | Size: 328 B |
After Width: | Height: | Size: 248 B |
After Width: | Height: | Size: 358 B |
After Width: | Height: | Size: 215 B |
After Width: | Height: | Size: 219 B |
@ -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"/>
|
||||||
|