bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-settings/styles.js
2022-02-14 20:20:50 +00:00

206 lines
3.7 KiB
JavaScript

import styled from 'styled-components';
import Button from '/imports/ui/components/common/button/component';
import DeviceSelector from '/imports/ui/components/audio/device-selector/component';
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
import {
colorWhite,
colorGrayLight,
colorText,
} from '/imports/ui/stylesheets/styled-components/palette';
import { borderSize } from '/imports/ui/stylesheets/styled-components/general';
const FormWrapper = styled.div`
min-width: 0;
`;
const Form = styled.div`
display: flex;
flex-flow: column;
margin-top: 1.5rem;
`;
const Row = styled.div`
display: flex;
flex-flow: row;
justify-content: space-between;
margin-bottom: 0.7rem;
`;
const EnterAudio = styled.div`
margin-top: 1.5rem;
display: flex;
justify-content: flex-end;
`;
const AudioNote = styled.div`
@media ${smallOnly} {
font-size: 0.8rem;
}
`;
const Col = styled.div`
min-width: 0;
display: flex;
flex-grow: 1;
flex-basis: 0;
margin: 0 1rem 0 0;
[dir="rtl"] & {
margin: 0 0 0 1rem;
}
&:last-child {
margin-right: 0;
margin-left: inherit;
padding: 0 0.1rem 0 4rem;
[dir="rtl"] & {
margin-right: inherit;
margin-left: 0;
padding: 0 4rem 0 0.1rem;
}
}
`;
const FormElement = styled.div`
position: relative;
display: flex;
flex-flow: column;
flex-grow: 1;
`;
const LabelSmall = styled.label`
color: black;
font-size: 0.85rem;
font-weight: 600;
& > :first-child {
margin-top: 0.5rem;
}
`;
const SpacedLeftCol = styled.div`
min-width: 0;
display: flex;
flex-grow: 1;
flex-basis: 0;
margin: 0 1rem 0 0;
[dir="rtl"] & {
margin: 0 0 0 1rem;
}
&:last-child {
margin-right: 0;
margin-left: inherit;
padding: 0 0.1rem 0 4rem;
[dir="rtl"] & {
margin-right: inherit;
margin-left: 0;
padding: 0 4rem 0 0.1rem;
}
}
& label {
flex-grow: 1;
flex-basis: 0;
margin-right: 0;
margin-left: inherit;
padding: 0 0.1rem 0 4rem;
[dir="rtl"] & {
margin-right: inherit;
margin-left: 0;
padding: 0 4rem 0 0.1rem;
}
}
&:before {
content: "";
display: block;
flex-grow: 1;
flex-basis: 0;
margin-right: 1rem;
margin-left: inherit;
[dir="rtl"] & {
margin-right: inherit;
margin-left: 1rem;
}
}
&:last-child {
margin-right: 0;
margin-left: inherit;
padding-right: 0;
padding-left: 0;
[dir="rtl"] & {
margin-right: 0;
margin-left: inherit;
}
}
`;
const BackButton = styled(Button)`
margin: 0 0.5rem 0 0;
border: none;
[dir="rtl"] & {
margin: 0 0 0 0.5rem;
}
@media ${smallOnly} {
margin:0 auto 0 0;
[dir="rtl"] & {
margin:0 0 0 auto;
}
}
&:first-child {
margin: 0 0.5rem 0 0 !important;
}
`;
const DeviceSelectorSelect = styled(DeviceSelector)`
-webkit-appearance: none;
-webkit-border-radius: 0px;
background: ${colorWhite} url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='#667189' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") no-repeat right .35rem center/.4rem .5rem;
background-repeat: no-repeat;
border: 0.07rem solid ${colorGrayLight};
border-radius: .125rem;
color: ${colorText};
width: 100%;
padding: .4rem;
&:hover {
outline: transparent;
outline-style: dotted;
outline-width: ${borderSize};
}
&:focus {
outline: transparent;
outline-width: ${borderSize};
outline-style: solid;
}
`;
export default {
FormWrapper,
Form,
Row,
EnterAudio,
AudioNote,
Col,
FormElement,
LabelSmall,
SpacedLeftCol,
BackButton,
DeviceSelectorSelect,
};