mirror of
https://github.com/go-shiori/shiori.git
synced 2025-09-27 15:26:36 +08:00
fix: better style for quotes in readable mode (#951)
* better style for quotes * add box for qoutes * simpler style --------- Co-authored-by: Felipe Martin <812088+fmartingr@users.noreply.github.com>
This commit is contained in:
parent
d7a91f7c48
commit
9a113af6cb
3 changed files with 9 additions and 1 deletions
File diff suppressed because one or more lines are too long
|
@ -505,6 +505,12 @@ a {
|
|||
border: 1px solid var(--border);
|
||||
}
|
||||
}
|
||||
blockquote {
|
||||
margin: 15px;
|
||||
padding: 15px;
|
||||
font-style: italic;
|
||||
background: var(--bgqoute);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
--contentBg: #292929;
|
||||
--headerBg: #292929;
|
||||
--selectedBg: #261918;
|
||||
--bgqoute: #1f1f1f5e;
|
||||
}
|
||||
|
||||
.light-colors {
|
||||
|
@ -24,6 +25,7 @@
|
|||
--contentBg: #fff;
|
||||
--headerBg: #fff;
|
||||
--selectedBg: #ffe7e5;
|
||||
--bgqoute: #eee;
|
||||
}
|
||||
|
||||
body.dark {
|
||||
|
|
Loading…
Add table
Reference in a new issue