This commit is contained in:
syuilo 2018-09-27 23:17:33 +09:00
parent 32942709bf
commit 38a6aa26bc
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
5 changed files with 11 additions and 15 deletions

View file

@ -317,9 +317,7 @@ export default Vue.extend({
</script>
<style lang="stylus" scoped>
root(isDark)
.note
margin 0
padding 0
background var(--face)
@ -456,8 +454,8 @@ root(isDark)
>>> .quote
margin 8px
padding 6px 12px
color isDark ? #6f808e : #aaa
border-left solid 3px isDark ? #637182 : #eee
color var(--mfmQuote)
border-left solid 3px var(--mfmQuoteLine)
> .reply
margin-right 8px
@ -529,12 +527,6 @@ root(isDark)
padding-top 4px
background rgba(#000, 0.0125)
.note[data-darkmode]
root(true)
.note:not([data-darkmode])
root(false)
</style>
<style lang="stylus" module>

View file

@ -338,8 +338,8 @@ root(isDark)
>>> .quote
margin 8px
padding 6px 12px
color isDark ? #6f808e : #aaa
border-left solid 3px isDark ? #637182 : #eee
color var(--mfmQuote)
border-left solid 3px var(--mfmQuoteLine)
> .reply
margin-right 8px

View file

@ -378,8 +378,8 @@ root(isDark)
>>> .quote
margin 8px
padding 6px 12px
color isDark ? #6f808e : #aaa
border-left solid 3px isDark ? #637182 : #eee
color var(--mfmQuote)
border-left solid 3px var(--mfmQuoteLine)
> .reply
margin-right 8px

View file

@ -92,6 +92,8 @@
"googleSearchHoverButton": "rgba(255, 255, 255, 0.1)",
"mfmTitleBg": "rgba(0, 0, 0, 0.2)",
"mfmQuote": ":alpha<0.7<$text",
"mfmQuoteLine": ":alpha<0.6<$text",
"messagingRoomBg": "@bg",
"messagingRoomInfo": "#fff",

View file

@ -92,6 +92,8 @@
"googleSearchHoverButton": "rgba(0, 0, 0, 0.05)",
"mfmTitleBg": "rgba(0, 0, 0, 0.07)",
"mfmQuote": ":alpha<0.6<$text",
"mfmQuoteLine": ":alpha<0.5<$text",
"messagingRoomBg": "#fff",
"messagingRoomInfo": "#000",