phanpy/src/components/name-text.css

29 lines
516 B
CSS
Raw Normal View History

2022-12-10 10:14:48 +01:00
.name-text {
color: inherit;
text-decoration: none;
2023-04-08 10:52:04 +02:00
display: inline;
2024-02-20 10:51:17 +01:00
unicode-bidi: isolate;
2024-02-06 10:28:18 +01:00
b {
font-weight: 500;
2024-02-20 10:51:17 +01:00
unicode-bidi: isolate;
2024-02-06 10:28:18 +01:00
}
}
.name-text.show-acct {
2022-12-10 10:14:48 +01:00
display: inline-block;
}
2022-12-29 09:11:58 +01:00
a.name-text:is(:hover, :focus) b,
a.name-text.short:is(:hover, :focus) i {
2022-12-10 10:14:48 +01:00
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;
2023-04-08 10:52:04 +02:00
transform: translateY(-0.1em);
}