mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
29 lines
528 B
SCSS
29 lines
528 B
SCSS
@import "common";
|
|
@import "../feeds-panel-shared";
|
|
|
|
.live-up-list {
|
|
@include no-scrollbar();
|
|
.live-detail[data-live-title] {
|
|
color: black;
|
|
body.dark & {
|
|
color: #eee;
|
|
}
|
|
.up-name {
|
|
font-size: 13px !important;
|
|
opacity: 0.6;
|
|
}
|
|
&::before {
|
|
content: attr(data-live-title);
|
|
color: black;
|
|
line-height: 1.5;
|
|
display: block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
body.dark & {
|
|
color: #eee;
|
|
}
|
|
}
|
|
}
|
|
}
|