mirror of
https://github.com/tencentmusic/supersonic.git
synced 2026-04-18 12:24:21 +08:00
53 lines
786 B
Plaintext
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;
|
|
}
|
|
}
|
|
}
|