diff options
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index a033074c..77949a52 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -57,12 +57,12 @@ <a :href="status.external_url" target="_blank" v-if="!status.is_local && !isPreview" class="source_url" title="Source"> <i class="button-icon icon-link-ext-alt"></i> </a> - <div class="button-icon button-action-icon" v-if="expandable && !isPreview" @click.prevent="toggleExpanded" title="Expand"> - <i class="icon-plus-squared"></i> - </div> - <div class="button-icon button-action-icon" v-if="unmuted" @click.prevent="toggleMute" title="Toggle Mute"> - <i class="icon-eye-off"></i> - </div> + <template v-if="expandable && !isPreview"> + <a href="#" @click.prevent="toggleExpanded" title="Expand"> + <i class="button-icon icon-plus-squared"></i> + </a> + </template> + <a href="#" @click.prevent="toggleMute" v-if="unmuted"><i class="button-icon icon-eye-off"></i></a> </span> </div> @@ -690,10 +690,6 @@ a.unmute { } } -.button-action-icon { - cursor: pointer; -} - @media all and (max-width: 800px) { .status-el { .retweet-info { |
