bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/chat/chat-graphql/chat-editing-warning/styles.ts

62 lines
1.1 KiB
TypeScript

import styled from 'styled-components';
import { colorGrayLight, colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
import { xlPadding, xsPadding } from '/imports/ui/stylesheets/styled-components/general';
export const Root = styled.div`
position: relative;
`;
export const Container = styled.div`
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
color: ${colorGrayLight};
z-index: 10;
background-color: ${colorWhite};
[dir='ltr'] & {
margin-right: ${xlPadding};
}
[dir='rtl'] & {
margin-left: ${xlPadding};
}
`;
export const Highlighted = styled.span`
font-weight: bold;
`;
export const Left = styled.span`
display: flex;
align-items: center;
gap: ${xsPadding};
`;
export const Cancel = styled.button`
background: none;
outline: none;
border: none;
color: inherit;
padding: 0.125rem;
border-radius: 0.5rem;
text-decoration: underline;
cursor: pointer;
&:hover {
opacity: .75;
}
&:focus {
box-shadow: inset 0 0 0.125rem ${colorGrayLight};
}
`;
export default {
Container,
Left,
Cancel,
Root,
};