Skip to content

Commit

Permalink
Merge branch 'dev' into jq-update
Browse files Browse the repository at this point in the history
  • Loading branch information
aarushtools authored Jul 6, 2024
2 parents be9b840 + f164994 commit 80f9bce
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions Ion.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -945,6 +945,7 @@ intranet/static/css/dark/enrichment.scss
intranet/static/css/dark/events.scss
intranet/static/css/dark/files.scss
intranet/static/css/dark/login.scss
intranet/static/css/dark/logs.scss
intranet/static/css/dark/lostfound.scss
intranet/static/css/dark/nav.scss
intranet/static/css/dark/oauth.scss
Expand Down
1 change: 1 addition & 0 deletions intranet/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@
"dark/eighth.schedule",
"dark/oauth",
"dark/sessionmgmt",
"dark/logs",
]

for name in LIST_OF_INDEPENDENT_CSS:
Expand Down
7 changes: 7 additions & 0 deletions intranet/static/css/dark/logs.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
tr.shade:nth-child(even) {
background-color: #292929;
}

th.sticky {
background-color: #121212;
}
4 changes: 4 additions & 0 deletions intranet/static/css/logs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ td {
color: green;
}

tr.shade:nth-child(even) {
background-color: #e7e7e7;
}

.key-red {
color: rgb(153, 0, 0);
}
Expand Down
4 changes: 4 additions & 0 deletions intranet/static/js/eighth/signup.search.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ $(function() {
show = true;
}
}
// description
if (activity.description.toLowerCase().indexOf(search) !== -1) {
show = true;
}

var cmd = search.split(":");
if (cmd.length > 1) {
Expand Down
1 change: 1 addition & 0 deletions intranet/templates/logs/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
{% if dark_mode_enabled %}
{% stylesheet 'dark/base' %}
{% stylesheet 'dark/nav' %}
{% stylesheet 'dark/logs' %}
{% endif %}
{% endblock %}

Expand Down

0 comments on commit 80f9bce

Please sign in to comment.