bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/styles.js
2023-04-27 18:31:11 -03:00

139 lines
2.3 KiB
JavaScript

import styled from 'styled-components';
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
import { smPaddingX, smPaddingY } from '/imports/ui/stylesheets/styled-components/general';
import { colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
import Button from '/imports/ui/components/common/button/component';
const ActionsBar = styled.div`
display: flex;
flex-direction: row;
align-items: center;
`;
const Left = styled.div`
display: inherit;
flex: 0;
> * {
margin: 0 ${smPaddingX};
@media ${smallOnly} {
margin: 0 ${smPaddingY};
}
}
@media ${smallOnly} {
bottom: ${smPaddingX};
left: ${smPaddingX};
right: auto;
[dir="rtl"] & {
left: auto;
right: ${smPaddingX};
}
}
`;
const Center = styled.div`
display: flex;
flex-direction: row;
flex: 1;
justify-content: center;
> * {
margin: 0 ${smPaddingX};
@media ${smallOnly} {
margin: 0 ${smPaddingY};
}
}
`;
const Right = styled.div`
display: flex;
flex-direction: row;
justify-content: center;
position: relative;
[dir="rtl"] & {
right: auto;
left: ${smPaddingX};
}
@media ${smallOnly} {
right: 0;
left: 0;
display: contents;
}
> * {
margin: 0 ${smPaddingX};
@media ${smallOnly} {
margin: 0 ${smPaddingY};
}
}
`;
const RaiseHandButton = styled(Button)`
${({ ghost }) => ghost && `
& > span {
box-shadow: none;
background-color: transparent !important;
border-color: ${colorWhite} !important;
}
`}
`;
const ButtonContainer = styled.div`
width: 100%;
display: flex;
justify-content: center;
> * {
margin: 8px;
}
`;
const InteractionsDropdown = styled.div`
position: relative;
`;
const Wrapper = styled.div`
.emoji-mart-bar {
display: none;
}
.emoji-mart-search {
display: none;
}
.emoji-mart-category[aria-label="Frequently Used"] {
display: none;
}
.emoji-mart-category-label{
display: none;
}
.emoji-mart{
border: none;
}
@media(min-width: 600px) {
.emoji-mart-scroll{
overflow:hidden;
padding: 0;
height: 270px;
width: 280px;
}
}
`;
export default {
ActionsBar,
Left,
Center,
Right,
RaiseHandButton,
ButtonContainer,
InteractionsDropdown,
Wrapper,
};