Skip to content

Commit fb20919

Browse files
committed
update to tabler css v1.2
1 parent 524c5f9 commit fb20919

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
- Update default chart colors and text shadows for better readability with all themes
66
- Optimize memory layout by boxing large structs. Slightly reduces memory usage.
77
- New example: [Rich text editor](./examples/rich-text-editor/). Let your users safely write formatted text with links and images.
8+
- Update the Tabler CSS library to [v1.2](https://tabler.io/changelog#/changelog/tabler-1.2). This fixes issues with
9+
- the alignment inside chart tooltips
10+
- the display of lists
811

912
## v0.34 (2025-03-23)
1013

sqlpage/sqlpage.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/* !include https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0/dist/css/tabler.min.css */
2-
/* !include https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0/dist/css/tabler-vendors.min.css */
1+
/* !include https://cdn.jsdelivr.net/npm/@tabler/core@1.2.0/dist/css/tabler.min.css */
2+
/* !include https://cdn.jsdelivr.net/npm/@tabler/core@1.2.0/dist/css/tabler-vendors.min.css */
33

44
:root {
55
/* Workaround for https://github.com/tabler/tabler/issues/1879 */

sqlpage/templates/list.handlebars

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div class="row align-items-center m-0">
1212
{{#if link}}<a href="{{link}}"
1313
{{~else}}<div {{/if}}
14-
class="col row align-items-center text-decoration-none link-body-emphasis m-0 {{#if ../compact}}p-1{{else}}p-3{{/if}}">
14+
class="col row align-items-center text-decoration-none text-body m-0 {{#if ../compact}}p-1{{else}}p-3{{/if}}">
1515
{{#if color}}
1616
<div class="col-auto"><span class="badge bg-{{color}}"></span></div>
1717
{{/if}}
@@ -48,7 +48,7 @@
4848

4949
{{#if delete_link}}
5050
<form method="POST" action="{{delete_link}}" class="col-auto m-0 p-0">
51-
<button type="submit" class="btn btn-link link-secondary p-0 border-0" title="Delete">
51+
<button type="submit" class="btn btn-link link-secondary p-0 border-0 bg-transparent" title="Delete">
5252
{{~icon_img 'trash'~}}
5353
</button>
5454
</form>

0 commit comments

Comments
 (0)