Skip to content

Commit 4348916

Browse files
authored
Dashboard app: fix errors from utils and no.css (#1014)
1 parent bb93883 commit 4348916

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

apps/_dashboard/static/css/no.css

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*****************************************************
2-
no.css version 2020-08-09.1
2+
no.css version 2026-01-16.1
33
44
Designed to style pages without need for custom classes.
55
headers, paragraphs, buttons, tables, forms,
@@ -201,7 +201,6 @@ thead th {
201201
****************************************************/
202202

203203
input[type='color'], input[type='date'], input[type='datetime'], input[type='time'], input[type='datetime-local'], input[type='email'], input[type='month'], input[type='number'], input[type='password'], input[type='search'], input[type='tel'], input[type='text'], input[type='url'], input[type='week'], input:not([type]), textarea, select {
204-
-webkit-appearance: none;
205204
background-color: transparent;
206205
border: 0.1rem solid #d1d1d1;
207206
border-radius: 5px;
@@ -282,7 +281,6 @@ body > center > * {
282281
.col,.c25,.c33,.c50,.c66,.c75 {
283282
padding: 20px;
284283
display: block;
285-
vertical-align: top;
286284
}
287285
}
288286

@@ -302,7 +300,7 @@ body > center > * {
302300
.warning{background-color:#ffdc00;color:#111}
303301
.error{background-color:#cc1f00;color:white}
304302
.info{background-color:#f1f1f1;color:#111}
305-
.white{background-color:white;color:#111;padding 5px;}
303+
.white{background-color:white;color:#111;padding: 5px;}
306304
.black{background-color:#111;color:white}
307305

308306
/****************************************************

apps/_dashboard/utils.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import shutil
1818
import subprocess
1919
import tarfile
20-
20+
import datetime
2121

2222
__all__ = (
2323
"safe_join",
@@ -28,6 +28,11 @@
2828
"pack",
2929
"unpack",
3030
"create_app",
31+
"make_safe",
32+
"run",
33+
"get_commits",
34+
"get_branches",
35+
"is_git_repo",
3136
)
3237

3338

0 commit comments

Comments
 (0)