mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-08 06:30:05 +00:00
Make log events fit better on mobile screens.
This commit is contained in:
parent
87495a74c6
commit
052700a642
6 changed files with 187 additions and 265 deletions
|
@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
|
|||
### Bug Fixes
|
||||
|
||||
- On mobile, "My Checks" page, always show the gear (Details) button (#286)
|
||||
- Make log events fit better on mobile screens
|
||||
|
||||
## 1.10.0 - 2019-10-21
|
||||
|
||||
|
|
431
static/css/bootstrap.css
vendored
431
static/css/bootstrap.css
vendored
File diff suppressed because it is too large
Load diff
|
@ -29,6 +29,12 @@
|
|||
padding-left: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
#log .delta {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#log .details {
|
||||
width: 100%;
|
||||
max-width: 0;
|
||||
|
@ -58,6 +64,11 @@
|
|||
background: #fff3f2;
|
||||
}
|
||||
|
||||
#log td.event {
|
||||
text-align: right;
|
||||
width: 1%;
|
||||
}
|
||||
|
||||
#log .n-cell {
|
||||
font-family: monospace;
|
||||
text-align: right;
|
||||
|
@ -70,3 +81,4 @@
|
|||
#log .alert-info {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
|
||||
//** By default, this inherits from the `<body>`.
|
||||
@headings-font-family: inherit;
|
||||
@headings-font-weight: 300;
|
||||
@headings-font-weight: 400;
|
||||
@headings-line-height: 1.1;
|
||||
@headings-color: inherit;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
</td>
|
||||
<td class="date"></td>
|
||||
<td class="time"></td>
|
||||
<td class="text-right">
|
||||
<td class="event">
|
||||
{% if event.kind == "fail" %}
|
||||
<span class="label label-danger">Failure</span>
|
||||
{% elif event.kind == "start" %}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</li>
|
||||
<li class="active">Log</li>
|
||||
|
||||
<li id="format-switcher-container" class="pull-right">
|
||||
<li id="format-switcher-container" class="pull-right hidden-xs">
|
||||
<div id="format-switcher" class="btn-group" data-toggle="buttons">
|
||||
<label class="btn btn-default btn-xs" data-format="UTC">
|
||||
<input type="radio" name="date-format" checked>
|
||||
|
@ -50,7 +50,7 @@
|
|||
</td>
|
||||
<td class="date"></td>
|
||||
<td class="time"></td>
|
||||
<td class="text-right">
|
||||
<td class="event">
|
||||
{% if event.kind == "fail" %}
|
||||
<span class="label label-danger">Failure</span>
|
||||
{% elif event.kind == "start" %}
|
||||
|
|
Loading…
Add table
Reference in a new issue