bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-controls/styles.js

103 lines
2.1 KiB
JavaScript
Raw Normal View History

2021-11-09 20:45:31 +08:00
import styled, { css, keyframes } from 'styled-components';
2022-02-15 04:20:50 +08:00
import Button from '/imports/ui/components/common/button/component';
2021-11-09 20:45:31 +08:00
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
import { colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
import { smPaddingX, smPaddingY } from '/imports/ui/stylesheets/styled-components/general';
const pulse = keyframes`
0% {
box-shadow: 0 0 0 0 white;
}
70% {
box-shadow: 0 0 0 0.5625rem transparent;
}
100% {
box-shadow: 0 0 0 0 transparent;
}
`;
const LeaveButtonWithoutLiveStreamSelector = styled(Button)`
${({ ghost }) => ghost && `
span {
background-color: transparent !important;
border-color: ${colorWhite} !important;
}
`}
`;
const MuteToggleButton = styled(Button)`
margin-right: ${smPaddingX};
margin-left: 0;
@media ${smallOnly} {
margin-right: ${smPaddingY};
}
[dir="rtl"] & {
margin-left: ${smPaddingX};
margin-right: 0;
@media ${smallOnly} {
margin-left: ${smPaddingY};
}
}
${({ ghost }) => ghost && `
span {
background-color: transparent !important;
border-color: ${colorWhite} !important;
}
`}
${({ talking }) => talking && `
border-radius: 50%;
`}
${({ talking, animations }) => talking && animations && css`
animation: ${pulse} 1s infinite ease-in;
`}
${({ talking, animations }) => talking && !animations && css`
& span {
content: '';
outline: none !important;
background-clip: padding-box;
box-shadow: 0 0 0 4px rgba(255,255,255,.5);
}
`}
`;
const Container = styled.span`
display: flex;
flex-flow: row;
position: relative;
& > div {
position: relative;
}
& > :last-child {
margin-left: ${smPaddingX};
margin-right: 0;
@media ${smallOnly} {
margin-left: ${smPaddingY};
}
[dir="rtl"] & {
margin-left: 0;
margin-right: ${smPaddingX};
@media ${smallOnly} {
margin-right: ${smPaddingY};
}
}
}
`;
export default {
LeaveButtonWithoutLiveStreamSelector,
MuteToggleButton,
Container,
};