mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-24 19:28:15 +03:00
e8219e458d
Depends on system font's capabilities, so may not work.
33 lines
602 B
CSS
33 lines
602 B
CSS
.name-text {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
display: inline;
|
|
unicode-bidi: isolate;
|
|
|
|
b {
|
|
font-weight: 500;
|
|
unicode-bidi: isolate;
|
|
}
|
|
|
|
i {
|
|
font-variant-numeric: slashed-zero;
|
|
font-feature-settings: 'ss01';
|
|
}
|
|
}
|
|
.name-text.show-acct {
|
|
display: inline-block;
|
|
}
|
|
a.name-text:is(:hover, :focus) b,
|
|
a.name-text.short:is(:hover, :focus) i {
|
|
text-decoration: underline;
|
|
text-decoration-color: var(--text-insignificant-color);
|
|
}
|
|
.name-text i {
|
|
font-style: normal;
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.name-text .avatar {
|
|
vertical-align: middle;
|
|
transform: translateY(-0.1em);
|
|
}
|