From 6ca9bb14659bab878b68dde6f80073ffa114481e Mon Sep 17 00:00:00 2001 From: Maxim Khlobystov Date: Mon, 25 May 2015 15:27:06 -0700 Subject: [PATCH] Got back the label indicating the current slide's number. --- .../app/client/stylesheets/whiteboard.less | 14 +++++++++++++- .../app/client/views/whiteboard/whiteboard.html | 3 +++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/bigbluebutton-html5/app/client/stylesheets/whiteboard.less b/bigbluebutton-html5/app/client/stylesheets/whiteboard.less index 9b2355ff14..1e20e2e599 100755 --- a/bigbluebutton-html5/app/client/stylesheets/whiteboard.less +++ b/bigbluebutton-html5/app/client/stylesheets/whiteboard.less @@ -124,7 +124,7 @@ display: block; margin-left: auto; margin-right: auto; - width: 105px; + width: 138px; height: 100%; } @@ -145,3 +145,15 @@ color: extract(@black, 1); } } + +.previousSlide { + float: left; +} + +.nextSlide { + float: right; +} + +#presentationProgress { + font-size: 25px; +} diff --git a/bigbluebutton-html5/app/client/views/whiteboard/whiteboard.html b/bigbluebutton-html5/app/client/views/whiteboard/whiteboard.html index 29b96e1eeb..98d0832bf0 100755 --- a/bigbluebutton-html5/app/client/views/whiteboard/whiteboard.html +++ b/bigbluebutton-html5/app/client/views/whiteboard/whiteboard.html @@ -11,6 +11,9 @@
{{> makeButton btn_class="switchSlideButton previousSlide" i_class="ion-arrow-left-a" rel="tooltip" data_placement="top" title="Previous"}} + + {{presentationProgress}} + {{> makeButton btn_class="switchSlideButton nextSlide" i_class="ion-arrow-right-a" rel="tooltip" data_placement="top" title="Next"}}