Skip to content

Commit edfd015

Browse files
Merge branch 'master' of https://github.com/cachethq/Cachet
2 parents 61d5554 + 6d32944 commit edfd015

File tree

8 files changed

+68
-61
lines changed

8 files changed

+68
-61
lines changed

public/build/dist/css/all-48fb677074.css

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/dist/css/all-fe92b89dca.css

Lines changed: 0 additions & 19 deletions
This file was deleted.

public/build/dist/js/all-36dad06cdd.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

public/build/dist/js/all-c220680259.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/rev-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"dist/css/all.css": "dist/css/all-fe92b89dca.css",
3-
"dist/js/all.js": "dist/js/all-36dad06cdd.js"
2+
"dist/css/all.css": "dist/css/all-48fb677074.css",
3+
"dist/js/all.js": "dist/js/all-c220680259.js"
44
}

resources/assets/sass/_status-page.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,12 +316,17 @@ body.status-page {
316316
width: 100%;
317317
bottom: 0;
318318
height: 60px;
319-
padding: 40px 0 60px 0;
319+
padding: 30px 0 60px 0;
320320
border-top: 1px solid $cachet_gray_light;
321-
background-color: lighten($cachet_gray_light, 5%);
322321
color: $cachet-gray-darker;
322+
font-size: 13px;
323323
line-height: 30px;
324324
text-align: center;
325+
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
326+
327+
.btn {
328+
text-shadow: none;
329+
}
325330

326331
.icons {
327332
a.icon-link {

resources/views/partials/footer.blade.php

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
11
<footer class="footer">
22
<div class="container">
33
<div class="row">
4-
<div class="col-sm-6">
4+
<div class="col-sm-5">
55
@if(Setting::get('show_support'))
6-
<p>{!! trans('cachet.powered_by', ['app' => Setting::get('app_name')]) !!}<br>{{ Setting::get('app_timezone') }}</p>
6+
<p>{!! trans('cachet.powered_by', ['app' => Setting::get('app_name')]) !!}</p>
77
@endif
88
</div>
9-
<div class="col-sm-6">
10-
<div class="btn-group">
9+
<div class="col-sm-7 text-right">
10+
<ul class="list-inline">
1111
@if($current_user || Setting::get('dashboard_login_link'))
12-
<a href="/dashboard" class="btn btn-info"><i class="ion-levels"></i> {{ trans('dashboard.dashboard') }}</a>
12+
<li>
13+
<a class="btn btn-link" href="/dashboard"><i class="ion-levels"></i> {{ trans('dashboard.dashboard') }}</a>
14+
</li>
1315
@endif
1416
@if($current_user)
15-
<a href="/auth/logout" class="btn btn-info"><i class="ion-android-exit"></i> {{ trans('dashboard.logout') }}</a>
17+
<li>
18+
<a class="btn btn-link" href="/auth/logout"><i class="ion-android-exit"></i> {{ trans('dashboard.logout') }}</a>
19+
</li>
1620
@endif
17-
</div>
18-
<div class="btn-group">
19-
<a href="{{ route('feed.rss') }}" class="btn btn-warning rss"><i class="ion-social-rss"></i> {{ trans('cachet.rss-feed') }}</a>
20-
<a href="{{ route('feed.atom') }}" class="btn btn-warning rss"><i class="ion-social-rss"></i> {{ trans('cachet.atom-feed') }}</a>
21-
</div>
22-
@if($subscribers_enabled)
23-
<a class="btn btn-success" href="{{ route('subscribe.subscribe') }}"><i class="ion-email"></i> {{ trans('cachet.subscriber.button') }}</a>
24-
@endif
21+
<li>
22+
<a class="btn btn-link" href="{{ route('feed.rss') }}"><i class="ion-social-rss"></i> {{ trans('cachet.rss-feed') }}</a>
23+
</li>
24+
<li>
25+
<a class="btn btn-link" href="{{ route('feed.atom') }}"><i class="ion-social-rss"></i> {{ trans('cachet.atom-feed') }}</a>
26+
</li>
27+
@if($subscribers_enabled)
28+
<li>
29+
<a class="btn btn-success" href="{{ route('subscribe.subscribe') }}"><i class="ion-email"></i> {{ trans('cachet.subscriber.button') }}</a>
30+
</li>
31+
@endif
32+
</ul>
2533
</div>
2634
</div>
2735
</div>

resources/views/partials/stylesheet.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
border-left-color: {{ $theme_background_fills }};
104104
border-right-color: {{ $theme_background_fills }};
105105
}
106-
.footer {
107-
background-color: {{ $theme_background_fills }};
106+
.footer a {
107+
color: {{ $theme_text_color }};
108108
}
109109
</style>

0 commit comments

Comments
 (0)