diff --git a/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/component.jsx b/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/component.jsx index ed67a77523b00eade8f4edc6bab6797e181710d4..9b5f339dd61771e2f84da537197d292aab748d6f 100755 --- a/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/component.jsx @@ -10,15 +10,14 @@ export default class RecordingIndicator extends Component { render() { const { beingRecorded } = this.props; - let dividerNames = {}; - dividerNames[styles.divider] = beingRecorded; + let divide = {}; + divide[styles.divider] = beingRecorded; let classNames = {}; classNames[styles.indicator] = beingRecorded; return ( - <div> - <span className={cx(dividerNames)}></span> + <div className={cx(divide)}> <span className={cx(classNames)}></span> </div> ); diff --git a/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/styles.scss b/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/styles.scss index af4174609dbfc67a20d044b507effe9da0100006..5c38de43f482f87084de9348222aa4f79b00e050 100755 --- a/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/styles.scss +++ b/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/styles.scss @@ -2,21 +2,21 @@ .indicator { display: inline-block; - position: relative; + position: absolute;; width: $font-size-base; height: $font-size-base; border-radius: 50%; border: 1px solid $color-white; - margin-left: 100%; + margin-left: 1000%; &:after { content: ''; width: $font-size-base / 2; height: $font-size-base / 2; position: absolute; - top: 50%; + top: 140%; left: 50%; - margin-top: -($font-size-base / 4); + margin-top: -$font-size-base; margin-left: -($font-size-base / 4); border-radius: 50%; background-color: $color-danger; @@ -25,16 +25,8 @@ .divider { position: relative; - - &:after { - content: ''; - position: absolute; - top: 20%; - width: 1px; - margin-left: -($font-size-base / 4); - background: $color-white; - height: $font-size-base * 1.0; - margin: 0 $line-height-computed / 2; - opacity: .75; - } + width: 1px; + background: $color-white; + height: $font-size-base * 1.0; + margin: 0 $line-height-computed / 2; }