2021-10-16 03:07:13 +08:00
|
|
|
import styled from 'styled-components';
|
|
|
|
import {
|
|
|
|
colorGray,
|
2022-05-24 03:22:31 +08:00
|
|
|
colorGrayLightest
|
2021-10-16 03:07:13 +08:00
|
|
|
} from '/imports/ui/stylesheets/styled-components/palette';
|
|
|
|
|
|
|
|
const Wrapper = styled.div`
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
`;
|
|
|
|
|
2022-04-08 02:35:24 +08:00
|
|
|
const contentText = `
|
|
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 15px;
|
|
|
|
color: ${colorGray};
|
|
|
|
bottom: 0;
|
|
|
|
box-sizing: border-box;
|
2022-06-03 21:59:06 +08:00
|
|
|
display: block;
|
2022-04-08 02:35:24 +08:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding-top: 1rem;
|
|
|
|
position: absolute;
|
2022-06-10 02:16:46 +08:00
|
|
|
right: 0;
|
|
|
|
left:0;
|
2022-04-08 02:35:24 +08:00
|
|
|
top: 0;
|
2022-06-10 02:16:46 +08:00
|
|
|
white-space: normal;
|
2022-04-08 02:35:24 +08:00
|
|
|
|
2021-10-16 03:07:13 +08:00
|
|
|
|
2022-04-08 02:35:24 +08:00
|
|
|
[dir="ltr"] & {
|
|
|
|
padding-left: 1rem;
|
|
|
|
padding-right: .5rem;
|
|
|
|
}
|
2021-10-16 03:07:13 +08:00
|
|
|
|
2022-04-08 02:35:24 +08:00
|
|
|
[dir="rtl"] & {
|
|
|
|
padding-left: .5rem;
|
|
|
|
padding-right: 1rem;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const Iframe = styled.iframe`
|
|
|
|
border-width: 0;
|
|
|
|
width: 100%;
|
2022-05-24 03:22:31 +08:00
|
|
|
border-top: 1px solid ${colorGrayLightest};
|
|
|
|
border-bottom: 1px solid ${colorGrayLightest};
|
2021-10-16 03:07:13 +08:00
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
Wrapper,
|
2022-04-08 02:35:24 +08:00
|
|
|
Iframe,
|
|
|
|
contentText,
|
2021-10-16 03:07:13 +08:00
|
|
|
};
|