mirror of
https://github.com/go-shiori/shiori.git
synced 2025-01-15 20:37:44 +08:00
fix direction in RTL language (#615)
Co-authored-by: Felipe Martin <812088+fmartingr@users.noreply.github.com>
This commit is contained in:
parent
85534b62f8
commit
a4b92504b0
2 changed files with 5 additions and 5 deletions
|
@ -27,7 +27,7 @@
|
|||
<div id="content-scene" :class="{night: appOptions.nightMode}">
|
||||
<div id="header">
|
||||
<p id="metadata" v-cloak>Added {{localtime()}}</p>
|
||||
<p id="title">$$.Book.Title$$</p>
|
||||
<p id="title" dir="auto">$$.Book.Title$$</p>
|
||||
<div id="links">
|
||||
<a href="$$.Book.URL$$" target="_blank" rel="noopener">View Original</a>
|
||||
$$if .Book.HasArchive$$
|
||||
|
@ -35,7 +35,7 @@
|
|||
$$end$$
|
||||
</div>
|
||||
</div>
|
||||
<div id="content" v-pre>
|
||||
<div id="content" dir="auto" v-pre>
|
||||
$$html .Book.HTML$$
|
||||
</div>
|
||||
</div>
|
||||
|
@ -87,4 +87,4 @@
|
|||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -6,7 +6,7 @@ var template = `
|
|||
</a>
|
||||
<a class="bookmark-link" :href="mainURL" target="_blank" rel="noopener">
|
||||
<span class="thumbnail" v-if="thumbnailVisible" :style="thumbnailStyleURL"></span>
|
||||
<p class="title">{{title}}
|
||||
<p class="title" dir="auto">{{title}}
|
||||
<i v-if="hasContent" class="fas fa-file-alt"></i>
|
||||
<i v-if="hasArchive" class="fas fa-archive"></i>
|
||||
<i v-if="public" class="fas fa-eye"></i>
|
||||
|
@ -114,4 +114,4 @@ export default {
|
|||
this.$emit("update", this.eventItem);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue