mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-03 12:25:31 +00:00
Fix more contrast issues
This commit is contained in:
parent
b185a28676
commit
059a855b3f
10 changed files with 44 additions and 26 deletions
|
@ -1,3 +1,7 @@
|
|||
.theme label {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.theme img {
|
||||
border: 1px solid var(--border-color);
|
||||
padding: 4px;
|
||||
|
|
|
@ -16,7 +16,7 @@ body {
|
|||
width: 100%;
|
||||
/* Set the fixed height of the footer here */
|
||||
height: 84px;
|
||||
color: #AAA;
|
||||
color: var(--text-muted);
|
||||
border-top: 1px solid var(--border-muted);
|
||||
}
|
||||
|
||||
|
@ -140,7 +140,7 @@ pre {
|
|||
}
|
||||
|
||||
.nav-pills > li > a {
|
||||
color: #888;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.jumbotron p {
|
||||
|
|
8
static/css/bootstrap-colors.css
vendored
8
static/css/bootstrap-colors.css
vendored
|
@ -150,6 +150,12 @@ code {
|
|||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
|
||||
h1 small,
|
||||
h2 small {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
}
|
||||
|
||||
.help-block {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
#log .details span.ua-body {
|
||||
font-family: "Lucida Console", Monaco, monospace;
|
||||
font-size: 11.7px;
|
||||
color: #888;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
#log tr.ok {
|
||||
|
|
|
@ -200,7 +200,7 @@
|
|||
}
|
||||
|
||||
.add-check-note {
|
||||
color: #888;
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
font-size: 12px;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
}
|
||||
|
||||
.my-checks-name.unnamed {
|
||||
color: #999;
|
||||
color: var(--text-muted);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
|
@ -74,7 +74,7 @@
|
|||
}
|
||||
|
||||
.checks-subline {
|
||||
color: #888;
|
||||
color: var(--text-muted);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
@ -113,7 +113,7 @@ tr:hover .copy-link {
|
|||
}
|
||||
|
||||
.url-cell .base {
|
||||
color: #888;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.my-checks-url {
|
||||
|
@ -124,7 +124,7 @@ tr:hover .copy-link {
|
|||
}
|
||||
|
||||
.checks-subline-duration {
|
||||
color: #888;
|
||||
color: var(--text-muted);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
}
|
||||
|
||||
#project-selector a:hover .project {
|
||||
border-color: #0091EA;
|
||||
border-color: var(--link-color);
|
||||
}
|
||||
|
||||
#project-selector .project {
|
||||
|
@ -26,7 +26,7 @@
|
|||
}
|
||||
|
||||
#project-selector .project.selected {
|
||||
border-color: #0091EA;
|
||||
border-color: var(--link-color);
|
||||
}
|
||||
|
||||
#project-selector .project .status {
|
||||
|
@ -45,7 +45,7 @@
|
|||
}
|
||||
|
||||
#project-selector #add-project:hover .project {
|
||||
border-color: #0091EA;
|
||||
color: #333;
|
||||
border-color: var(--link-color);
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
:root {
|
||||
color-scheme: light;
|
||||
--alert-info-bg: #d9edf7;
|
||||
--alert-info-border: #bce8f1;
|
||||
--alert-info-color: #31708f;
|
||||
|
@ -62,11 +63,12 @@
|
|||
--tag-up-border: #ccc;
|
||||
--tag-up-color: #333;
|
||||
--text-color: #333;
|
||||
--text-muted: #666;
|
||||
--text-muted: #767676;
|
||||
}
|
||||
|
||||
|
||||
body.dark {
|
||||
color-scheme: dark;
|
||||
--alert-info-bg: #123051;
|
||||
--alert-info-border: #163c64;
|
||||
--alert-info-color: #e0e2f5;
|
||||
|
@ -132,3 +134,8 @@ body.dark {
|
|||
--text-color: #e0e0e2;
|
||||
--text-muted: hsl(240, 3%, 55%);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$(function () {
|
||||
$("input[type=radio][name=theme]").change(function() {
|
||||
document.body.classList.toggle("dark", this.value == "dark");
|
||||
this.form.submit();
|
||||
});
|
||||
});
|
||||
|
|
|
@ -34,12 +34,15 @@
|
|||
|
||||
<div class="row">
|
||||
<div class="col-sm-6 theme">
|
||||
<img
|
||||
src="{% static 'img/theme-light.png' %}"
|
||||
alt="Light theme preview">
|
||||
<label for="theme-light">
|
||||
<img
|
||||
src="{% static 'img/theme-light.png' %}"
|
||||
alt="Light theme preview">
|
||||
</label>
|
||||
|
||||
<label class="radio-container">
|
||||
<input
|
||||
id="theme-light"
|
||||
type="radio"
|
||||
name="theme"
|
||||
value=""
|
||||
|
@ -49,12 +52,15 @@
|
|||
</label>
|
||||
</div>
|
||||
<div class="col-sm-6 theme">
|
||||
<img
|
||||
src="{% static 'img/theme-dark.png' %}"
|
||||
alt="Dark theme preview">
|
||||
<label for="theme-dark">
|
||||
<img
|
||||
src="{% static 'img/theme-dark.png' %}"
|
||||
alt="Dark theme preview">
|
||||
</label>
|
||||
|
||||
<label class="radio-container">
|
||||
<input
|
||||
id="theme-dark"
|
||||
type="radio"
|
||||
name="theme"
|
||||
value="dark"
|
||||
|
@ -64,11 +70,6 @@
|
|||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<button
|
||||
type="submit"
|
||||
class="btn btn-default pull-right">Save Changes</button>
|
||||
</form>
|
||||
</div>
|
||||
{% if status == "info" %}
|
||||
|
|
Loading…
Add table
Reference in a new issue