810deb907b
Move all Etherpad's access control from Meteor to a separated [Node application](https://github.com/bigbluebutton/bbb-pads). This new app uses [Etherpad's API](https://etherpad.org/doc/v1.8.4/#index_overview) to create groups and manage session tokens for users to access them. Each group represents one distinct pad at the html5 client. - Removed locked users' access to pads: replaced readOnly pad's access with a new pad's content sharing routine - Pad's access is now controlled by [Etherpad's API](https://etherpad.org/doc/v1.8.4/#index_overview) - Closed captions edited content now reflects at it's live feedback - Improved closed caption's dictation mode live feedback - Moved all Etherpad's API control from Meteor to a separated [app](https://github.com/bigbluebutton/bbb-pads) - Included access control both in akka-apps and bbb-pads
91 lines
1.8 KiB
JavaScript
91 lines
1.8 KiB
JavaScript
import styled from 'styled-components';
|
|
import {
|
|
colorWhite,
|
|
colorGrayDark,
|
|
} from '/imports/ui/stylesheets/styled-components/palette';
|
|
import {
|
|
mdPaddingX,
|
|
mdPaddingY,
|
|
pollHeaderOffset,
|
|
toastContentWidth,
|
|
borderSize,
|
|
borderSizeLarge,
|
|
} from '/imports/ui/stylesheets/styled-components/general';
|
|
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
|
|
import { DivElipsis } from '/imports/ui/stylesheets/styled-components/placeholders';
|
|
import Button from '/imports/ui/components/button/component';
|
|
|
|
const Captions = styled.div`
|
|
background-color: ${colorWhite};
|
|
padding: ${mdPaddingX} ${mdPaddingY} ${mdPaddingX} ${mdPaddingX};
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
|
|
${({ isChrome }) => isChrome && `
|
|
transform: translateZ(0);
|
|
`}
|
|
|
|
@media ${smallOnly} {
|
|
transform: none !important;
|
|
}
|
|
`;
|
|
|
|
const Header = styled.header`
|
|
position: relative;
|
|
top: ${pollHeaderOffset};
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
`;
|
|
|
|
const Title = styled(DivElipsis)`
|
|
flex: 1;
|
|
|
|
& > button, & > button:hover {
|
|
max-width: ${toastContentWidth};
|
|
}
|
|
`;
|
|
|
|
const HideBtn = styled(Button)`
|
|
position: relative;
|
|
background-color: ${colorWhite};
|
|
display: block;
|
|
margin: ${borderSizeLarge};
|
|
margin-bottom: ${borderSize};
|
|
padding-left: 0;
|
|
padding-right: inherit;
|
|
|
|
[dir="rtl"] & {
|
|
padding-left: inherit;
|
|
padding-right: 0;
|
|
}
|
|
|
|
& > i {
|
|
color: ${colorGrayDark};
|
|
font-size: smaller;
|
|
|
|
[dir="rtl"] & {
|
|
-webkit-transform: scale(-1, 1);
|
|
-moz-transform: scale(-1, 1);
|
|
-ms-transform: scale(-1, 1);
|
|
-o-transform: scale(-1, 1);
|
|
transform: scale(-1, 1);
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background-color: ${colorWhite};
|
|
}
|
|
`;
|
|
|
|
export default {
|
|
Captions,
|
|
Header,
|
|
Title,
|
|
HideBtn,
|
|
};
|