Merge pull request 'Fix cursor in note thread' (#9144) from yawhn/elreqkey:fix_cursor_in_thread into develop
Reviewed-on: https://codeberg.org/thatonecalculator/calckey/pulls/9144
This commit is contained in:
commit
c27c4381b0
|
@ -426,7 +426,8 @@ function readPromo() {
|
|||
> .article {
|
||||
display: flex;
|
||||
padding: 28px 32px 18px;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
> .avatar {
|
||||
flex-shrink: 0;
|
||||
display: block;
|
||||
|
|
|
@ -346,6 +346,8 @@ if (appearNote.replyId) {
|
|||
|
||||
> .reply-to-more {
|
||||
opacity: 0.7;
|
||||
cursor: pointer;
|
||||
|
||||
}
|
||||
|
||||
> .renote {
|
||||
|
@ -543,6 +545,7 @@ if (appearNote.replyId) {
|
|||
|
||||
> .reply {
|
||||
border-top: solid 0.5px var(--divider);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
> .reply, .reply-to, .reply-to-more {
|
||||
|
|
|
@ -65,6 +65,7 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
|
|||
&.children {
|
||||
padding: 10px 0 0 16px;
|
||||
font-size: 1em;
|
||||
cursor: auto;
|
||||
|
||||
&.max-width_450px {
|
||||
padding: 10px 0 0 8px;
|
||||
|
@ -86,9 +87,11 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
|
|||
> .body {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
> .header {
|
||||
margin-bottom: 2px;
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
> .body {
|
||||
|
|
Loading…
Reference in New Issue