mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-17 08:05:52 +00:00
Fix sticky headers to new offset
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
class="table table-striped table-hover table-bordered bg-light"
|
class="table table-striped table-hover table-bordered bg-light"
|
||||||
data-toggle="table"
|
data-toggle="table"
|
||||||
data-sticky-header="true"
|
data-sticky-header="true"
|
||||||
data-sticky-header-offset-y="50"
|
data-sticky-header-offset-y="65"
|
||||||
data-sortable="true">
|
data-sortable="true">
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="bg-primary text-white">
|
<tr class="bg-primary text-white">
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
class="table table-striped table-hover table-bordered bg-light"
|
class="table table-striped table-hover table-bordered bg-light"
|
||||||
data-toggle="table"
|
data-toggle="table"
|
||||||
data-sticky-header="true"
|
data-sticky-header="true"
|
||||||
data-sticky-header-offset-y="50"
|
data-sticky-header-offset-y="65"
|
||||||
data-sortable="true">
|
data-sortable="true">
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="bg-primary text-white">
|
<tr class="bg-primary text-white">
|
||||||
|
@@ -55,7 +55,7 @@
|
|||||||
id="report-table"
|
id="report-table"
|
||||||
data-toggle="table"
|
data-toggle="table"
|
||||||
data-sticky-header="true"
|
data-sticky-header="true"
|
||||||
data-sticky-header-offset-y="50"
|
data-sticky-header-offset-y="65"
|
||||||
data-sortable="true">
|
data-sortable="true">
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="bg-primary text-white">
|
<tr class="bg-primary text-white">
|
||||||
|
@@ -10,7 +10,7 @@
|
|||||||
class="table table-striped table-hover table-bordered bg-light"
|
class="table table-striped table-hover table-bordered bg-light"
|
||||||
data-toggle="table"
|
data-toggle="table"
|
||||||
data-sticky-header="true"
|
data-sticky-header="true"
|
||||||
data-sticky-header-offset-y="50"
|
data-sticky-header-offset-y="65"
|
||||||
data-sortable="true"
|
data-sortable="true"
|
||||||
data-show-multi-sort="true"
|
data-show-multi-sort="true"
|
||||||
data-sort-priority='[{"sortName": "date", "sortOrder": "desc"},{"sortName": "time", "sortOrder": "desc"}]'
|
data-sort-priority='[{"sortName": "date", "sortOrder": "desc"},{"sortName": "time", "sortOrder": "desc"}]'
|
||||||
|
@@ -31,7 +31,7 @@ tbody {
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
padding-bottom: 25px;
|
padding-bottom: 25px;
|
||||||
padding-top: 60px;
|
padding-top: 70px;
|
||||||
background-color: #ffb878;
|
background-color: #ffb878;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -26,7 +26,8 @@
|
|||||||
{% if category == 'message' %}
|
{% if category == 'message' %}
|
||||||
{% set category = "info" %}
|
{% set category = "info" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="alert alert-{{ category }}" role="alert">{{ message }}</div>
|
<div class="alert alert-{{ category }} alert-dismissible fade show"
|
||||||
|
role="alert">{{ message }}</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
|
Reference in New Issue
Block a user