mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-20 20:01:10 +08:00

* fix: restricted column long value to 3 line and line clamped * fix: added tooltip prop as prop for generic component and passed style from consumer * fix: comment resolved * fix: refactored styles * fix: updated snapshot * fix: removed console log
90 lines
1.7 KiB
SCSS
90 lines
1.7 KiB
SCSS
.logs-table {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
|
|
.resize-table {
|
|
height: calc(100% - 70px);
|
|
overflow: scroll;
|
|
overflow-x: hidden;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 0.2rem;
|
|
height: 0.2rem;
|
|
}
|
|
|
|
.ant-table-wrapper .ant-table-tbody > tr > td {
|
|
font-size: 13px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 18px;
|
|
font-family: Inter;
|
|
.ant-typography {
|
|
background-color: transparent;
|
|
color: var(--bg-vanilla-100);
|
|
margin-bottom: 0;
|
|
font-size: 13px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 18px;
|
|
font-family: Inter;
|
|
}
|
|
padding: 14px 8px;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ant-table-wrapper .ant-table-header {
|
|
border-bottom: 0.5px solid var(--bg-slate-400);
|
|
}
|
|
|
|
.ant-table-wrapper .ant-table-thead > tr > th {
|
|
font-family: Inter;
|
|
color: var(--bg-vanilla-100);
|
|
background-color: transparent;
|
|
border: none;
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 22px;
|
|
letter-spacing: 0.5px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.ant-table-wrapper .ant-table-thead > tr > th::before {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.controller {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 40px;
|
|
justify-content: end;
|
|
padding: 0 8px;
|
|
margin: 12px 0 2px;
|
|
}
|
|
}
|
|
|
|
.lightMode {
|
|
.logs-table {
|
|
.resize-table {
|
|
.ant-table-wrapper .ant-table-tbody > tr > td {
|
|
background-color: var(--bg-vanilla-100);
|
|
.ant-typography {
|
|
color: var(--bg-ink-500);
|
|
}
|
|
}
|
|
.ant-table-wrapper .ant-table-thead > tr > th {
|
|
background-color: var(--bg-vanilla-100);
|
|
color: var(--bg-ink-500);
|
|
}
|
|
|
|
.ant-table-wrapper .ant-table-header {
|
|
border-bottom: 0.5px solid var(--bg-vanilla-400);
|
|
}
|
|
}
|
|
}
|
|
}
|