mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 06:06:41 +01:00
Make text inside replies button bolder
This commit is contained in:
parent
d0890e3633
commit
986187141e
2 changed files with 7 additions and 3 deletions
|
@ -552,7 +552,6 @@ a[href^='http'][rel*='nofollow']:visited:not(:has(div)) {
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 500;
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: var(--text-insignificant-color);
|
color: var(--text-insignificant-color);
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -560,6 +559,11 @@ a[href^='http'][rel*='nofollow']:visited:not(:has(div)) {
|
||||||
position: relative;
|
position: relative;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
|
b {
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--text-color);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.timeline.contextual > li .replies > .replies-summary::-webkit-details-marker {
|
.timeline.contextual > li .replies > .replies-summary::-webkit-details-marker {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
|
@ -1280,11 +1280,11 @@ function SubComments({
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<b>
|
||||||
<span title={replies.length}>{shortenNumber(replies.length)}</span>{' '}
|
<span title={replies.length}>{shortenNumber(replies.length)}</span>{' '}
|
||||||
repl
|
repl
|
||||||
{replies.length === 1 ? 'y' : 'ies'}
|
{replies.length === 1 ? 'y' : 'ies'}
|
||||||
</span>
|
</b>
|
||||||
{!sameCount && totalComments > 1 && (
|
{!sameCount && totalComments > 1 && (
|
||||||
<>
|
<>
|
||||||
{' '}
|
{' '}
|
||||||
|
|
Loading…
Reference in a new issue