Skip to content
Snippets Groups Projects
Commit b0dbe9e3 authored by Eric Rosenbaum's avatar Eric Rosenbaum
Browse files

Flip copy to new button in RTL, and use a class for flipping buttons

parent 8f230936
No related branches found
No related tags found
No related merge requests found
...@@ -171,16 +171,7 @@ $border-radius: 0.25rem; ...@@ -171,16 +171,7 @@ $border-radius: 0.25rem;
margin-bottom: -0.375rem; margin-bottom: -0.375rem;
} }
/* mirror the louder/softer/mute speaker icons when rtl */ [dir="rtl"] .flip-in-rtl img {
[dir="rtl"] .effect-button:nth-of-type(4) img {
transform: scaleX(-1);
}
[dir="rtl"] .effect-button:nth-of-type(5) img {
transform: scaleX(-1);
}
[dir="rtl"] .effect-button:nth-of-type(6) img {
transform: scaleX(-1); transform: scaleX(-1);
} }
......
...@@ -195,7 +195,7 @@ const SoundEditor = props => ( ...@@ -195,7 +195,7 @@ const SoundEditor = props => (
onClick={props.onPaste} onClick={props.onPaste}
/> />
<IconButton <IconButton
className={styles.toolButton} className={classNames(styles.toolButton, styles.flipInRtl)}
img={copyToNewIcon} img={copyToNewIcon}
title={props.intl.formatMessage(messages.copyToNew)} title={props.intl.formatMessage(messages.copyToNew)}
onClick={props.onCopyToNew} onClick={props.onCopyToNew}
...@@ -265,19 +265,19 @@ const SoundEditor = props => ( ...@@ -265,19 +265,19 @@ const SoundEditor = props => (
onClick={props.onSlower} onClick={props.onSlower}
/> />
<IconButton <IconButton
className={styles.effectButton} className={classNames(styles.effectButton, styles.flipInRtl)}
img={louderIcon} img={louderIcon}
title={<FormattedMessage {...messages.louder} />} title={<FormattedMessage {...messages.louder} />}
onClick={props.onLouder} onClick={props.onLouder}
/> />
<IconButton <IconButton
className={styles.effectButton} className={classNames(styles.effectButton, styles.flipInRtl)}
img={softerIcon} img={softerIcon}
title={<FormattedMessage {...messages.softer} />} title={<FormattedMessage {...messages.softer} />}
onClick={props.onSofter} onClick={props.onSofter}
/> />
<IconButton <IconButton
className={styles.effectButton} className={classNames(styles.effectButton, styles.flipInRtl)}
img={muteIcon} img={muteIcon}
title={<FormattedMessage {...messages.mute} />} title={<FormattedMessage {...messages.mute} />}
onClick={props.onMute} onClick={props.onMute}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment