Files
supersonic/webapp/packages/chat-sdk/src/styles/global.less
2023-11-20 16:58:53 +08:00

53 lines
786 B
Plaintext

// @import '~antd/dist/antd.css';
@import './index.less';
@prefix-cls: ~'@{supersonic-chat-prefix}';
.@{prefix-cls} {
&-dimension,
&-metric {
position: relative;
&::after {
position: absolute;
right: 0.5px;
bottom: -2px;
left: 0.5px;
height: 2px;
margin: 0 1px;
content: '';
}
}
&-dimension {
&::after {
background: var(--chat-blue);
}
}
&-metric {
&::after {
background: var(--primary-green);
}
}
&-table-row {
cursor: pointer;
}
&-even-row {
background-color: #fbfbfb;
}
&-no-border-table {
.ant-table-cell {
border: none !important;
}
.ant-table-tbody > tr.ant-table-row:hover > td {
background-color: #efefef !important;
}
}
}