diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-27 23:17:33 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-27 23:17:33 +0900 |
| commit | 38a6aa26bc3d8fb70215474a667ad06080660cea (patch) | |
| tree | 440183a859ce71e2dccf5ace83ee8c0e35b024a4 /src/client/app/desktop | |
| parent | wip (diff) | |
| download | misskey-38a6aa26bc3d8fb70215474a667ad06080660cea.tar.gz misskey-38a6aa26bc3d8fb70215474a667ad06080660cea.tar.bz2 misskey-38a6aa26bc3d8fb70215474a667ad06080660cea.zip | |
wip
Diffstat (limited to 'src/client/app/desktop')
| -rw-r--r-- | src/client/app/desktop/views/components/notes.note.vue | 14 | ||||
| -rw-r--r-- | src/client/app/desktop/views/pages/deck/deck.note.vue | 4 |
2 files changed, 5 insertions, 13 deletions
diff --git a/src/client/app/desktop/views/components/notes.note.vue b/src/client/app/desktop/views/components/notes.note.vue index 7e4f42533f..b628d045aa 100644 --- a/src/client/app/desktop/views/components/notes.note.vue +++ b/src/client/app/desktop/views/components/notes.note.vue @@ -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> diff --git a/src/client/app/desktop/views/pages/deck/deck.note.vue b/src/client/app/desktop/views/pages/deck/deck.note.vue index 3bc4f26823..c6925d5cec 100644 --- a/src/client/app/desktop/views/pages/deck/deck.note.vue +++ b/src/client/app/desktop/views/pages/deck/deck.note.vue @@ -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 |