Skip to content

Commit

Permalink
Fix containers and overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tomodwyer committed Sep 4, 2024
1 parent 588f8b8 commit 8d6628f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airlock/static/assets/file_browser/tree.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
height: calc(var(--tree-line-height) + 1px);
left: 0;
position: absolute;
width: calc(100% + 1rem);
width: 100%;
z-index: -2;
}

Expand Down
2 changes: 1 addition & 1 deletion airlock/templates/file_browser/request/dir.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{% endfragment %}


{% #card title=path_item.name container=True custom_button=buttons %}
{% #card title=path_item.name container=False custom_button=buttons %}
<form id="multiselect_form"
method="POST"
hx-post="{{ multiselect_url }}"
Expand Down
2 changes: 1 addition & 1 deletion airlock/templates/file_browser/workspace/dir.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
{% endfragment %}


{% #card title=path_item.name container=True custom_button=buttons %}
{% #card title=path_item.name container=False custom_button=buttons %}
{% if not path_item.children %}
This directory is empty
{% else %}
Expand Down

0 comments on commit 8d6628f

Please sign in to comment.