logster 0.8.4.4.pre → 0.8.4.5.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/assets/stylesheets/app.css +10 -3
- data/lib/logster/middleware/viewer.rb +3 -3
- data/lib/logster/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: 539befdeeb988bc0f22b836f4d4b24aa99c48058
|
|
4
|
+
data.tar.gz: 5b2bf45e6a173ea79231aa58a940e4281a0cc5d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce9f6cf6e516784b80c8ce91778b7d74b143e072616c12089246de3aba8c5b49a6127a506962ae2e77b9b16783153792d2321c2bff086eb92ed913404388244f
|
|
7
|
+
data.tar.gz: 1f981c34ecbb5b5b5b78f84f55a42879b75eca309adf10c08a3a58cb3eafbecc5a6c28e3a053528eeea2903e92417ea0dbdf0873b1dd2eaec067ac2f410fb2ed
|
data/assets/stylesheets/app.css
CHANGED
|
@@ -71,11 +71,11 @@ th.protected {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
i.fatal {
|
|
74
|
-
color: #
|
|
74
|
+
color: #E00;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
i.error {
|
|
78
|
-
color: #
|
|
78
|
+
color: #900;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
i.warning {
|
|
@@ -86,6 +86,10 @@ i.warning {
|
|
|
86
86
|
color: #777;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
+
td.count {
|
|
90
|
+
text-align: right;
|
|
91
|
+
}
|
|
92
|
+
|
|
89
93
|
.count span {
|
|
90
94
|
font-size: 11px;
|
|
91
95
|
font-weight: bold;
|
|
@@ -123,11 +127,14 @@ tr.show-more {
|
|
|
123
127
|
}
|
|
124
128
|
|
|
125
129
|
#bottom-panel.full {
|
|
126
|
-
height: 90%;
|
|
127
130
|
position: static;
|
|
128
131
|
background-color: inherit;
|
|
132
|
+
height: 90%;
|
|
129
133
|
}
|
|
130
134
|
|
|
135
|
+
#bottom-panel.full > div {
|
|
136
|
+
padding-bottom: 40px;
|
|
137
|
+
}
|
|
131
138
|
#bottom-panel.full .tabs {
|
|
132
139
|
display: none;
|
|
133
140
|
}
|
|
@@ -29,7 +29,7 @@ module Logster
|
|
|
29
29
|
|
|
30
30
|
if resource = resolve_path(path)
|
|
31
31
|
|
|
32
|
-
if resource =~ /\.js$|\.handlebars$|\.css$|\.woff$|\.ttf
|
|
32
|
+
if resource =~ /\.js$|\.handlebars$|\.css$|\.woff$|\.ttf$|\.woff2$|\.svg$|\.otf$|\.eot$/
|
|
33
33
|
env[PATH_INFO] = resource
|
|
34
34
|
# accl redirect is going to be trouble, ensure its bypassed
|
|
35
35
|
env['sendfile.type'] = ''
|
|
@@ -190,8 +190,8 @@ JS
|
|
|
190
190
|
<!doctype html>
|
|
191
191
|
<html>
|
|
192
192
|
<head>
|
|
193
|
-
<link href='
|
|
194
|
-
<link href='
|
|
193
|
+
<link href='//fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
|
|
194
|
+
<link href='//fonts.googleapis.com/css?family=Roboto+Mono' rel='stylesheet' type='text/css'>
|
|
195
195
|
#{css("app.css")}
|
|
196
196
|
#{css("font-awesome.min.css")}
|
|
197
197
|
#{script("external/moment.min.js")}
|
data/lib/logster/version.rb
CHANGED