diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-27 22:59:56 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-27 22:59:56 +0900 |
| commit | 74be1c81b111bca81047b21083249d8be4b35ed8 (patch) | |
| tree | 0e50227099ba48da0975e6045e81d612c32adfeb /src/client/app | |
| parent | wip (diff) | |
| download | misskey-74be1c81b111bca81047b21083249d8be4b35ed8.tar.gz misskey-74be1c81b111bca81047b21083249d8be4b35ed8.tar.bz2 misskey-74be1c81b111bca81047b21083249d8be4b35ed8.zip | |
wip
Diffstat (limited to 'src/client/app')
| -rw-r--r-- | src/client/app/common/views/components/reactions-viewer.vue | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/src/client/app/common/views/components/reactions-viewer.vue b/src/client/app/common/views/components/reactions-viewer.vue index c30fa2a1dc..9212a84b31 100644 --- a/src/client/app/common/views/components/reactions-viewer.vue +++ b/src/client/app/common/views/components/reactions-viewer.vue @@ -39,10 +39,9 @@ export default Vue.extend({ </script> <style lang="stylus" scoped> -root(isDark) - $borderColor = isDark ? #5e6673 : #eee - border-top dashed 1px $borderColor - border-bottom dashed 1px $borderColor +.mk-reactions-viewer + border-top dashed 1px var(--reactionViewerBorder) + border-bottom dashed 1px var(--reactionViewerBorder) margin 4px 0 &:empty @@ -60,12 +59,6 @@ root(isDark) > span margin-left 4px font-size 1.2em - color isDark ? #d1d5dc : #444 - -.mk-reactions-viewer[data-darkmode] - root(true) - -.mk-reactions-viewer:not([data-darkmode]) - root(false) + color var(--text) </style> |