diff options
| author | shpuld <shpuld@gmail.com> | 2017-03-09 21:32:54 +0200 |
|---|---|---|
| committer | shpuld <shpuld@gmail.com> | 2017-03-09 21:32:54 +0200 |
| commit | df4dad18044bd7948ae31c2d7167bd8caec83bfb (patch) | |
| tree | 33301717149aed86cdf5955d85bac32a1a05a6ef /src | |
| parent | 2f0fcd14c948870ede42503010fc7f7617eb02f1 (diff) | |
Separate reply form from inside status to make it resistant to hilighting, make the reply button light up when reply window is open.
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.vue | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 9b0827a7..eceb0a75 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -73,18 +73,21 @@ <div class='status-actions'> <div> <a href="#" v-on:click.prevent="toggleReplying"> - <i class='fa icon-reply'></i> + <i class="fa icon-reply icon-reply-active" v-if="replying"></i> + <i class="fa icon-reply" v-else></i> </a> </div> <retweet-button :status=status></retweet-button> <favorite-button :status=status></favorite-button> <delete-button :status=status></delete-button> </div> - - <post-status-form v-if="replying" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" v-on:posted="toggleReplying"></post-status-form> </div> </div> </div> + <div class="status base00-background container" v-if="replying"> + <div class="reply-left"/> + <post-status-form class="reply-body" :reply-to="status.id" :attentions="status.attentions" :repliedUser="status.user" v-on:posted="toggleReplying"/> + </div> </template> </div> </template> @@ -141,6 +144,10 @@ color: $blue; } + .icon-reply-active { + color: $blue; + } + .status .avatar { width: 48px; } @@ -172,4 +179,14 @@ margin-bottom: 1em; margin-top: 0.2em; } + + .reply-left { + flex: 0; + min-width: 48px; + } + + .reply-body { + flex: 1; + } + </style> |
