diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-01-15 15:59:28 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-01-15 15:59:28 +0100 |
| commit | 224fe580ca5535e6302796e210d754f06eb4dc21 (patch) | |
| tree | 73ff085075ee13ece21adaed493b68354ac490ad /src/components/timeline/timeline.vue | |
| parent | 929d4d75b4a9a20bbf7835a7f7d8df96e70d4ffc (diff) | |
| parent | 6c5b5eb52b7e000a2af896a0ada9ff4488ac8709 (diff) | |
Merge branch 'develop' into feature/hash-routed
Diffstat (limited to 'src/components/timeline/timeline.vue')
| -rw-r--r-- | src/components/timeline/timeline.vue | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue index 7de3ffca..3da31f14 100644 --- a/src/components/timeline/timeline.vue +++ b/src/components/timeline/timeline.vue @@ -1,7 +1,7 @@ <template> <div class="timeline"> <a href="#" v-on:click.prevent='showNewStatuses()' v-if="timeline.newStatusCount > 0"> - <div class="new-status-notification"> + <div class="base01-background base05-border new-status-notification"> <p class="text-center" > {{timeline.newStatusCount}} new statuses </p> @@ -9,7 +9,7 @@ </a> <status v-for="status in timeline.visibleStatuses" :key="status.id" v-bind:statusoid="status"></status> <a href="#" v-on:click.prevent='fetchOlderStatuses()' v-if="!timeline.loading"> - <div class="new-status-notification"> + <div class="base01-background base05-border new-status-notification"> <p class="text-center" > Load older statuses. </p> @@ -18,3 +18,16 @@ </div> </template> <script src="./timeline.js"></script> + +<style lang="scss"> + .new-status-notification { + border-style: solid; + border-width: 1px 0 1px 0; + font-size: 1.1em; + + p { + margin: 0px; + padding: 10px; + } + } +</style> |
