1
0
Fork 0

feat: add support for aside HTML element in entry content

This commit is contained in:
Frédéric Guillot 2024-07-25 20:48:59 -07:00
parent f6dc952551
commit 92f3dc26e4
4 changed files with 12 additions and 0 deletions

View file

@ -24,6 +24,7 @@ var (
"a": {"href", "title", "id"},
"abbr": {"title"},
"acronym": {"title"},
"aside": {},
"audio": {"src"},
"blockquote": {},
"br": {},

View file

@ -1174,6 +1174,15 @@ article.category-has-unread {
border-bottom: 1px dashed var(--entry-content-abbr-border-color);
}
.entry-content aside {
width: 30%;
padding: 1ch;
margin-left: 15px;
float: right;
font-style: italic;
border: dotted var(--entry-content-aside-border-color) 2px;
}
details.entry-enclosures {
margin-top: 25px;
}

View file

@ -97,6 +97,7 @@
--entry-content-code-border-color: #888;
--entry-content-quote-color: #777;
--entry-content-abbr-border-color: #777;
--entry-content-aside-border-color: #777;
--entry-enclosure-border-color: #333;
--parsing-error-color: #eee;

View file

@ -97,6 +97,7 @@
--entry-content-code-border-color: #ddd;
--entry-content-quote-color: #666;
--entry-content-abbr-border-color: #999;
--entry-content-aside-border-color: #D3D3D3;
--entry-enclosure-border-color: #333;
--parsing-error-color: #333;