No hover cursor on mobile

This commit is contained in:
thatonecalculator 2022-12-01 22:39:50 -08:00
parent c825d6c5ba
commit 9bd397ce88
3 changed files with 16 additions and 1 deletions

View file

@ -428,6 +428,10 @@ function readPromo() {
padding: 28px 32px 18px;
cursor: pointer;
@media (pointer: coarse) {
cursor: default;
}
> .avatar {
flex-shrink: 0;
display: block;

View file

@ -347,7 +347,10 @@ if (appearNote.replyId) {
> .reply-to-more {
opacity: 0.7;
cursor: pointer;
@media (pointer: coarse) {
cursor: default;
}
}
> .renote {
@ -546,6 +549,10 @@ if (appearNote.replyId) {
> .reply {
border-top: solid 0.5px var(--divider);
cursor: pointer;
@media (pointer: coarse) {
cursor: default;
}
}
> .reply, .reply-to, .reply-to-more {

View file

@ -88,6 +88,10 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
flex: 1;
min-width: 0;
cursor: pointer;
@media (pointer: coarse) {
cursor: default;
}
> .header {
margin-bottom: 2px;