Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions apps/_dashboard/static/css/no.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*****************************************************
no.css version 2020-08-09.1
no.css version 2026-01-16.1

Designed to style pages without need for custom classes.
headers, paragraphs, buttons, tables, forms,
Expand Down Expand Up @@ -201,7 +201,6 @@ thead th {
****************************************************/

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 {
-webkit-appearance: none;
background-color: transparent;
border: 0.1rem solid #d1d1d1;
border-radius: 5px;
Expand Down Expand Up @@ -282,7 +281,6 @@ body > center > * {
.col,.c25,.c33,.c50,.c66,.c75 {
padding: 20px;
display: block;
vertical-align: top;
}
}

Expand All @@ -302,7 +300,7 @@ body > center > * {
.warning{background-color:#ffdc00;color:#111}
.error{background-color:#cc1f00;color:white}
.info{background-color:#f1f1f1;color:#111}
.white{background-color:white;color:#111;padding 5px;}
.white{background-color:white;color:#111;padding: 5px;}
.black{background-color:#111;color:white}

/****************************************************
Expand Down
7 changes: 6 additions & 1 deletion apps/_dashboard/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import shutil
import subprocess
import tarfile

import datetime

__all__ = (
"safe_join",
Expand All @@ -28,6 +28,11 @@
"pack",
"unpack",
"create_app",
"make_safe",
"run",
"get_commits",
"get_branches",
"is_git_repo",
)


Expand Down