logviewer 1.5.1 → 1.5.7
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/lib/logviewer/version.rb +1 -1
- data/lib/logviewer.rb +7 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b2114d40916c4035ec2d6073e0bc07530fccda6d43662e1c0f15e46d2c5b053
|
4
|
+
data.tar.gz: 9bb090e8c537e956124225447d26d875e77e52f119671a3244db27049595c077
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16968466a7abbed8986d033d090101f8e56fe9b2e080e6374bc558b469bfd78368a35592af1e2f51d13e8759bedc3dd34b4155344065f94c329e9debbaaac23c
|
7
|
+
data.tar.gz: 0e97e00b01233e994316d7cbad5343fd60f5e93ae0379b325ca95e8036af79c0046c121cb2db4ae654c1a56b2848ba2b1f1edcce6d75c5b6573bfb4feae04b08
|
data/lib/logviewer/version.rb
CHANGED
data/lib/logviewer.rb
CHANGED
@@ -182,6 +182,7 @@ module LogViewer
|
|
182
182
|
width: 100%;
|
183
183
|
border-collapse: collapse;
|
184
184
|
font-size: 18px;
|
185
|
+
table-layout: fixed;
|
185
186
|
}
|
186
187
|
th {
|
187
188
|
background: #e9ecef;
|
@@ -207,9 +208,9 @@ module LogViewer
|
|
207
208
|
white-space: nowrap;
|
208
209
|
}
|
209
210
|
.text {
|
210
|
-
min-width: 600px;
|
211
211
|
word-wrap: break-word;
|
212
212
|
white-space: pre-wrap;
|
213
|
+
width: auto;
|
213
214
|
}
|
214
215
|
.file {
|
215
216
|
font-family: 'Monaco', 'Menlo', monospace;
|
@@ -223,6 +224,9 @@ module LogViewer
|
|
223
224
|
font-size: 16px;
|
224
225
|
color: #333;
|
225
226
|
font-weight: 500;
|
227
|
+
max-width: 300px;
|
228
|
+
word-wrap: break-word;
|
229
|
+
overflow-wrap: break-word;
|
226
230
|
}
|
227
231
|
.timestamp {
|
228
232
|
font-family: 'Monaco', 'Menlo', monospace;
|
@@ -257,8 +261,8 @@ module LogViewer
|
|
257
261
|
<th style="width: 80px;">Level</th>
|
258
262
|
<th style="width: 120px;">Tag</th>
|
259
263
|
<th style="width: 180px;">File</th>
|
260
|
-
<th style="width:
|
261
|
-
<th>Text</th>
|
264
|
+
<th style="width: 300px;">Function</th>
|
265
|
+
<th style="width: auto;">Text</th>
|
262
266
|
</tr>
|
263
267
|
</thead>
|
264
268
|
<tbody>
|