diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx index 4e36813982aae0b1b04b18a63ab48b3ff3141374..0e6ee00c65688a084533d5426f1756f7ffd359ca 100755 --- a/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx @@ -209,7 +209,6 @@ class ActionsDropdown extends PureComponent { <Button hideLabel aria-label={intl.formatMessage(intlMessages.actionsLabel)} - className={styles.button} label={intl.formatMessage(intlMessages.actionsLabel)} icon="plus" color="primary" diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/captions/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/captions/component.jsx index 3a09d38749f79035b474548fb3d046ca0b6d813d..2ff8328728a4573ae8f4a4c9a5068696ff071798 100644 --- a/bigbluebutton-html5/imports/ui/components/actions-bar/captions/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/actions-bar/captions/component.jsx @@ -24,7 +24,7 @@ const intlMessages = defineMessages({ const CaptionsButton = ({ intl, isActive, handleOnClick }) => ( <Button - className={cx(styles.button, isActive || styles.btn)} + className={cx(isActive || styles.btn)} icon="closed_caption" label={intl.formatMessage(isActive ? intlMessages.stop : intlMessages.start)} color={isActive ? 'primary' : 'default'} diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/desktop-share/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/desktop-share/component.jsx index 3b8ca5bec454f7a7cacb96d71485db5740443e3a..b42908138321762cb3d6cbfc69d092a6b0d8180e 100755 --- a/bigbluebutton-html5/imports/ui/components/actions-bar/desktop-share/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/actions-bar/desktop-share/component.jsx @@ -161,7 +161,7 @@ const DesktopShare = ({ return (shouldAllowScreensharing ? ( <Button - className={cx(styles.button, isVideoBroadcasting || styles.btn)} + className={cx(isVideoBroadcasting || styles.btn)} disabled={(!isMeteorConnected && !isVideoBroadcasting) || !screenshareDataSavingSetting} icon={isVideoBroadcasting ? 'desktop' : 'desktop_off'} label={intl.formatMessage(vLabel)} diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/presentation-options/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/presentation-options/component.jsx index 3f442c6a74f257a6649be0fef820537ac08ebb95..909115eb6c91e15429b25d05605737a25cb78e8a 100755 --- a/bigbluebutton-html5/imports/ui/components/actions-bar/presentation-options/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/actions-bar/presentation-options/component.jsx @@ -3,7 +3,6 @@ import PropTypes from 'prop-types'; import { defineMessages, injectIntl, intlShape } from 'react-intl'; import Button from '/imports/ui/components/button/component'; import MediaService from '/imports/ui/components/media/service'; -import { styles } from '../styles'; const propTypes = { intl: intlShape.isRequired, @@ -27,7 +26,6 @@ const PresentationOptionsContainer = ({ intl, toggleSwapLayout, isThereCurrentPr if (shouldUnswapLayout()) toggleSwapLayout(); return ( <Button - className={styles.button} icon="presentation" label={intl.formatMessage(intlMessages.restorePresentationLabel)} description={intl.formatMessage(intlMessages.restorePresentationDesc)}