bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/captions/reader-menu/styles.js

134 lines
2.3 KiB
JavaScript
Raw Normal View History

2021-10-25 23:02:24 +08:00
import styled from 'styled-components';
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
import ModalSimple from '/imports/ui/components/common/modal/simple/component';
2021-10-26 20:37:26 +08:00
import {
colorGrayDark,
2021-10-26 20:37:26 +08:00
colorWhite,
colorGrayLabel,
colorGrayLight,
colorPrimary,
} from '/imports/ui/stylesheets/styled-components/palette';
import { borderSize, borderSizeLarge } from '/imports/ui/stylesheets/styled-components/general';
2021-10-25 23:02:24 +08:00
const ReaderMenuModal = styled(ModalSimple)`
2021-10-25 23:02:24 +08:00
padding: 1rem;
`;
const Title = styled.header`
display: block;
color: ${colorGrayDark};
2021-10-25 23:02:24 +08:00
font-size: 1.4rem;
text-align: center;
`;
const Col = styled.div`
display: flex;
flex-direction: column;
height: 100%;
margin: 0 1.5rem 0 0;
justify-content: center;
[dir="rtl"] & {
margin: 0 0 0 1.5rem;
}
@media ${smallOnly} {
width: 100%;
height: unset;
}
`;
const Row = styled.div`
display: flex;
justify-content: space-between;
padding: .2rem 0 .2rem 0;
`;
const Label = styled.div`
flex: 1 0 0;
`;
const Select = styled.select`
2021-10-26 20:37:26 +08:00
background-color: ${colorWhite};
2021-10-25 23:02:24 +08:00
border-radius: 0.3rem;
2021-10-26 20:37:26 +08:00
color: ${colorGrayLabel};
2021-10-25 23:02:24 +08:00
height: 1.6rem;
margin-top: 0.4rem;
width: 50%;
`;
const Swatch = styled.div`
flex: 1 0 0;
2021-10-26 20:37:26 +08:00
border-radius: ${borderSize};
border: ${borderSize} solid ${colorGrayLight};
2021-10-25 23:02:24 +08:00
display: inline-block;
vertical-align: middle;
cursor: pointer;
&:focus {
outline: none;
2021-10-26 20:37:26 +08:00
box-shadow: inset 0 0 0 ${borderSizeLarge} ${colorPrimary};
border-radius: ${borderSize};
2021-10-25 23:02:24 +08:00
}
`;
const SwatchInner = styled.div`
width: auto;
height: 1.1rem;
2021-10-26 20:37:26 +08:00
border-radius: ${borderSize};
2021-10-25 23:02:24 +08:00
`;
const ColorPickerPopover = styled.div`
position: absolute;
z-index: 1001;
`;
const ColorPickerOverlay = styled.div`
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
`;
const Footer = styled.div`
display: flex;
`;
const Actions = styled.div`
margin-left: auto;
margin-right: 3px;
[dir="rtl"] & {
margin-right: auto;
margin-left: 3px;
}
> * {
&:first-child {
margin-right: 3px;
margin-left: inherit;
[dir="rtl"] & {
margin-right: inherit;
margin-left: 3px;
}
}
}
`;
export default {
ReaderMenuModal,
Title,
Col,
Row,
Label,
Select,
Swatch,
SwatchInner,
ColorPickerPopover,
ColorPickerOverlay,
Footer,
Actions,
};