-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make table header sticky * Make table header and rows more compact * Match alignment of columns in both header and rows And increase header text contrast * Hide history and logs view options selector Its functionality is not yet implemented * Move event details content to a separate component For ease of implementing new changes and refactoring * Swap placement of event attributes and logs * Make event actions buttons more compact * Move event actions buttons * Make event logs and history more compact
- Loading branch information
1 parent
cfbe2be
commit 523517d
Showing
16 changed files
with
67 additions
and
98 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
src/howitz/templates/components/accordion/event-actions-buttons.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/howitz/templates/components/accordion/event-details-content.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<td colspan="100"> | ||
|
||
<div | ||
id="accordion-body-{{ id }}" | ||
aria-labelledby="event-accordion-row-{{ id }}" | ||
class="p-2 border border-b-0 border-gray-200 dark:border-gray-700 dark:bg-gray-900"> | ||
|
||
<div | ||
class="grid grid-cols-1 content-between" | ||
> | ||
|
||
<div | ||
class="flex flex-row-reverse grow-0 gap-4 justify-evenly" | ||
> | ||
<div class="flex flex-col basis-4/12"> | ||
{% with event_attr=event_attr %} | ||
{% include "/components/accordion/event-attributes.html" %} | ||
{% endwith %} | ||
</div> | ||
|
||
<div class="flex flex-col basis-8/12"> | ||
{% include "/components/accordion/event-actions-buttons.html" %} | ||
{% with id=id, event_msgs=event_msgs %} | ||
{% include "/components/accordion/event-messages-block.html" %} | ||
{% endwith %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</td> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters