N°3573 - Migrate backoffice pages to new UIBlock system : System Information

This commit is contained in:
Eric
2021-06-18 17:04:39 +02:00
parent efb7f84ec4
commit 108bc2fa1d
4 changed files with 27 additions and 1 deletions

View File

@@ -18,6 +18,18 @@ $ibo-datatable--sort-order--color: $ibo-color-orange-600 !default;
$ibo-fieldsorter--selected--background-color: $ibo-color-blue-200 !default;
/* CSS variables (can be changed directly from the browser) */
:root {
--ibo-datatable-panel--table-spacing: #{$ibo-datatable-panel--table-spacing};
}
.ibo-datatable {
.ibo-datatable-header {
color: var(--ibo-body-text-color);
}
}
.ibo-datatable--toolbar {
display: flex;
justify-content: space-between;

View File

@@ -19,6 +19,10 @@ $ibo-title--icon-background--size--must-zoomout: 66.67% !default;
color: $ibo-title--text-color;
padding: $ibo-title--padding-y $ibo-title--padding-x;
.ibo-title--text {
@extend %ibo-font-ral-sembol-300;
}
}
.ibo-title--icon {

View File

@@ -20,6 +20,16 @@ $ibo-dashlet-badge--icon--size: 48px !default;
$ibo-dashlet-badge--action-icon--margin-right: 6px !default;
/* CSS variables (can be changed directly from the browser) */
:root {
--ibo-dashlet-badge--min-width: #{$ibo-dashlet-badge--min-width};
--ibo-dashlet-badge--padding-x: #{$ibo-dashlet-badge--padding-x};
--ibo-dashlet-badge--padding-y: #{$ibo-dashlet-badge--padding-y};
--ibo-dashlet-badge--background-color: #{$ibo-dashlet-badge--background-color};
--ibo-dashlet-badge--border: #{$ibo-dashlet-badge--border};
--ibo-dashlet-badge--border-radius: #{$ibo-dashlet-badge--border-radius};
}
/* Rules */
.ibo-dashlet-badge {
max-width: $ibo-dashlet-badge--max-width;

View File

@@ -7,7 +7,7 @@
{% endif %}
<div class="ibo-title--content">
{% block iboPageTitleText %}
<h{{ oUIBlock.GetLevel() }} class="ibo-title--text title is-size-{{ oUIBlock.GetLevel() + 2 }}">
<h{{ oUIBlock.GetLevel() }} class="ibo-title--text is-size-{{ oUIBlock.GetLevel() + 2 }}">
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
{{ render_block(oSubBlock, {aPage: aPage}) }}
{% endfor %}