Merge remote-tracking branch 'origin/develop' into feature/uninstallation

This commit is contained in:
Molkobain
2026-04-30 10:38:05 +02:00
200 changed files with 7877 additions and 396 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -18,7 +18,6 @@
@import 'common/main.scss';
@import 'variables.scss';
@import "utils/all";
@import '../node_modules/ckeditor5-itop-build/build/styles/compiled-theme';
/*!
* Combodo portal template v1.0.0
@@ -541,9 +540,14 @@ table .group-actions a.glyphicon-menu-hamburger{
/*********/
/* Forms */
/*********/
/* - Ensure HTML contents are displayed like in CKEditor */
.ipb-is-html-content {
@extend .ck-content;
:root {
--ck-content-font-family: inherit;
--ck-content-font-color: inherit;
--ck-content-font-size: inherit;
--ck-content-line-height: inherit;
--ck-content-word-break: inherit;
--ck-content-overflow-wrap: inherit;
}

View File

@@ -18,6 +18,9 @@ $ipb-field--is-mandatory--color: $ipb-color-primary-700 !default;
$ipb-form--linkedset--toggler--color: $ipb-color-primary-700 !default;
$ipb-field--label--color: $ipb-color-grey-900 !default;
$ipb-field--value--color: $ipb-color-grey-900 !default;
.form_fields {
fieldset {
background-color: $ipb--fieldset--background-color;
@@ -42,4 +45,12 @@ $ipb-form--linkedset--toggler--color: $ipb-color-primary-700 !default;
& > .glyphicon{
color: $ipb-form--linkedset--toggler--color;
}
}
.form_field_label {
color: $ipb-field--label--color;
}
.form_field_control, .form_field_control .ipb-is-html-content {
color: $ipb-field--value--color;
}

View File

@@ -1 +1,2 @@
@import "datatables";
@import "datatables";
@import "ckeditor";

View File

@@ -0,0 +1,20 @@
@import '../node_modules/ckeditor5-itop-build/build/styles/compiled-theme';
$ipb-vendors-ckeditor--ck-content--text-color: $ipb-color-grey-900 !default;
:root {
--ck-content-font-family: inherit;
--ck-content-font-color: inherit;
--ck-content-font-size: inherit;
--ck-content-line-height: inherit;
--ck-content-word-break: inherit;
--ck-content-overflow-wrap: inherit;
}
.ck-content {
color: $ipb-vendors-ckeditor--ck-content--text-color;
}
.ipb-is-html-content {
@extend .ck-content;
}