diff options
| author | taehoon <th.dev91@gmail.com> | 2019-05-14 22:45:57 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-05-14 22:45:57 -0400 |
| commit | 5e0235fa63cc06196365c9a662b73cff5e3b6b3e (patch) | |
| tree | daeb671828de79aaa63c5d20ab35821d55634eed /src | |
| parent | 731ad0a48b1dbb701e72094bf25f0606cda999b7 (diff) | |
make reply icon not hoverable if disabled
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.vue | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 230b076f..21077972 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -571,15 +571,13 @@ $status-margin: 0.75em; } } -.icon-reply:hover { - color: $fallback--cBlue; - color: var(--cBlue, $fallback--cBlue); - cursor: pointer; -} - -.icon-reply.icon-reply-active { - color: $fallback--cBlue; - color: var(--cBlue, $fallback--cBlue); +.button-icon.icon-reply { + &:not(.button-icon-disabled):hover, + &.button-icon-active { + color: $fallback--cBlue; + color: var(--cBlue, $fallback--cBlue); + cursor: pointer; + } } .status:hover .animated.avatar { |
