-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(deps): install 5.2 beta * fix: include new maps partial * fix: set btn-lg border-radius * fix: customise prefix variable * fix: style .active focus state * docs: add responsive table example * chore: install bootstrap 5.2 * docs: update readme * chore: generate styles * fix: update table partial * docs: use new table-group-divider * chore: generate styles
- Loading branch information
1 parent
c046cb1
commit cc86e84
Showing
14 changed files
with
277 additions
and
42 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{% macro tableRow( id = '1', data = { label: 'default'}) %} | ||
<tr> | ||
<td>{{ id }}</td> | ||
<td> | ||
<span class="label label-default">{{ data.label }}</span> | ||
</td> | ||
<td>{{ data.subject }}</td> | ||
<td>{{ data.student }}</td> | ||
<td> | ||
<div class="text-end"> | ||
<button data-bs-toggle="dropdown" class="btn btn-lg btn-default"> | ||
<span class="visually-hidden">Actions</span> | ||
<i class="far fa-ellipsis-v"></i> | ||
</button> | ||
<ul class="dropdown-menu"> | ||
<li> | ||
<a class="dropdown-item" href="#">View details</a> | ||
</li> | ||
<li> | ||
<a class="dropdown-item" href="#">Upload document</a> | ||
</li> | ||
<li> | ||
<a class="dropdown-item" href="#" | ||
>Edit & resubmit</a | ||
> | ||
</li> | ||
</ul> | ||
</div> | ||
</td> | ||
</tr> | ||
{% endmacro %} |
Oops, something went wrong.