aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-01-15 15:44:56 +0100
committerRoger Braun <roger@rogerbraun.net>2017-01-15 15:44:56 +0100
commitfc7e13e7bbbdbd0503094a5cb7318d6a02f1c157 (patch)
treea8351b79d90ff3e59373cc6554cd4740c9e1f433 /src/components/timeline
parent590782701df0e903e3193c827d5dd74244bdccf8 (diff)
Add styling with base16.
Solarized-dark for now.
Diffstat (limited to 'src/components/timeline')
-rw-r--r--src/components/timeline/timeline.vue17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue
index 7de3ffca..9338682c 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;
+ font-size: 1.1em;
+
+ p {
+ margin: 0px;
+ padding: 10px;
+ }
+ }
+</style>