mirror of https://github.com/andrigamerita/simpkey
デザイン調整
This commit is contained in:
parent
a18b44e7d6
commit
2db780d982
|
@ -6,9 +6,15 @@ mixin note-header(note)
|
||||||
span.name= getUserName(note.user)
|
span.name= getUserName(note.user)
|
||||||
span.acct(style="color: gray")= getAcct(note.user)
|
span.acct(style="color: gray")= getAcct(note.user)
|
||||||
|
|
||||||
|
mixin sub-note(note)
|
||||||
|
.sub-note
|
||||||
|
+avatar(note.user)
|
||||||
|
+note-header(note)
|
||||||
|
p= note.text
|
||||||
|
|
||||||
mixin note(note)
|
mixin note(note)
|
||||||
if (note.reply)
|
if (note.reply)
|
||||||
+note(note.reply)(style="opacity: 0.5")
|
+sub-note(note.reply)(style="opacity: 0.5")
|
||||||
if (note.renote && !note.text)
|
if (note.renote && !note.text)
|
||||||
p: b 🔁 !{getUserName(note.user)} がRenote
|
p: b 🔁 !{getUserName(note.user)} がRenote
|
||||||
+note(note.renote)
|
+note(note.renote)
|
||||||
|
@ -22,10 +28,7 @@ mixin note(note)
|
||||||
!= note.text
|
!= note.text
|
||||||
if (note.renote)
|
if (note.renote)
|
||||||
p RN:
|
p RN:
|
||||||
.sub-note
|
+sub-note(note.renote)
|
||||||
+avatar(note.renote.user)
|
|
||||||
+note-header(note.renote)
|
|
||||||
p= note.renote.text
|
|
||||||
aside
|
aside
|
||||||
span.visibility= getVisibility(note)
|
span.visibility= getVisibility(note)
|
||||||
span.date= new Date(note.createdAt).toLocaleString()
|
span.date= new Date(note.createdAt).toLocaleString()
|
||||||
|
|
|
@ -2,7 +2,7 @@ extends _base
|
||||||
|
|
||||||
block content
|
block content
|
||||||
h2 このノートにリアクションを押しますか?
|
h2 このノートにリアクションを押しますか?
|
||||||
+note(note)
|
+sub-note(note)
|
||||||
form(action="action/react", method="post")
|
form(action="action/react", method="post")
|
||||||
each val in reactions
|
each val in reactions
|
||||||
div: label
|
div: label
|
||||||
|
|
|
@ -2,6 +2,6 @@ extends _base
|
||||||
|
|
||||||
block content
|
block content
|
||||||
h2 このノートをリノートしますか?
|
h2 このノートをリノートしますか?
|
||||||
+note(note)
|
+sub-note(note)
|
||||||
+post-form('action/create-note', "コメント(省略可能)", "リノート")
|
+post-form('action/create-note', "コメント(省略可能)", "リノート")
|
||||||
input(type="hidden", name="renoteId", value=note.id)
|
input(type="hidden", name="renoteId", value=note.id)
|
|
@ -2,6 +2,6 @@ extends _base
|
||||||
|
|
||||||
block content
|
block content
|
||||||
h2 このノートに返信しますか?
|
h2 このノートに返信しますか?
|
||||||
+note(note)
|
+sub-note(note)
|
||||||
+post-form('action/create-note', "何と返そうか?", "返信")
|
+post-form('action/create-note', "何と返そうか?", "返信")
|
||||||
input(type="hidden", name="replyId", value=note.id)
|
input(type="hidden", name="replyId", value=note.id)
|
Loading…
Reference in New Issue