diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-06 04:10:30 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-06 04:10:30 +0900 |
| commit | 5e0f2a5b06e2c7e727a186c74130336adfde7c0e (patch) | |
| tree | 20c193d669a46519f9a20778934871840c067780 /src | |
| parent | 10.40.1 (diff) | |
| download | sharkey-5e0f2a5b06e2c7e727a186c74130336adfde7c0e.tar.gz sharkey-5e0f2a5b06e2c7e727a186c74130336adfde7c0e.tar.bz2 sharkey-5e0f2a5b06e2c7e727a186c74130336adfde7c0e.zip | |
[Client] Fix bug
Diffstat (limited to 'src')
3 files changed, 14 insertions, 14 deletions
diff --git a/src/client/app/desktop/views/components/notifications.vue b/src/client/app/desktop/views/components/notifications.vue index 09dbb899b6..a8a7d2be58 100644 --- a/src/client/app/desktop/views/components/notifications.vue +++ b/src/client/app/desktop/views/components/notifications.vue @@ -255,7 +255,7 @@ export default Vue.extend({ p margin 0 - i, .mk-reaction-icon + [data-icon], .mk-reaction-icon margin-right 4px .note-preview @@ -272,19 +272,19 @@ export default Vue.extend({ margin-right 3px &.renote, &.quote - .text p i + .text p [data-icon] color #77B255 &.follow - .text p i + .text p [data-icon] color #53c7ce &.receiveFollowRequest - .text p i + .text p [data-icon] color #888 &.reply, &.mention - .text p i + .text p [data-icon] color #555 > .date diff --git a/src/client/app/mobile/views/components/notification-preview.vue b/src/client/app/mobile/views/components/notification-preview.vue index b5f5236047..45a2d3b064 100644 --- a/src/client/app/mobile/views/components/notification-preview.vue +++ b/src/client/app/mobile/views/components/notification-preview.vue @@ -105,7 +105,7 @@ export default Vue.extend({ p margin 0 - i, mk-reaction-icon + [data-icon], mk-reaction-icon margin-right 4px .note-ref @@ -118,19 +118,19 @@ export default Vue.extend({ margin-right 3px &.renote, &.quote - .text p i + .text p [data-icon] color #77B255 &.follow - .text p i + .text p [data-icon] color #53c7ce &.receiveFollowRequest - .text p i + .text p [data-icon] color #888 &.reply, &.mention - .text p i + .text p [data-icon] color #fff </style> diff --git a/src/client/app/mobile/views/components/notification.vue b/src/client/app/mobile/views/components/notification.vue index abc013f608..c99b291ff6 100644 --- a/src/client/app/mobile/views/components/notification.vue +++ b/src/client/app/mobile/views/components/notification.vue @@ -149,7 +149,7 @@ export default Vue.extend({ align-items baseline white-space nowrap - i, .mk-reaction-icon + [data-icon], .mk-reaction-icon margin-right 4px > .mk-time @@ -171,15 +171,15 @@ export default Vue.extend({ margin-right 3px &.renote - > div > header i + > div > header [data-icon] color #77B255 &.follow - > div > header i + > div > header [data-icon] color #53c7ce &.receiveFollowRequest - > div > header i + > div > header [data-icon] color #888 </style> |