Improve dataTables integration within the app:

- Manage lib through NPM
- Move portal / Bootstrap files back to the itop-portal-base module (not managed through NPM yet)
- Fix SCSS classes for the backoffice as it was based on the bootstrap CSS classes which are not there anymore

Note: jQuery is included as a dependency, will check with the team if we can force it not to be retrieved
This commit is contained in:
Molkobain
2021-03-26 17:46:13 +01:00
parent 2e8c0346d3
commit 6f659a3431
183 changed files with 115480 additions and 395 deletions

View File

@@ -91,31 +91,36 @@ $ibo-vendors-datatables--focus--border-color: $ibo-color-primary-600 !default;
}
.paginate_button {
display: inline-block;
box-sizing: border-box;
}
.paginate_button a {
@extend %ibo-font-ral-med-100;
color: $ibo-vendors-datatables--paginate-button--link--color;
}
.paginate_button a:hover {
color: $ibo-vendors-datatables--paginate-button--link--hover--color;
}
.paginate_button.disabled a:hover {
cursor: default;
}
.paginate_button.active a {
@extend %ibo-font-ral-med-100;
color: $ibo-vendors-datatables--paginate-button-active--link--color;
background-color: $ibo-vendors-datatables--paginate-button-active--link--background-color;
display: inline-flex;
justify-content: center;
align-items: center;
min-width: 22px;
min-height: 22px;
padding: $ibo-vendors-datatables--paginate-button-active--link--padding-y $ibo-vendors-datatables--paginate-button-active--link--padding-x;
box-shadow: $ibo-vendors-datatables--paginate-button-active--link--box-shadow;
border-radius: $ibo-border-radius-300;
@extend %ibo-font-ral-med-100;
}
a.paginate_button {
color: $ibo-vendors-datatables--paginate-button--link--color;
&:hover {
color: $ibo-vendors-datatables--paginate-button--link--hover--color;
}
&.disabled {
&:hover {
cursor: default;
}
}
&.current {
@extend %ibo-font-ral-sembol-100;
color: $ibo-vendors-datatables--paginate-button-active--link--color;
background-color: $ibo-vendors-datatables--paginate-button-active--link--background-color;
box-shadow: $ibo-vendors-datatables--paginate-button-active--link--box-shadow;
border-radius: $ibo-border-radius-300;
}
}
.dataTables_info {