mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-26 03:50:31 +00:00
74 lines
1.4 KiB
SCSS
74 lines
1.4 KiB
SCSS
.traces-table {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
|
|
.resize-table {
|
|
height: calc(100% - 40px);
|
|
overflow: scroll;
|
|
overflow-x: hidden;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 0.2rem;
|
|
height: 0.2rem;
|
|
}
|
|
|
|
.ant-table-wrapper .ant-table-tbody > tr > td {
|
|
border: none;
|
|
background-color: transparent;
|
|
color: var(--bg-vanilla-100);
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 18px;
|
|
padding: 10px 8px;
|
|
font-family: Inter;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ant-table-wrapper .ant-table-thead > tr > th {
|
|
font-family: Inter;
|
|
color: var(--bg-vanilla-100);
|
|
background-color: transparent;
|
|
border: none;
|
|
border-bottom: 0.5px solid var(--bg-slate-400);
|
|
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;
|
|
}
|
|
}
|
|
|
|
.lightMode {
|
|
.traces-table {
|
|
.resize-table {
|
|
.ant-table-wrapper .ant-table-tbody > tr > td {
|
|
background-color: var(--bg-vanilla-100);
|
|
color: var(--bg-ink-500);
|
|
border-color: rgba(0, 0, 0, 0.06);
|
|
}
|
|
.ant-table-wrapper .ant-table-thead > tr > th {
|
|
background-color: var(--bg-vanilla-300);
|
|
color: var(--bg-ink-500);
|
|
border-color: rgba(0, 0, 0, 0.06);
|
|
}
|
|
}
|
|
}
|
|
}
|