Merge pull request #2945 from j-f1/rtl

RTL support for articles
This commit is contained in:
Maurice Parker 2021-03-29 17:20:55 -05:00 committed by GitHub
commit b8aca6b89a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
<html>
<html dir="auto">
<head>
<title>[[title]]</title>
<style>

View File

@ -1,4 +1,4 @@
<html>
<html dir="auto">
<head>
<title>[[title]]</title>
<meta name="viewport" content="width=device-width, initial-scale=1">

View File

@ -88,10 +88,10 @@ body > .systemMessage {
border-radius: 4px;
}
.rightAlign {
text-align: right;
text-align: end;
}
.leftAlign {
text-align: left;
text-align: start;
}
.articleTitle a:link, .articleTitle a:visited {
@ -258,8 +258,8 @@ hr {
blockquote {
margin-inline-start: 0;
margin-inline-end: 0;
padding-left: 15px;
border-left: 3px solid var(--block-quote-border-color);
padding-inline-start: 15px;
border-inline-start: 3px solid var(--block-quote-border-color);
}
/* Feed Specific */

View File

@ -1,4 +1,4 @@
<html>
<html dir="auto">
<head>
<title>[[title]]</title>
<meta name="viewport" content="width=device-width, initial-scale=1">