diff options
| author | Shpuld Shpuldson <shpuld@gmail.com> | 2017-06-01 01:11:57 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shpuld@gmail.com> | 2017-06-01 01:11:57 +0300 |
| commit | 807c0d1464c97319800d59edd945125d4fe2c194 (patch) | |
| tree | 2bc1f2a5ebc2245685da57c51d6f54855529a537 /src | |
| parent | ea8a700796ced7fd4be3d1c65abf34e7c65413b0 (diff) | |
Remove silly opacity from timestamp, make unmute icon line up with the rest better.
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.vue | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 8d776307..a79634dd 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -62,16 +62,14 @@ - <small> <router-link :to="{ name: 'conversation', params: { id: status.id } }"> - <timeago :since="status.created_at" :auto-update="60" style="opacity:0.8;"></timeago> + <timeago :since="status.created_at" :auto-update="60"></timeago> </router-link> </small> </h4> </div> </div> <div class="heading-icons"> - <small v-if="unmuted"> - <a href="#" @click.prevent="toggleMute" ><i class="icon-eye-off"></i></a> - </small> + <a href="#" @click.prevent="toggleMute" v-if="unmuted"><i class="fa icon-eye-off"></i></a> <a :href="status.external_url" target="_blank" v-if="!status.is_local" class="source_url"><i class="fa icon-binoculars"></i></a> <template v-if="expandable"> <a href="#" @click.prevent="toggleExpanded" class="expand"><i class="fa icon-plus-squared"></i></a> @@ -167,12 +165,11 @@ } .source_url { - margin-right: -0.25em; + } .expand { - margin-left: 0.5em; - margin-right: -0.25em; + margin-right: -0.3em; } .greentext { |
