2023-02-15 11:25:15 +02:00
|
|
|
import { blue } from '@ant-design/colors';
|
|
|
|
|
import { Col, Row } from 'antd';
|
|
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
|
|
export const RawLogViewContainer = styled(Row)<{ $isDarkMode: boolean }>`
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-size: 0.625rem;
|
|
|
|
|
line-height: 1.25rem;
|
|
|
|
|
|
|
|
|
|
transition: background-color 0.2s ease-in;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: ${({ $isDarkMode }): string =>
|
|
|
|
|
$isDarkMode ? 'rgba(255,255,255,0.1)' : 'rgba(0, 0, 0, 0.1)'};
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
export const ExpandIconWrapper = styled(Col)`
|
|
|
|
|
color: ${blue[6]};
|
|
|
|
|
padding: 0.25rem 0.375rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
`;
|
2023-02-28 11:03:02 +05:30
|
|
|
|
|
|
|
|
interface RawLogContentProps {
|
|
|
|
|
linesPerRow: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const RawLogContent = styled.div<RawLogContentProps>`
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
font-family: Fira Code, monospace;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: ${(props): number => props.linesPerRow};
|
|
|
|
|
line-clamp: ${(props): number => props.linesPerRow};
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
line-height: 2rem;
|
|
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
`;
|