mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-21 09:26:52 +00:00
41 lines
1009 B
TypeScript
41 lines
1009 B
TypeScript
|
|
import { themeColors } from 'constants/theme';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const TableStyled = styled.table`
|
||
|
|
width: 100%;
|
||
|
|
border-top: 1px solid rgba(253, 253, 253, 0.12);
|
||
|
|
border-radius: 2px 2px 0 0;
|
||
|
|
border-collapse: separate;
|
||
|
|
border-spacing: 0;
|
||
|
|
border-inline-start: 1px solid rgba(253, 253, 253, 0.12);
|
||
|
|
border-inline-end: 1px solid rgba(253, 253, 253, 0.12);
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const TableCellStyled = styled.td`
|
||
|
|
padding: 0.5rem;
|
||
|
|
border-inline-end: 1px solid rgba(253, 253, 253, 0.12);
|
||
|
|
border-top: 1px solid rgba(253, 253, 253, 0.12);
|
||
|
|
background-color: ${themeColors.lightBlack};
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const TableRowStyled = styled.tr`
|
||
|
|
&:hover {
|
||
|
|
${TableCellStyled} {
|
||
|
|
background-color: #1d1d1d;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const TableHeaderCellStyled = styled.th`
|
||
|
|
padding: 0.5rem;
|
||
|
|
border-inline-end: 1px solid rgba(253, 253, 253, 0.12);
|
||
|
|
background-color: #1d1d1d;
|
||
|
|
&:first-child {
|
||
|
|
border-start-start-radius: 2px;
|
||
|
|
}
|
||
|
|
&:last-child {
|
||
|
|
border-start-end-radius: 2px;
|
||
|
|
border-inline-end: none;
|
||
|
|
}
|
||
|
|
`;
|