mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-25 21:15:55 +00:00
add color on pause number
This commit is contained in:
parent
74ce61e150
commit
d7a20380e1
3 changed files with 7 additions and 1 deletions
|
@ -40,6 +40,11 @@ textarea.form-control {
|
|||
color: $unknown !important;
|
||||
}
|
||||
|
||||
// pause number color
|
||||
.text-pause {
|
||||
color: $pause !important;
|
||||
}
|
||||
|
||||
.incident a,
|
||||
.bg-maintenance a {
|
||||
color: inherit;
|
||||
|
|
|
@ -3,6 +3,7 @@ $danger: #dc3545;
|
|||
$warning: #f8a306;
|
||||
$maintenance: #1747f5;
|
||||
$unknown:#e5a328;
|
||||
$pause:#060047;
|
||||
$link-color: #111;
|
||||
$border-radius: 50rem;
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
</div>
|
||||
<div class="col">
|
||||
<h3>{{ $t("pauseDashboardHome") }}</h3>
|
||||
<span class="num text-secondary">{{ $root.stats.pause }}</span>
|
||||
<span class="num text-pause">{{ $root.stats.pause }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue