diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-02-04 13:51:44 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-02-04 13:51:44 +0100 |
| commit | ea25708bf365e865334877c8625996f9386b44e0 (patch) | |
| tree | 5310db7dc4fdf68c6394148d76b3dae004be9978 /src | |
| parent | 5a518fa817fbd64fcf9b3a18b02acefcff5fc307 (diff) | |
Set color on status instead of on timeline.
Diffstat (limited to 'src')
5 files changed, 5 insertions, 5 deletions
diff --git a/src/components/friends_timeline/friends_timeline.vue b/src/components/friends_timeline/friends_timeline.vue index 88c477ab..afe5cc89 100644 --- a/src/components/friends_timeline/friends_timeline.vue +++ b/src/components/friends_timeline/friends_timeline.vue @@ -1,5 +1,5 @@ <template> - <div class="timeline panel panel-default base00-background"> + <div class="timeline panel panel-default"> <div class="panel-heading base01-background base04">Friends Timeline</div> <div class="panel-body"> <Timeline v-bind:timeline="timeline" v-bind:timeline-name="'friends'"/> diff --git a/src/components/mentions/mentions.vue b/src/components/mentions/mentions.vue index cf97f9ee..59f00241 100644 --- a/src/components/mentions/mentions.vue +++ b/src/components/mentions/mentions.vue @@ -1,5 +1,5 @@ <template> - <div class="timeline panel panel-default base00-background"> + <div class="timeline panel panel-default"> <div class="panel-heading base01-background base04">Mentions</div> <div class="panel-body"> <Timeline v-bind:timeline="timeline" v-bind:timeline-name="'mentions'"/> diff --git a/src/components/public_and_external_timeline/public_and_external_timeline.vue b/src/components/public_and_external_timeline/public_and_external_timeline.vue index 282bb15b..bda51153 100644 --- a/src/components/public_and_external_timeline/public_and_external_timeline.vue +++ b/src/components/public_and_external_timeline/public_and_external_timeline.vue @@ -1,5 +1,5 @@ <template> - <div class="timeline panel panel-default base00-background"> + <div class="timeline panel panel-default"> <div class="panel-heading base01-background base04">THE WHOLE KNOWN NETWORK</div> <div class="panel-body"> <Timeline v-bind:timeline="timeline" v-bind:timeline-name="'publicAndExternal'"/> diff --git a/src/components/public_timeline/public_timeline.vue b/src/components/public_timeline/public_timeline.vue index ada40005..d05695b2 100644 --- a/src/components/public_timeline/public_timeline.vue +++ b/src/components/public_timeline/public_timeline.vue @@ -1,5 +1,5 @@ <template> - <div class="timeline panel panel-default base00-background"> + <div class="timeline panel panel-default"> <div class="panel-heading base01-background base04">Public Timeline</div> <div class="panel-body"> <Timeline v-bind:timeline="timeline" v-bind:timeline-name="'public'"/> diff --git a/src/components/status/status.vue b/src/components/status/status.vue index e043f6e2..10e321a1 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -1,5 +1,5 @@ <template> - <div class="status-el" v-if="!status.deleted"> + <div class="status-el base00-background" v-if="!status.deleted"> <div v-if="retweet" class="media container retweet-info"> <div class="media-left"> <i class='fa icon-retweet retweeted'></i> |
