status-page 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/status_page/status/index.html.erb +9 -0
- data/lib/status-page/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebec9a198d0132f6726846241956ee84b9ab35a5
|
4
|
+
data.tar.gz: f479aa94ef1accd3217b062b2d9f67448b8a7aa3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 078fd51e18b3dd82808c60555670549c3440b54ef7e0d458dcbddaafad62abfe3190c25952bae6e18315c61d8ffe4e008e94eb1833aa925da7ed9d2e31d7f2b5
|
7
|
+
data.tar.gz: f39afd4f041c63c664da3e091f83b5a24816dcb839288fb2dede1c1a75ba1125bc15727a66b37254631cb7b5a28ef56a5df4014de227767522135be574bcaeb9
|
@@ -8,6 +8,7 @@
|
|
8
8
|
<style type="text/css" media="screen">
|
9
9
|
body {
|
10
10
|
line-height: 2rem;
|
11
|
+
font-family: sans;
|
11
12
|
font-size: 14px;
|
12
13
|
background-color: #f0f0f0;
|
13
14
|
margin: 0;
|
@@ -16,6 +17,8 @@
|
|
16
17
|
text-align: center;
|
17
18
|
}
|
18
19
|
|
20
|
+
a { color: #333; }
|
21
|
+
|
19
22
|
.container {
|
20
23
|
width: 960px;
|
21
24
|
margin: 20px auto;
|
@@ -50,6 +53,9 @@
|
|
50
53
|
.statuses .message { color: #666; }
|
51
54
|
.statuses .timestamp { width: 130px; color: #999; }
|
52
55
|
.statuses .status-error .state { color: red; }
|
56
|
+
|
57
|
+
.powered { text-align: center; margin-top: 10px; color: #aaa; }
|
58
|
+
.powered a { color: #666; }
|
53
59
|
</style>
|
54
60
|
</head>
|
55
61
|
|
@@ -67,5 +73,8 @@
|
|
67
73
|
</div>
|
68
74
|
<% end %>
|
69
75
|
</div>
|
76
|
+
<div class="powered">
|
77
|
+
Powered by <a href="https://github.com/rails-engine/status-page" target="_blank">status-page</a>
|
78
|
+
</div>
|
70
79
|
</div>
|
71
80
|
</body>
|
data/lib/status-page/version.rb
CHANGED