mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
27 lines
493 B
CSS
27 lines
493 B
CSS
.gui-settings-tooltip
|
|
{
|
|
position: fixed;
|
|
left: 420px;
|
|
color: white;
|
|
background: #0008;
|
|
padding: 1rem;
|
|
font-size: 12pt;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
transition: all .2s ease-out .8s;
|
|
opacity: 0;
|
|
min-width: 100%;
|
|
max-height: 60%;
|
|
line-height: 24px;
|
|
white-space: pre-wrap;
|
|
pointer-events: none;
|
|
}
|
|
.gui-settings-tooltip.show
|
|
{
|
|
pointer-events: initial;
|
|
opacity: 1;
|
|
}
|
|
.gui-settings-tooltip span
|
|
{
|
|
font-weight: bold;
|
|
} |