N°3565 - Migrate backoffice pages to new UIBlock system : Setup (fix some fonts)

This commit is contained in:
Eric
2021-02-08 11:30:25 +01:00
parent 69189ab41a
commit 96faad7539
3 changed files with 20 additions and 4 deletions

View File

@@ -462,7 +462,7 @@
-moz-font-feature-settings: "lnum"; -moz-font-feature-settings: "lnum";
font-feature-settings: "lnum"; font-feature-settings: "lnum";
} }
.ibo-alert, .ibo-button, .ui-dialog .ui-button, .ui-datepicker-current, .ui-datepicker-close, .ibo-prop--apply > span, .ibo-prop--cancel > span, .sf_results_placeholder button, .sfc_fg_button, .ibo-dashlet--delete, .ibo-dashlet-badge--action-create, .sf_results_placeholder, .ibo-dashboard--properties--subtitle, .ibo-dashboard--available-dashlet--title, .ibo-dashlet--properties--title { .ibo-alert, .ibo-dashlet-badge--action-create, .sf_results_placeholder, .ibo-dashboard--properties--subtitle, .ibo-dashboard--available-dashlet--title, .ibo-dashlet--properties--title {
font-size: 1.17rem; font-size: 1.17rem;
font-family: "Raleway"; font-family: "Raleway";
font-weight: 500; font-weight: 500;
@@ -518,6 +518,14 @@ ul.cke_autocomplete_panel .ibo-vendors-ckeditor--autocomplete-item-title, .ibo-n
-moz-font-feature-settings: "lnum"; -moz-font-feature-settings: "lnum";
font-feature-settings: "lnum"; font-feature-settings: "lnum";
} }
.ibo-button, .ui-dialog .ui-button, .ui-datepicker-current, .ui-datepicker-close, .ibo-prop--apply > span, .ibo-prop--cancel > span, .sf_results_placeholder button, .sfc_fg_button, .ibo-dashlet--delete {
font-size: 1rem;
font-family: "Raleway";
font-weight: 600;
-webkit-font-feature-settings: "lnum";
-moz-font-feature-settings: "lnum";
font-feature-settings: "lnum";
}
.ibo-navigation-menu--menu-filter-hint { .ibo-navigation-menu--menu-filter-hint {
font-size: 0.83rem; font-size: 0.83rem;
font-family: "Raleway"; font-family: "Raleway";
@@ -10930,6 +10938,7 @@ a:active {
} }
.ibo-button, .ui-dialog .ui-button, .ui-datepicker-current, .ui-datepicker-close, .ibo-prop--apply > span, .ibo-prop--cancel > span, .sf_results_placeholder button, .sfc_fg_button, .ibo-dashlet--delete { .ibo-button, .ui-dialog .ui-button, .ui-datepicker-current, .ui-datepicker-close, .ibo-prop--apply > span, .ibo-prop--cancel > span, .sf_results_placeholder button, .sfc_fg_button, .ibo-dashlet--delete {
cursor: pointer; cursor: pointer;
text-transform: uppercase;
padding: 6px 9px; padding: 6px 9px;
border: 0; border: 0;
border-radius: 4px; border-radius: 4px;
@@ -14984,4 +14993,7 @@ body {
.ibo-setup--button-bar .ibo-setup--full-width { .ibo-setup--button-bar .ibo-setup--full-width {
width: 100%; width: 100%;
} }
.ibo-setup-summary-title {
font-size: 1.17rem;
}
/* integrityCheck: end (do not remove/edit) */ /* integrityCheck: end (do not remove/edit) */

View File

@@ -468,4 +468,8 @@ body {
} }
} }
.ibo-setup-summary-title {
font-size: $ibo-font-size-150;
}
/* integrityCheck: end (do not remove/edit) */ /* integrityCheck: end (do not remove/edit) */

View File

@@ -2213,7 +2213,7 @@ CSS
$oPage->add('<fieldset id="summary"><legend>Installation Parameters</legend>'); $oPage->add('<fieldset id="summary"><legend>Installation Parameters</legend>');
$oPage->add('<div id="params_summary">'); $oPage->add('<div id="params_summary">');
$oPage->add('<div class="closed"><span class="title">Database Parameters</span><ul>'); $oPage->add('<div class="closed"><span class="title ibo-setup-summary-title">Database Parameters</span><ul>');
$oPage->add('<li>Server Name: '.$aInstallParams['database']['server'].'</li>'); $oPage->add('<li>Server Name: '.$aInstallParams['database']['server'].'</li>');
$oPage->add('<li>DB User Name: '.$aInstallParams['database']['user'].'</li>'); $oPage->add('<li>DB User Name: '.$aInstallParams['database']['user'].'</li>');
$oPage->add('<li>DB user password: '.$aInstallParams['database']['pwd'].'</li>'); $oPage->add('<li>DB user password: '.$aInstallParams['database']['pwd'].'</li>');
@@ -2235,11 +2235,11 @@ CSS
} }
$oPage->add('</ul></div>'); $oPage->add('</ul></div>');
$oPage->add('<div><span class="title">Data Model Configuration</span>'); $oPage->add('<div><span class="title ibo-setup-summary-title">Data Model Configuration</span>');
$oPage->add($this->oWizard->GetParameter('display_choices')); $oPage->add($this->oWizard->GetParameter('display_choices'));
$oPage->add('</div>'); $oPage->add('</div>');
$oPage->add('<div class="closed"><span class="title">Other Parameters</span><ul>'); $oPage->add('<div class="closed"><span class="title ibo-setup-summary-title">Other Parameters</span><ul>');
if ($sMode == 'install') if ($sMode == 'install')
{ {
$oPage->add('<li>Default language: '.$aInstallParams['language'].'</li>'); $oPage->add('<li>Default language: '.$aInstallParams['language'].'</li>');