2021-10-16 03:07:13 +08:00
|
|
|
import styled from 'styled-components';
|
|
|
|
import {
|
|
|
|
smPaddingX,
|
|
|
|
lgPaddingY,
|
|
|
|
} from '/imports/ui/stylesheets/styled-components/general';
|
|
|
|
import {
|
|
|
|
colorGray,
|
|
|
|
colorGrayLightest,
|
|
|
|
} from '/imports/ui/stylesheets/styled-components/palette';
|
|
|
|
import { fontSizeSmall } from '/imports/ui/stylesheets/styled-components/typography';
|
|
|
|
|
|
|
|
const Hint = styled.span`
|
|
|
|
visibility: hidden;
|
|
|
|
position: absolute;
|
|
|
|
@media (pointer: none) {
|
|
|
|
visibility: visible;
|
|
|
|
position: relative;
|
|
|
|
color: ${colorGray};
|
|
|
|
font-size: ${fontSizeSmall};
|
|
|
|
font-style: italic;
|
|
|
|
padding: ${smPaddingX} 0 0 ${smPaddingX};
|
|
|
|
text-align: left;
|
|
|
|
[dir="rtl"] & {
|
|
|
|
padding-right: ${lgPaddingY} ${lgPaddingY} 0 0;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const Pad = styled.div`
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const IFrame = styled.iframe`
|
|
|
|
width: 100%;
|
2022-06-10 02:16:46 +08:00
|
|
|
height: auto;
|
2021-10-16 03:07:13 +08:00
|
|
|
overflow: hidden;
|
|
|
|
border-style: none;
|
|
|
|
border-bottom: 1px solid ${colorGrayLightest};
|
2022-06-10 02:16:46 +08:00
|
|
|
|
|
|
|
padding-bottom: 5px;
|
2021-10-16 03:07:13 +08:00
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
Hint,
|
|
|
|
Pad,
|
|
|
|
IFrame,
|
|
|
|
};
|