mirror of
https://github.com/tuna/mirror-web.git
synced 2025-12-25 20:32:46 +00:00
add support for status `pause`
This commit is contained in:
parent
21bfc35ba2
commit
94512f4faa
|
|
@ -66,7 +66,7 @@ $font_local: 'Heiti SC', 'Hiragino Sans GB', 'STHeiti', 'Source Han Sans CN', 'W
|
|||
tr:hover {
|
||||
background-color: #e0f3fc;
|
||||
}
|
||||
tr.status-fail, tr.status-failed {
|
||||
tr.status-fail, tr.status-failed, tr.status-paused {
|
||||
background-color: #fff4e3;
|
||||
}
|
||||
tr.status-syncing {
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ var mir_tmpl = $("#template").text(),
|
|||
'success': 'label-success',
|
||||
'fail': 'label-warning',
|
||||
'failed': 'label-warning',
|
||||
'paused': 'label-warning',
|
||||
},
|
||||
help_url = {
|
||||
{% for h in site.categories['help'] %}"{{h.mirrorid}}": "{{h.url}}"{% if forloop.index < forloop.length %},{% endif %}{% endfor %}
|
||||
|
|
|
|||
Loading…
Reference in New Issue