From 71bd8894461b37889f10e5109bc6e0704e120584 Mon Sep 17 00:00:00 2001 From: Tainan Felipe <tainanfelipe214@gmail.com> Date: Tue, 14 Aug 2018 10:30:46 -0300 Subject: [PATCH] fix toolbars losing border radius when overlap the presentation --- .../ui/components/presentation/presentation-toolbar/styles.scss | 2 ++ .../ui/components/whiteboard/whiteboard-toolbar/styles.scss | 1 + 2 files changed, 3 insertions(+) diff --git a/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/styles.scss b/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/styles.scss index d9d863df26..63b7cadc87 100644 --- a/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/styles.scss +++ b/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/styles.scss @@ -3,6 +3,7 @@ $controls-color: $color-gray !default; $controls-background: $color-white !default; +$toolbar-button-border-radius: 5px; .presentationToolbarWrapper, .zoomWrapper { @@ -16,6 +17,7 @@ $controls-background: $color-white !default; position: absolute; bottom: .8rem; box-shadow: 0 0 10px -2px rgba(0, 0, 0, .25); + border-radius: $toolbar-button-border-radius; align-self: center; justify-content: center; z-index: 1; diff --git a/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-toolbar/styles.scss b/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-toolbar/styles.scss index 2878fd57bc..60d9d7fbd1 100644 --- a/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-toolbar/styles.scss +++ b/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-toolbar/styles.scss @@ -34,6 +34,7 @@ $toolbar-list-color: $color-gray; align-items: center; justify-content: center; box-shadow: $toolbar-box-shadow; + border-radius: $toolbar-button-border-radius; pointer-events: all; .buttonWrapper > .toolbarButton { -- GitLab