bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/emoji-picker/reactions-bar/styles.js

72 lines
1.3 KiB
JavaScript
Raw Normal View History

2023-06-14 01:51:42 +08:00
import styled from 'styled-components';
import {
colorOffWhite,
colorGrayLightest,
btnPrimaryHoverBg,
btnPrimaryColor,
btnPrimaryBg,
} from '/imports/ui/stylesheets/styled-components/palette';
const Wrapper = styled.div`
display: flex;
padding: .5rem;
`;
const ButtonWrapper = styled.div`
border: none;
cursor: pointer;
height: 2.5rem;
width: 2.5rem;
display: flex;
align-items: center;
border-radius: 50%;
margin: 0 .5rem;
&:hover {
background-color: ${colorOffWhite};
}
& > button {
cursor: pointer;
flex: auto;
}
& > * > span {
height: 1.8rem !important;
width: 1.8rem !important;
}
`;
const RaiseHandButtonWrapper = styled(ButtonWrapper)`
width: auto;
border: 1px solid ${colorGrayLightest};
border-radius: 1.7rem;
padding: 1rem 0.5rem;
${({ active }) => active && `
color: ${btnPrimaryColor};
background-color: ${btnPrimaryBg};
&:hover{
filter: brightness(90%);
color: ${btnPrimaryColor};
background-color: ${btnPrimaryHoverBg} !important;
}
`}
`
const Separator = styled.div`
height: 2.5rem;
width: 0;
border: 1px solid ${colorGrayLightest};
align-self: center;
opacity: .75;
`;
export default {
Wrapper,
ButtonWrapper,
RaiseHandButtonWrapper,
Separator,
};