diff options
| author | taehoon <th.dev91@gmail.com> | 2019-04-26 16:22:03 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-05-15 12:04:26 -0400 |
| commit | 19e79895bbedf66560fcb13d9d07d38dfc1577e2 (patch) | |
| tree | c6c6c387c4c68f0ae0e26d6852d9f192965461b6 /src | |
| parent | beaf51257380ec62d3cfe6a0c876fec24ee61e1a (diff) | |
revert unnecessary changes
Diffstat (limited to 'src')
| -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 { |
