mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 19:38:48 +03:00
Compare commits
2 commits
f6fb1b0fe1
...
9668ef4322
Author | SHA1 | Date | |
---|---|---|---|
|
9668ef4322 | ||
|
c7e1c554bb |
1 changed files with 10 additions and 4 deletions
|
@ -2,6 +2,7 @@
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
import ".."
|
import ".."
|
||||||
import im.nheko
|
import im.nheko
|
||||||
|
|
||||||
|
@ -15,6 +16,7 @@ MatrixText {
|
||||||
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
|
property string copyText: selectedText ? getText(selectionStart, selectionEnd) : body
|
||||||
property int metadataWidth: 100
|
property int metadataWidth: 100
|
||||||
property bool fitsMetadata: false //positionAt(width,height-4) == positionAt(width-metadataWidth-10, height-4)
|
property bool fitsMetadata: false //positionAt(width,height-4) == positionAt(width-metadataWidth-10, height-4)
|
||||||
|
property bool showSpoilers: false
|
||||||
|
|
||||||
// table border-collapse doesn't seem to work
|
// table border-collapse doesn't seem to work
|
||||||
text: `
|
text: `
|
||||||
|
@ -33,11 +35,12 @@ MatrixText {
|
||||||
padding: ` + Math.ceil(fontMetrics.lineSpacing/2) + `px;
|
padding: ` + Math.ceil(fontMetrics.lineSpacing/2) + `px;
|
||||||
}
|
}
|
||||||
blockquote { margin-left: 1em; }
|
blockquote { margin-left: 1em; }
|
||||||
` + (!Settings.mobileMode ? `span[data-mx-spoiler] {
|
span[data-mx-spoiler] {` + (!showSpoilers ? `
|
||||||
color: transparent;
|
color: transparent;
|
||||||
background-color: ` + palette.text + `;
|
background-color: ` + palette.text + `;` : `
|
||||||
}` : "") + // TODO(Nico): Figure out how to support mobile
|
background-color: ` + palette.alternateBase + ';') + `
|
||||||
`</style>
|
}
|
||||||
|
</style>
|
||||||
` + formatted.replace(/<del>/g, "<s>").replace(/<\/del>/g, "</s>").replace(/<strike>/g, "<s>").replace(/<\/strike>/g, "</s>")
|
` + formatted.replace(/<del>/g, "<s>").replace(/<\/del>/g, "</s>").replace(/<strike>/g, "<s>").replace(/<\/strike>/g, "</s>")
|
||||||
|
|
||||||
enabled: !isReply
|
enabled: !isReply
|
||||||
|
@ -49,4 +52,7 @@ MatrixText {
|
||||||
cursorShape: Qt.PointingHandCursor
|
cursorShape: Qt.PointingHandCursor
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TapHandler {
|
||||||
|
onTapped: showSpoilers = !showSpoilers
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue