diff --git a/css/backoffice/components/_datatable.scss b/css/backoffice/components/_datatable.scss index 518acf74d2..69fa57ea5b 100644 --- a/css/backoffice/components/_datatable.scss +++ b/css/backoffice/components/_datatable.scss @@ -1,108 +1,175 @@ +$ibo-datatable--padding-y: 2em !default; + +$ibo-datatable-cell-row--line-height: 30px !default; +$ibo-datatable-cell-row--padding-x: 1em !default; +$ibo-datatable-cell-row--link--color: $ibo-color-primary-600 !default; + +$ibo-datatable-row--odd--background-color: $ibo-color-white-200 !default; +$ibo-datatable-row--even--background-color: $ibo-color-white-100 !default; + +$ibo-datatable--toolbar--elements--padding-top: 0.755em !default; + +$ibo-datatable--toolbar--length--padding-right: 0.5em !default; +$ibo-datatable--toolbar--length--select--height: 18px !default; +$ibo-datatable--toolbar--length--select--width: unset !default; +$ibo-datatable--toolbar--length--select--padding-y: 1px !default; +$ibo-datatable--toolbar--length--select--padding-x: 2px !default; + +$ibo-datatable--toolbar--info--padding-right: 2em !default; +$ibo-datatable--toolbar--info--padding-left: 0em !default; +$ibo-datatable--toolbar--info--line-height: $ibo-datatable--toolbar--length--select--height + $ibo-datatable--toolbar--length--select--padding-y !default; + +$ibo-datatable--select-info--padding-left: 2em !default; + +$ibo-datatable--pagination--color: $ibo-color-grey-800 !default; + +$ibo-datatable--pagination--position-x: 1.21% !default; +$ibo-datatable--pagination--position-top: 91.58% !default; +$ibo-datatable--pagination--position-bottom: 4.85% !default; +$ibo-datatable--pagination--button-margin-x: 0.5em !default; + +$ibo-datatable--paginate--padding-top: $ibo-datatable--toolbar--elements--padding-top !default; +$ibo-datatable--paginate--padding-left: 2em !default; + +$ibo-datatable--paginate-button--link--color: $ibo-color-grey-800 !default; +$ibo-datatable--paginate-button--link--hover--color: $ibo-color-blue-grey-200 !default; + +$ibo-datatable--paginate-button-active--link--color: $ibo-color-grey-900 !default; +$ibo-datatable--paginate-button-active--link--background-color: $ibo-color-grey-200 !default; +$ibo-datatable--paginate-button-active--link--padding-y: 2px !default; +$ibo-datatable--paginate-button-active--link--padding-x: 6px !default; +$ibo-datatable--paginate-button-active--link--box-shadow: inset 0px 1px 0px rgba(0, 0, 0, 0.15) !default; +$ibo-datatable--paginate-button-active--link--border-radius: $ibo-border-radius-300 !default; + +$ibo-datatable--sorting--opacity: 0.3 !default; +$ibo-datatable--sorting--right: 1em !default; + +$ibo-datatable-panel--body--padding: $ibo-panel--body--padding-top 0px $ibo-panel--body--padding-bottom !default; + .ibo-datatable { - padding-bottom: 2em; - padding-top: 2em; + padding-bottom: $ibo-datatable--padding-y; + padding-top: $ibo-datatable--padding-y; thead tr th, tbody tr td { - line-height: 30px; - padding-right: 1em; - padding-left: 1em; - @extend %ibo-font-ral-nor-100; + line-height: $ibo-datatable-cell-row--line-height; + padding-right: $ibo-datatable-cell-row--padding-x; + padding-left: $ibo-datatable-cell-row--padding-x; + @extend %ibo-font-ral-med-100; a { - color: $ibo-color-primary-600; + color: $ibo-datatable-cell-row--link--color; } } tbody tr:nth-child(odd) { - background-color: $ibo-color-secondary-500; + background-color: $ibo-datatable-row--odd--background-color; + } + tbody tr:nth-child(even) { + background-color: $ibo-datatable-row--even--background-color; } } - .dataTables_length - { - @extend %ibo-font-ral-med-100; - color: $ibo-color-grey-700; +.dataTables_length { + @extend %ibo-font-ral-med-100; + color: $ibo-color-grey-700; - position: relative; - float: right; - padding-top: 0.755em; - padding-right: 0.5em; + position: relative; + float: right; + padding-top: $ibo-datatable--toolbar--elements--padding-top; + padding-right: $ibo-datatable--toolbar--length--padding-right; + select{ + @extend .ibo-input; + @extend .ibo-input-select; + display: inline-block; + height: $ibo-datatable--toolbar--length--select--height; + width: $ibo-datatable--toolbar--length--select--width; + padding: $ibo-datatable--toolbar--length--select--padding-y $ibo-datatable--toolbar--length--select--padding-x; + + @extend %ibo-font-ral-med-100; } - .dataTables_info - { - @extend %ibo-font-ral-med-100; - color: $ibo-color-grey-700; +} +.dataTables_info { + @extend %ibo-font-ral-med-100; + color: $ibo-color-grey-700; - position: relative; - float: right; - padding-top: 0.755em; - padding-right: 2em; - padding-left: 0em; - } - .select-info{ - padding-left: 2em; - } + position: relative; + float: right; + padding-top: $ibo-datatable--toolbar--elements--padding-top; + padding-right: $ibo-datatable--toolbar--info--padding-right; + padding-left: $ibo-datatable--toolbar--info--padding-left; + line-height: $ibo-datatable--toolbar--info--line-height; +} +.select-info { + padding-left: $ibo-datatable--select-info--padding-left; +} +.pagination +{ + color: $ibo-datatable--pagination--color; - .pagination - { - color: $ibo-color-grey-800; - - left: 1.21%; - right: 1.21%; - top: 91.58%; - bottom: 4.85%; - .paginate_button { - margin-left: 1em; - margin-right: 1em; - } - } - .dataTables_paginate - { - /* position: relative;*/ - float: left; - padding-top: 0.755em; - padding-left: 2em; - } + left: $ibo-datatable--pagination--position-x; + right: $ibo-datatable--pagination--position-x; + top: $ibo-datatable--pagination--position-top; + bottom: $ibo-datatable--pagination--position-bottom; .paginate_button { - box-sizing: border-box; - display: inline-block; - } - .paginate_button a{ - color: $ibo-color-grey-800; - @extend %ibo-font-ral-nor-100; - } - .paginate_button a:hover { - color: $ibo-color-blue-grey-200; - } - .paginate_button.active a { - color: $ibo-color-grey-900; - border: 2px solid var(--ibo-color-grey-300); - background-color: $ibo-color-grey-200; + margin-left: $ibo-datatable--pagination--button-margin-x; + margin-right: $ibo-datatable--pagination--button-margin-x; } +} +.dataTables_paginate +{ + float: left; + padding-top: $ibo-datatable--paginate--padding-top; + padding-left: $ibo-datatable--paginate--padding-left; +} +.paginate_button { + display: inline-block; + box-sizing: border-box; +} +.paginate_button a{ + @extend %ibo-font-ral-med-100; + color: $ibo-datatable--paginate-button--link--color; +} +.paginate_button a:hover { + color: $ibo-datatable--paginate-button--link--hover--color; +} +.paginate_button.active a { + @extend %ibo-font-ral-med-100; + + color: $ibo-datatable--paginate-button-active--link--color; + background-color: $ibo-datatable--paginate-button-active--link--background-color; + padding: $ibo-datatable--paginate-button-active--link--padding-y $ibo-datatable--paginate-button-active--link--padding-x; + box-shadow: $ibo-datatable--paginate-button-active--link--box-shadow; + border-radius: $ibo-border-radius-300; +} .ibo-datatable thead tr th{ position: relative; } .ibo-datatable thead tr th.sorting::after{ - font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f0dc"; - opacity: 0.3; - right: 1em; position: absolute; + font-family: "Font Awesome 5 Free"; + content: "\f0dc"; + font-weight: 900; + opacity: $ibo-datatable--sorting--opacity; + right: $ibo-datatable--sorting--right; } .ibo-datatable thead tr th.sorting_desc:after{ - font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f0d7"; - right: 1em; position: absolute; + font-family: "Font Awesome 5 Free"; + content: "\f0d7"; + font-weight: 900; + right: $ibo-datatable--sorting--right; } .ibo-datatable thead tr th.sorting_asc:after{ - font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f0d8"; - right: 1em; position: absolute; + font-family: "Font Awesome 5 Free"; + font-weight: 900; + content: "\f0d8"; + right: $ibo-datatable--sorting--right; } -.ibo-datatable-toolbar { - /*position: relative;*/ - //height: 30px; +.ibo-datatable-panel > .ibo-panel--body { + padding: $ibo-datatable-panel--body--padding; } .ibo-criterion-area{ - font-size: $ibo-font-size-50 ; + font-size: $ibo-font-size-50; } .ibo-search-form{ padding-top: $ibo-panel--spacing-top ; diff --git a/css/light-grey.scss b/css/light-grey.scss index fd90c9ba1e..55f2358a20 100644 --- a/css/light-grey.scss +++ b/css/light-grey.scss @@ -231,21 +231,21 @@ } } - table.listContainer { - border: 0; - padding: 0; - margin: 0; - width: 100%; - clear: both; - } + //table.listContainer { + // border: 0; + // padding: 0; + // margin: 0; + // width: 100%; + // clear: both; + //} + // + //tr.containerHeader, tr.containerHeader td { + // background: transparent; + //} - tr.containerHeader, tr.containerHeader td { - background: transparent; - } - - tr.even td, .wizContainer tr.even td { - background-color: $table-even-background; - } + //tr.even td, .wizContainer tr.even td { + // background-color: $table-even-background; + //} tr.red_even td, .wizContainer tr.red_even td { background-color: #f97e75; diff --git a/datamodels/2.x/itop-structure/precompiled-themes/light-grey/main.css b/datamodels/2.x/itop-structure/precompiled-themes/light-grey/main.css index f61ae977af..938857b599 100644 --- a/datamodels/2.x/itop-structure/precompiled-themes/light-grey/main.css +++ b/datamodels/2.x/itop-structure/precompiled-themes/light-grey/main.css @@ -1,6 +1,6 @@ /* === SIGNATURE BEGIN === -{"variables":"d751713988987e9331980363e24189ce","stylesheets":{"css-variables":"732f501302c538f594fb3c668d85b46c","jqueryui":"a887ad1c00f29132beba3bf729b981c7","main":"d5d2002c5bcf8fcf592d8e028bbed2fb"},"imports":[],"images":{"css\/ui-lightness\/images\/ui-icons_222222_256x240.png":"3a3c5468f484f07ac4a320d9e22acb8c","css\/ui-lightness\/images\/ui-bg_diagonals-thick_20_666666_40x40.png":"4429d568c67d8dfeb9040273ea0fb8c4","css\/ui-lightness\/images\/ui-icons_E87C1E_256x240.png":"7003dd36cb2aa032c8ec871ce4d4e03d","css\/ui-lightness\/images\/ui-icons_1c94c4_256x240.png":"dbd693dc8e0ef04e90a2f7ac7b390086","css\/ui-lightness\/images\/ui-icons_F26522_256x240.png":"16278ec0c07270be571f4c2e97fcc10c","css\/ui-lightness\/images\/ui-bg_diagonals-thick_18_b81900_40x40.png":"e460a66d4b3e093fc651e62a236267cb","css\/ui-lightness\/images\/ui-icons_ffffff_256x240.png":"41612b0f4a034424f8321c9f824a94da","css\/ui-lightness\/images\/ui-icons_ffd27a_256x240.png":"dda1b6f694b0d196aefc66a1d6d758f6","images\/actions_right.png":"31c8906bd25d27b83a0a2466bf903462","images\/ac-background.gif":"76135f3697b41a15aed787cfd77776c7","images\/green-square.gif":"16ea9a497d72f5e66e4e8ea9ae08024e","images\/tv-item.gif":"719fe2d4566108e73162fb8868d3778c","images\/tv-collapsable.gif":"63a3351ea0d580797c9b8c386aa4f48b","images\/tv-expandable.gif":"a2d1af4128e4a798a7f3390b12a28574","images\/tv-item-last.gif":"2ae7e1d9972ce71e5caa65a086bc5b7e","images\/tv-collapsable-last.gif":"71acaa9d7c2616e9e8b7131a75ca65da","images\/tv-expandable-last.gif":"9d51036b3a8102742709da66789fd0f7","images\/red-header.gif":"c73b8765f0c8c3c183cb6a0c2bb0ec69","images\/green-header.gif":"0e22a09bb8051b2a274b3427ede62e82","images\/orange-header.gif":"ce1f93f0af64431771b4cbd6c99c567b","images\/calendar.png":"ab56e59af3c96ca661821257d376465e","images\/truncated.png":"c6f91108afe8159d417b4dc556cd3b2a","images\/plus.gif":"f00e1e6e1161f48608bb2bbc79b9948c","images\/minus.gif":"6d77c0c0c2f86b6995d1cdf78274eaab","images\/full-screen.png":"b541fadd3f1563856a4b44aeebd9d563","images\/indicator.gif":"03ce3dcc84af110e9da8699a841e5200","images\/delete.png":"93c047549c31a270a037840277cf59d3","images\/info-mini.png":"445c090ed777c5e6a08ac390fa896193","images\/ok.png":"f6973773335fd83d8d2875f9a3c925af","images\/error.png":"1af8a1041016f67669c5fd22dc88c82e","images\/eye-open-555.png":"9940f4e5b1248042c238e1924359fd5e","images\/eye-closed-555.png":"6ad3b0bae791bf61addc9d8ca80a642d","images\/eye-open-fff.png":"b7db2402d4d5c72314c25790a66150d4","images\/eye-closed-fff.png":"f9be7454dbb47b0e0bca3aa370ae7db5"}} +{"variables":"d751713988987e9331980363e24189ce","stylesheets":{"css-variables":"732f501302c538f594fb3c668d85b46c","jqueryui":"a887ad1c00f29132beba3bf729b981c7","main":"f9306ee6361fd028de957d86b4c8f561"},"imports":[],"images":{"css\/ui-lightness\/images\/ui-icons_222222_256x240.png":"3a3c5468f484f07ac4a320d9e22acb8c","css\/ui-lightness\/images\/ui-bg_diagonals-thick_20_666666_40x40.png":"4429d568c67d8dfeb9040273ea0fb8c4","css\/ui-lightness\/images\/ui-icons_E87C1E_256x240.png":"7003dd36cb2aa032c8ec871ce4d4e03d","css\/ui-lightness\/images\/ui-icons_1c94c4_256x240.png":"dbd693dc8e0ef04e90a2f7ac7b390086","css\/ui-lightness\/images\/ui-icons_F26522_256x240.png":"16278ec0c07270be571f4c2e97fcc10c","css\/ui-lightness\/images\/ui-bg_diagonals-thick_18_b81900_40x40.png":"e460a66d4b3e093fc651e62a236267cb","css\/ui-lightness\/images\/ui-icons_ffffff_256x240.png":"41612b0f4a034424f8321c9f824a94da","css\/ui-lightness\/images\/ui-icons_ffd27a_256x240.png":"dda1b6f694b0d196aefc66a1d6d758f6","images\/actions_right.png":"31c8906bd25d27b83a0a2466bf903462","images\/ac-background.gif":"76135f3697b41a15aed787cfd77776c7","images\/green-square.gif":"16ea9a497d72f5e66e4e8ea9ae08024e","images\/tv-item.gif":"719fe2d4566108e73162fb8868d3778c","images\/tv-collapsable.gif":"63a3351ea0d580797c9b8c386aa4f48b","images\/tv-expandable.gif":"a2d1af4128e4a798a7f3390b12a28574","images\/tv-item-last.gif":"2ae7e1d9972ce71e5caa65a086bc5b7e","images\/tv-collapsable-last.gif":"71acaa9d7c2616e9e8b7131a75ca65da","images\/tv-expandable-last.gif":"9d51036b3a8102742709da66789fd0f7","images\/red-header.gif":"c73b8765f0c8c3c183cb6a0c2bb0ec69","images\/green-header.gif":"0e22a09bb8051b2a274b3427ede62e82","images\/orange-header.gif":"ce1f93f0af64431771b4cbd6c99c567b","images\/calendar.png":"ab56e59af3c96ca661821257d376465e","images\/truncated.png":"c6f91108afe8159d417b4dc556cd3b2a","images\/plus.gif":"f00e1e6e1161f48608bb2bbc79b9948c","images\/minus.gif":"6d77c0c0c2f86b6995d1cdf78274eaab","images\/full-screen.png":"b541fadd3f1563856a4b44aeebd9d563","images\/indicator.gif":"03ce3dcc84af110e9da8699a841e5200","images\/delete.png":"93c047549c31a270a037840277cf59d3","images\/info-mini.png":"445c090ed777c5e6a08ac390fa896193","images\/ok.png":"f6973773335fd83d8d2875f9a3c925af","images\/error.png":"1af8a1041016f67669c5fd22dc88c82e","images\/eye-open-555.png":"9940f4e5b1248042c238e1924359fd5e","images\/eye-closed-555.png":"6ad3b0bae791bf61addc9d8ca80a642d","images\/eye-open-fff.png":"b7db2402d4d5c72314c25790a66150d4","images\/eye-closed-fff.png":"f9be7454dbb47b0e0bca3aa370ae7db5"}} === SIGNATURE END === */ /*! @@ -99,7 +99,7 @@ background-repeat: no-repeat; width: 16px; height: 16px; - background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605690930"); filter: hue-rotate(0deg); } .ui-widget-icon-block { @@ -232,7 +232,7 @@ .ui-menu .ui-menu-item { margin: 0; cursor: pointer; - list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7?v=1605536038"); + list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7?v=1605690930"); } .ui-menu .ui-menu-item-wrapper { position: relative; @@ -298,7 +298,7 @@ color: #EA7D1E; } .ui-button:hover .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-button:active { text-decoration: none; @@ -306,20 +306,20 @@ color: #EA7D1E; } .ui-button:active .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-button:focus { font-weight: bold; color: #EA7D1E; } .ui-button:focus .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-button .ui-state-highlight.ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_1c94c4_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_1c94c4_256x240.png?v=1605690930"); } .ui-button .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_F26522_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_F26522_256x240.png?v=1605690930"); } .ui-button-icon-only { width: 2em; @@ -901,7 +901,7 @@ body .ui-tooltip { background-image: none; } .ui-widget-content .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605690930"); } .ui-widget-header .ui-priority-secondary { opacity: 0.7; @@ -913,7 +913,7 @@ body .ui-tooltip { background-image: none; } .ui-widget-header .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605690930"); } .ui-state-default a { text-decoration: none; @@ -925,7 +925,7 @@ body .ui-tooltip { text-decoration: none; } .ui-state-default .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_F26522_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_F26522_256x240.png?v=1605690930"); } a.ui-button { text-decoration: none; @@ -955,7 +955,7 @@ a:visited.ui-button { text-decoration: none; } .ui-state-hover .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-state-focus a { text-decoration: none; @@ -970,7 +970,7 @@ a:visited.ui-button { text-decoration: none; } .ui-state-focus .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-visual-focus { box-shadow: 0 0 3px 1px #5e9ed6; @@ -988,19 +988,19 @@ a:visited.ui-button { text-decoration: none; } .ui-state-active .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-icon-background { background-color: #EA7D1E; } .ui-state-highlight .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_1c94c4_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_1c94c4_256x240.png?v=1605690930"); } .ui-state-error .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffd27a_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffd27a_256x240.png?v=1605690930"); } .ui-state-error-text .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffd27a_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffd27a_256x240.png?v=1605690930"); } .ui-priority-primary { font-weight: bold; @@ -1655,7 +1655,7 @@ a:visited.ui-button { visibility: hidden; } #ibo-main-content .edit-image .view-image.dirty.compat, .ui-dialog .edit-image .view-image.dirty.compat { - background-image: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605690930"); } #ibo-main-content .edit-image .view-image.dirty.compat img, .ui-dialog .edit-image .view-image.dirty.compat img { opacity: 0.3; @@ -1678,7 +1678,7 @@ a:visited.ui-button { opacity: 0.3; } #ibo-main-content .edit-image .edit-buttons .button .ui-icon, .ui-dialog .edit-image .edit-buttons .button .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605690930"); } #ibo-main-content .edit-image .file-input, .ui-dialog .edit-image .file-input { display: block; @@ -1703,19 +1703,6 @@ a:visited.ui-button { height: 100%; vertical-align: middle; } -#ibo-main-content table.listContainer, .ui-dialog table.listContainer { - border: 0; - padding: 0; - margin: 0; - width: 100%; - clear: both; -} -#ibo-main-content tr.containerHeader, .ui-dialog tr.containerHeader, #ibo-main-content tr.containerHeader td, .ui-dialog tr.containerHeader td { - background: transparent; -} -#ibo-main-content tr.even td, .ui-dialog tr.even td, #ibo-main-content .wizContainer tr.even td, .ui-dialog .wizContainer tr.even td { - background-color: #F1F1F1; -} #ibo-main-content tr.red_even td, .ui-dialog tr.red_even td, #ibo-main-content .wizContainer tr.red_even td, .ui-dialog .wizContainer tr.red_even td { background-color: #f97e75; color: #FFFFFF; @@ -1891,7 +1878,7 @@ a:visited.ui-button { background: #EA7D1E; } #ibo-main-content .actions_details span, .ui-dialog .actions_details span { - background: url("../../../../images/actions_right.png?v=1605536038") no-repeat right; + background: url("../../../../images/actions_right.png?v=1605690930") no-repeat right; color: #fff; font-weight: bold; padding-top: 2px; @@ -1914,7 +1901,7 @@ a:visited.ui-button { } #ibo-main-content .ac_input, .ui-dialog .ac_input { border: 1px solid #7f9db9; - background: #fff url("../../../../images/ac-background.gif?v=1605536038") no-repeat right; + background: #fff url("../../../../images/ac-background.gif?v=1605690930") no-repeat right; /* By Rom */ } #ibo-main-content .csvimport_createobj, .ui-dialog .csvimport_createobj { @@ -1969,7 +1956,7 @@ a:visited.ui-button { noborder-top: 1px solid #8b8b8b; padding: 4px 0px 0px 16px; font-size: 8pt; - background: url("../../../../images/green-square.gif?v=1605536038") no-repeat bottom left; + background: url("../../../../images/green-square.gif?v=1605690930") no-repeat bottom left; color: #83b217; font-weight: bold; text-decoration: none; @@ -2045,22 +2032,22 @@ a:visited.ui-button { margin-top: -8px; } #ibo-main-content .notreeview li, .ui-dialog .notreeview li { - background: url("../../../../images/tv-item.gif?v=1605536038") 0 0 no-repeat; + background: url("../../../../images/tv-item.gif?v=1605690930") 0 0 no-repeat; } #ibo-main-content .notreeview .collapsable, .ui-dialog .notreeview .collapsable { - background-image: url("../../../../images/tv-collapsable.gif?v=1605536038"); + background-image: url("../../../../images/tv-collapsable.gif?v=1605690930"); } #ibo-main-content .notreeview .expandable, .ui-dialog .notreeview .expandable { - background-image: url("../../../../images/tv-expandable.gif?v=1605536038"); + background-image: url("../../../../images/tv-expandable.gif?v=1605690930"); } #ibo-main-content .notreeview .last, .ui-dialog .notreeview .last { - background-image: url("../../../../images/tv-item-last.gif?v=1605536038"); + background-image: url("../../../../images/tv-item-last.gif?v=1605690930"); } #ibo-main-content .notreeview .lastCollapsable, .ui-dialog .notreeview .lastCollapsable { - background-image: url("../../../../images/tv-collapsable-last.gif?v=1605536038"); + background-image: url("../../../../images/tv-collapsable-last.gif?v=1605690930"); } #ibo-main-content .notreeview .lastExpandable, .ui-dialog .notreeview .lastExpandable { - background-image: url("../../../../images/tv-expandable-last.gif?v=1605536038"); + background-image: url("../../../../images/tv-expandable-last.gif?v=1605690930"); } #ibo-main-content #OrganizationSelection, .ui-dialog #OrganizationSelection { padding: 5px 0px 16px 20px; @@ -2236,7 +2223,7 @@ a:visited.ui-button { color: #000; } #ibo-main-content th.red, .ui-dialog th.red { - background: url("../../../../images/red-header.gif?v=1605536038") bottom left repeat-x; + background: url("../../../../images/red-header.gif?v=1605690930") bottom left repeat-x; color: #000; } #ibo-main-content .green, .ui-dialog .green { @@ -2244,7 +2231,7 @@ a:visited.ui-button { color: #000; } #ibo-main-content th.green, .ui-dialog th.green { - background: url("../../../../images/green-header.gif?v=1605536038") bottom left repeat-x; + background: url("../../../../images/green-header.gif?v=1605690930") bottom left repeat-x; color: #000; } #ibo-main-content .orange, .ui-dialog .orange { @@ -2252,7 +2239,7 @@ a:visited.ui-button { color: #000; } #ibo-main-content th.orange, .ui-dialog th.orange { - background: url("../../../../images/orange-header.gif?v=1605536038") bottom left repeat-x; + background: url("../../../../images/orange-header.gif?v=1605690930") bottom left repeat-x; color: #000; /* For Date Picker: Creates a little calendar icon * instead of a text link for "Choose date" @@ -2267,7 +2254,7 @@ a:visited.ui-button { display: block; text-indent: -2000px; overflow: hidden; - background: url("../../../../images/calendar.png?v=1605536038") no-repeat; + background: url("../../../../images/calendar.png?v=1605690930") no-repeat; } #ibo-main-content td a.dp-choose-date.dp-disabled, .ui-dialog td a.dp-choose-date.dp-disabled, #ibo-main-content a.dp-choose-date.dp-disabled, .ui-dialog a.dp-choose-date.dp-disabled { background-position: 0 -20px; @@ -2927,19 +2914,19 @@ a:visited.ui-button { /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */ } #ibo-main-content table.listResults tr.odd td.truncated, .ui-dialog table.listResults tr.odd td.truncated, #ibo-main-content table.listResults tr td.truncated, .ui-dialog table.listResults tr td.truncated, #ibo-main-content .wizContainer table.listResults tr.odd td.truncated, .ui-dialog .wizContainer table.listResults tr.odd td.truncated, #ibo-main-content .wizContainer table.listResults tr td.truncated, .ui-dialog .wizContainer table.listResults tr td.truncated { - background: url("../../../../images/truncated.png?v=1605536038") bottom repeat-x; + background: url("../../../../images/truncated.png?v=1605690930") bottom repeat-x; /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */ } #ibo-main-content table.listResults tr.even td.truncated, .ui-dialog table.listResults tr.even td.truncated, #ibo-main-content .wizContainer table.listResults tr.even td.truncated, .ui-dialog .wizContainer table.listResults tr.even td.truncated { - background: #f9f9f1 url("../../../../images/truncated.png?v=1605536038") bottom repeat-x; + background: #f9f9f1 url("../../../../images/truncated.png?v=1605690930") bottom repeat-x; /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */ } #ibo-main-content table.listResults tr.even td.hover.truncated, .ui-dialog table.listResults tr.even td.hover.truncated, #ibo-main-content .wizContainer table.listResults tr.even td.hover.truncated, .ui-dialog .wizContainer table.listResults tr.even td.hover.truncated { - background: #fdf5d0 url("../../../../images/truncated.png?v=1605536038") bottom repeat-x; + background: #fdf5d0 url("../../../../images/truncated.png?v=1605690930") bottom repeat-x; /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */ } #ibo-main-content table.listResults tr.odd td.hover.truncated, .ui-dialog table.listResults tr.odd td.hover.truncated, #ibo-main-content table.listResults tr td.hover.truncated, .ui-dialog table.listResults tr td.hover.truncated, #ibo-main-content .wizContainer table.listResults tr.odd td.hover.truncated, .ui-dialog .wizContainer table.listResults tr.odd td.hover.truncated, #ibo-main-content .wizContainer table.listResults tr td.hover.truncated, .ui-dialog .wizContainer table.listResults tr td.hover.truncated { - background: #fdf5d0 url("../../../../images/truncated.png?v=1605536038") bottom repeat-x; + background: #fdf5d0 url("../../../../images/truncated.png?v=1605690930") bottom repeat-x; } #ibo-main-content table.listResults.truncated, .ui-dialog table.listResults.truncated { border-bottom: 0; @@ -3041,7 +3028,7 @@ a:visited.ui-button { #ibo-main-content div#logo div, .ui-dialog div#logo div { height: 88px; width: 244px; - background: url("../../../../images/itop-logo-2.png?v=1605536038") left no-repeat; + background: url("../../../../images/itop-logo-2.png?v=1605690930") left no-repeat; } #ibo-main-content #left-pane .ui-layout-north, .ui-dialog #left-pane .ui-layout-north { overflow: hidden; @@ -3190,7 +3177,7 @@ a:visited.ui-button { margin: 0 2px; } #ibo-main-content .ui-layout-button-pin-down, .ui-dialog .ui-layout-button-pin-down { - background: url("../../../../images/splitter-bkg.png?v=1605536038") transparent; + background: url("../../../../images/splitter-bkg.png?v=1605690930") transparent; width: 16px; background-position: -144px -144px; } @@ -3327,13 +3314,13 @@ a:visited.ui-button { #ibo-main-content .caselog_header, .ui-dialog .caselog_header { padding: 3px; border-top: 1px solid #fff; - background: #ddd url("../../../../images/plus.gif?v=1605536038") left no-repeat; + background: #ddd url("../../../../images/plus.gif?v=1605690930") left no-repeat; padding-left: 16px; cursor: pointer; width: 100%; } #ibo-main-content .caselog_header.open, .ui-dialog .caselog_header.open { - background: #ddd url("../../../../images/minus.gif?v=1605536038") left no-repeat; + background: #ddd url("../../../../images/minus.gif?v=1605690930") left no-repeat; } #ibo-main-content .caselog_entry, .ui-dialog .caselog_entry, #ibo-main-content .caselog_entry_html, .ui-dialog .caselog_entry_html { overflow-x: auto; @@ -3509,7 +3496,7 @@ a:visited.ui-button { height: 15px; border: 1px #A6A6A6 solid; cursor: pointer; - background-image: url("../../../../images/full-screen.png?v=1605536038"); + background-image: url("../../../../images/full-screen.png?v=1605690930"); background-repeat: no-repeat; background-position: center center; background-size: 98%; @@ -3556,7 +3543,7 @@ a:visited.ui-button { padding: 2px; } #ibo-main-content .field_container > div > div.field_value .attribute-edit .field_input_zone.field_input_document .button .ui-icon, .ui-dialog .field_container > div > div.field_value .attribute-edit .field_input_zone.field_input_document .button .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605690930"); background-color: #EA7D1E; } #ibo-main-content .field_container > div > div.field_value .attribute-edit .field_input_zone.field_input_image input, .ui-dialog .field_container > div > div.field_value .attribute-edit .field_input_zone.field_input_image input { @@ -3622,7 +3609,7 @@ a:visited.ui-button { height: 15px; border: 1px #A6A6A6 solid; cursor: pointer; - background-image: url("../../../../images/full-screen.png?v=1605536038"); + background-image: url("../../../../images/full-screen.png?v=1605690930"); background-repeat: no-repeat; background-position: center center; background-size: 98%; @@ -3687,7 +3674,7 @@ a:visited.ui-button { padding-left: 0.4em; } #ibo-main-content .ac_dlg_loading, .ui-dialog .ac_dlg_loading { - background: white url("../../../../images/indicator.gif?v=1605536038") right center no-repeat; + background: white url("../../../../images/indicator.gif?v=1605690930") right center no-repeat; } #ibo-main-content table.pagination, .ui-dialog table.pagination { display: inline-block; @@ -3754,10 +3741,10 @@ a:visited.ui-button { cursor: not-allowed; } #ibo-main-content .dragHover, .ui-dialog .dragHover { - background: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605536038"); + background: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605690930"); } #ibo-main-content .edit_mode .dashlet, .ui-dialog .edit_mode .dashlet { - background: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605536038"); + background: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605690930"); padding: 5px; margin: 0; position: relative; @@ -3802,7 +3789,7 @@ a:visited.ui-button { top: 0; right: 0; z-index: 10; - background: transparent url("../../../../images/delete.png?v=1605536038") no-repeat center; + background: transparent url("../../../../images/delete.png?v=1605690930") no-repeat center; } #ibo-main-content td.prop_value, .ui-dialog td.prop_value { text-align: left; @@ -4031,23 +4018,23 @@ a:visited.ui-button { } #ibo-main-content .message_info, .ui-dialog .message_info { border: 1px solid #993; - background: url("../../../../images/info-mini.png?v=1605536038") 1em 1em no-repeat #ffc; + background: url("../../../../images/info-mini.png?v=1605690930") 1em 1em no-repeat #ffc; padding-left: 3em; } #ibo-main-content .message_ok, .ui-dialog .message_ok { border: 1px solid #393; - background: url("../../../../images/ok.png?v=1605536038") 1em 1em no-repeat #cfc; + background: url("../../../../images/ok.png?v=1605690930") 1em 1em no-repeat #cfc; padding-left: 3em; } #ibo-main-content .message_warning, .ui-dialog .message_warning { border: 1px solid #ec9800; - background: url("../../../../images/error.png?v=1605536038") 1em 1em no-repeat #ffd78d; + background: url("../../../../images/error.png?v=1605690930") 1em 1em no-repeat #ffd78d; color: #000; padding-left: 3em; } #ibo-main-content .message_error, .ui-dialog .message_error { border: 1px solid #933; - background: url("../../../../images/error.png?v=1605536038") 1em 1em no-repeat #fcc; + background: url("../../../../images/error.png?v=1605690930") 1em 1em no-repeat #fcc; padding-left: 3em; } #ibo-main-content .fg-menu a img, .ui-dialog .fg-menu a img { @@ -4178,18 +4165,18 @@ a:visited.ui-button { } #ibo-main-content #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter span, .ui-dialog #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter span { padding-left: 20px; - background: url("../../../../images/eye-open-555.png?v=1605536038") 2px center no-repeat; + background: url("../../../../images/eye-open-555.png?v=1605690930") 2px center no-repeat; } #ibo-main-content #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter.strikethrough span, .ui-dialog #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter.strikethrough span { text-decoration: line-through; - background: url("../../../../images/eye-closed-555.png?v=1605536038") 2px center no-repeat; + background: url("../../../../images/eye-closed-555.png?v=1605690930") 2px center no-repeat; } #ibo-main-content .printable-version legend, .ui-dialog .printable-version legend { padding-left: 26px; - background: #1c94c4 url("../../../../images/eye-open-fff.png?v=1605536038") 8px center no-repeat; + background: #1c94c4 url("../../../../images/eye-open-fff.png?v=1605690930") 8px center no-repeat; } #ibo-main-content .printable-version .strikethrough legend, .ui-dialog .printable-version .strikethrough legend { - background: #1c94c4 url("../../../../images/eye-closed-fff.png?v=1605536038") 8px center no-repeat; + background: #1c94c4 url("../../../../images/eye-closed-fff.png?v=1605690930") 8px center no-repeat; } #ibo-main-content .printable-version fieldset.strikethrough span, .ui-dialog .printable-version fieldset.strikethrough span { display: none; @@ -4262,7 +4249,7 @@ a:visited.ui-button { cursor: pointer; width: 16px; height: 16px; - background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605690930"); background-position: -16px -192px; } #ibo-main-content .history_entry_truncated .history_truncated_toggler, .ui-dialog .history_entry_truncated .history_truncated_toggler { @@ -4347,7 +4334,7 @@ a:visited.ui-button { #ibo-main-content #itop-breadcrumb .breadcrumb-item a::after, .ui-dialog #itop-breadcrumb .breadcrumb-item a::after { content: ''; position: absolute; - background-image: url("../../../../images/breadcrumb-separator.png?v=1605536038"); + background-image: url("../../../../images/breadcrumb-separator.png?v=1605690930"); background-repeat: no-repeat; width: 8px; height: 16px; diff --git a/datamodels/2.x/itop-structure/precompiled-themes/test-red/main.css b/datamodels/2.x/itop-structure/precompiled-themes/test-red/main.css index 4cec20acff..1e031ad434 100644 --- a/datamodels/2.x/itop-structure/precompiled-themes/test-red/main.css +++ b/datamodels/2.x/itop-structure/precompiled-themes/test-red/main.css @@ -1,6 +1,6 @@ /* === SIGNATURE BEGIN === -{"variables":"8cfe86f2c55d8eff36d57eb4e83d89f1","stylesheets":{"css-variables":"732f501302c538f594fb3c668d85b46c","jqueryui":"a887ad1c00f29132beba3bf729b981c7","main":"d5d2002c5bcf8fcf592d8e028bbed2fb","environment-banner":"3de3ffb8232b9a649e912b570a64bf5d"},"imports":[],"images":{"css\/ui-lightness\/images\/ui-icons_222222_256x240.png":"3a3c5468f484f07ac4a320d9e22acb8c","css\/ui-lightness\/images\/ui-bg_diagonals-thick_20_666666_40x40.png":"4429d568c67d8dfeb9040273ea0fb8c4","css\/ui-lightness\/images\/ui-icons_E87C1E_256x240.png":"7003dd36cb2aa032c8ec871ce4d4e03d","css\/ui-lightness\/images\/ui-icons_1c94c4_256x240.png":"dbd693dc8e0ef04e90a2f7ac7b390086","css\/ui-lightness\/images\/ui-icons_F26522_256x240.png":"16278ec0c07270be571f4c2e97fcc10c","css\/ui-lightness\/images\/ui-bg_diagonals-thick_18_b81900_40x40.png":"e460a66d4b3e093fc651e62a236267cb","css\/ui-lightness\/images\/ui-icons_ffffff_256x240.png":"41612b0f4a034424f8321c9f824a94da","css\/ui-lightness\/images\/ui-icons_ffd27a_256x240.png":"dda1b6f694b0d196aefc66a1d6d758f6","images\/actions_right.png":"31c8906bd25d27b83a0a2466bf903462","images\/ac-background.gif":"76135f3697b41a15aed787cfd77776c7","images\/green-square.gif":"16ea9a497d72f5e66e4e8ea9ae08024e","images\/tv-item.gif":"719fe2d4566108e73162fb8868d3778c","images\/tv-collapsable.gif":"63a3351ea0d580797c9b8c386aa4f48b","images\/tv-expandable.gif":"a2d1af4128e4a798a7f3390b12a28574","images\/tv-item-last.gif":"2ae7e1d9972ce71e5caa65a086bc5b7e","images\/tv-collapsable-last.gif":"71acaa9d7c2616e9e8b7131a75ca65da","images\/tv-expandable-last.gif":"9d51036b3a8102742709da66789fd0f7","images\/red-header.gif":"c73b8765f0c8c3c183cb6a0c2bb0ec69","images\/green-header.gif":"0e22a09bb8051b2a274b3427ede62e82","images\/orange-header.gif":"ce1f93f0af64431771b4cbd6c99c567b","images\/calendar.png":"ab56e59af3c96ca661821257d376465e","images\/truncated.png":"c6f91108afe8159d417b4dc556cd3b2a","images\/plus.gif":"f00e1e6e1161f48608bb2bbc79b9948c","images\/minus.gif":"6d77c0c0c2f86b6995d1cdf78274eaab","images\/full-screen.png":"b541fadd3f1563856a4b44aeebd9d563","images\/indicator.gif":"03ce3dcc84af110e9da8699a841e5200","images\/delete.png":"93c047549c31a270a037840277cf59d3","images\/info-mini.png":"445c090ed777c5e6a08ac390fa896193","images\/ok.png":"f6973773335fd83d8d2875f9a3c925af","images\/error.png":"1af8a1041016f67669c5fd22dc88c82e","images\/eye-open-555.png":"9940f4e5b1248042c238e1924359fd5e","images\/eye-closed-555.png":"6ad3b0bae791bf61addc9d8ca80a642d","images\/eye-open-fff.png":"b7db2402d4d5c72314c25790a66150d4","images\/eye-closed-fff.png":"f9be7454dbb47b0e0bca3aa370ae7db5"}} +{"variables":"8cfe86f2c55d8eff36d57eb4e83d89f1","stylesheets":{"css-variables":"732f501302c538f594fb3c668d85b46c","jqueryui":"a887ad1c00f29132beba3bf729b981c7","main":"f9306ee6361fd028de957d86b4c8f561","environment-banner":"3de3ffb8232b9a649e912b570a64bf5d"},"imports":[],"images":{"css\/ui-lightness\/images\/ui-icons_222222_256x240.png":"3a3c5468f484f07ac4a320d9e22acb8c","css\/ui-lightness\/images\/ui-bg_diagonals-thick_20_666666_40x40.png":"4429d568c67d8dfeb9040273ea0fb8c4","css\/ui-lightness\/images\/ui-icons_E87C1E_256x240.png":"7003dd36cb2aa032c8ec871ce4d4e03d","css\/ui-lightness\/images\/ui-icons_1c94c4_256x240.png":"dbd693dc8e0ef04e90a2f7ac7b390086","css\/ui-lightness\/images\/ui-icons_F26522_256x240.png":"16278ec0c07270be571f4c2e97fcc10c","css\/ui-lightness\/images\/ui-bg_diagonals-thick_18_b81900_40x40.png":"e460a66d4b3e093fc651e62a236267cb","css\/ui-lightness\/images\/ui-icons_ffffff_256x240.png":"41612b0f4a034424f8321c9f824a94da","css\/ui-lightness\/images\/ui-icons_ffd27a_256x240.png":"dda1b6f694b0d196aefc66a1d6d758f6","images\/actions_right.png":"31c8906bd25d27b83a0a2466bf903462","images\/ac-background.gif":"76135f3697b41a15aed787cfd77776c7","images\/green-square.gif":"16ea9a497d72f5e66e4e8ea9ae08024e","images\/tv-item.gif":"719fe2d4566108e73162fb8868d3778c","images\/tv-collapsable.gif":"63a3351ea0d580797c9b8c386aa4f48b","images\/tv-expandable.gif":"a2d1af4128e4a798a7f3390b12a28574","images\/tv-item-last.gif":"2ae7e1d9972ce71e5caa65a086bc5b7e","images\/tv-collapsable-last.gif":"71acaa9d7c2616e9e8b7131a75ca65da","images\/tv-expandable-last.gif":"9d51036b3a8102742709da66789fd0f7","images\/red-header.gif":"c73b8765f0c8c3c183cb6a0c2bb0ec69","images\/green-header.gif":"0e22a09bb8051b2a274b3427ede62e82","images\/orange-header.gif":"ce1f93f0af64431771b4cbd6c99c567b","images\/calendar.png":"ab56e59af3c96ca661821257d376465e","images\/truncated.png":"c6f91108afe8159d417b4dc556cd3b2a","images\/plus.gif":"f00e1e6e1161f48608bb2bbc79b9948c","images\/minus.gif":"6d77c0c0c2f86b6995d1cdf78274eaab","images\/full-screen.png":"b541fadd3f1563856a4b44aeebd9d563","images\/indicator.gif":"03ce3dcc84af110e9da8699a841e5200","images\/delete.png":"93c047549c31a270a037840277cf59d3","images\/info-mini.png":"445c090ed777c5e6a08ac390fa896193","images\/ok.png":"f6973773335fd83d8d2875f9a3c925af","images\/error.png":"1af8a1041016f67669c5fd22dc88c82e","images\/eye-open-555.png":"9940f4e5b1248042c238e1924359fd5e","images\/eye-closed-555.png":"6ad3b0bae791bf61addc9d8ca80a642d","images\/eye-open-fff.png":"b7db2402d4d5c72314c25790a66150d4","images\/eye-closed-fff.png":"f9be7454dbb47b0e0bca3aa370ae7db5"}} === SIGNATURE END === */ /*! @@ -99,7 +99,7 @@ background-repeat: no-repeat; width: 16px; height: 16px; - background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605690930"); filter: hue-rotate(0deg); } .ui-widget-icon-block { @@ -232,7 +232,7 @@ .ui-menu .ui-menu-item { margin: 0; cursor: pointer; - list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7?v=1605536038"); + list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7?v=1605690930"); } .ui-menu .ui-menu-item-wrapper { position: relative; @@ -298,7 +298,7 @@ color: #EA7D1E; } .ui-button:hover .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-button:active { text-decoration: none; @@ -306,20 +306,20 @@ color: #EA7D1E; } .ui-button:active .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-button:focus { font-weight: bold; color: #EA7D1E; } .ui-button:focus .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-button .ui-state-highlight.ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_1c94c4_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_1c94c4_256x240.png?v=1605690930"); } .ui-button .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_F26522_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_F26522_256x240.png?v=1605690930"); } .ui-button-icon-only { width: 2em; @@ -901,7 +901,7 @@ body .ui-tooltip { background-image: none; } .ui-widget-content .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605690930"); } .ui-widget-header .ui-priority-secondary { opacity: 0.7; @@ -913,7 +913,7 @@ body .ui-tooltip { background-image: none; } .ui-widget-header .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605690930"); } .ui-state-default a { text-decoration: none; @@ -925,7 +925,7 @@ body .ui-tooltip { text-decoration: none; } .ui-state-default .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_F26522_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_F26522_256x240.png?v=1605690930"); } a.ui-button { text-decoration: none; @@ -955,7 +955,7 @@ a:visited.ui-button { text-decoration: none; } .ui-state-hover .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-state-focus a { text-decoration: none; @@ -970,7 +970,7 @@ a:visited.ui-button { text-decoration: none; } .ui-state-focus .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-visual-focus { box-shadow: 0 0 3px 1px #5e9ed6; @@ -988,19 +988,19 @@ a:visited.ui-button { text-decoration: none; } .ui-state-active .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_E87C1E_256x240.png?v=1605690930"); } .ui-icon-background { background-color: #EA7D1E; } .ui-state-highlight .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_1c94c4_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_1c94c4_256x240.png?v=1605690930"); } .ui-state-error .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffd27a_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffd27a_256x240.png?v=1605690930"); } .ui-state-error-text .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffd27a_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffd27a_256x240.png?v=1605690930"); } .ui-priority-primary { font-weight: bold; @@ -1655,7 +1655,7 @@ a:visited.ui-button { visibility: hidden; } #ibo-main-content .edit-image .view-image.dirty.compat, .ui-dialog .edit-image .view-image.dirty.compat { - background-image: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605690930"); } #ibo-main-content .edit-image .view-image.dirty.compat img, .ui-dialog .edit-image .view-image.dirty.compat img { opacity: 0.3; @@ -1678,7 +1678,7 @@ a:visited.ui-button { opacity: 0.3; } #ibo-main-content .edit-image .edit-buttons .button .ui-icon, .ui-dialog .edit-image .edit-buttons .button .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605690930"); } #ibo-main-content .edit-image .file-input, .ui-dialog .edit-image .file-input { display: block; @@ -1703,19 +1703,6 @@ a:visited.ui-button { height: 100%; vertical-align: middle; } -#ibo-main-content table.listContainer, .ui-dialog table.listContainer { - border: 0; - padding: 0; - margin: 0; - width: 100%; - clear: both; -} -#ibo-main-content tr.containerHeader, .ui-dialog tr.containerHeader, #ibo-main-content tr.containerHeader td, .ui-dialog tr.containerHeader td { - background: transparent; -} -#ibo-main-content tr.even td, .ui-dialog tr.even td, #ibo-main-content .wizContainer tr.even td, .ui-dialog .wizContainer tr.even td { - background-color: #F1F1F1; -} #ibo-main-content tr.red_even td, .ui-dialog tr.red_even td, #ibo-main-content .wizContainer tr.red_even td, .ui-dialog .wizContainer tr.red_even td { background-color: #f97e75; color: #FFFFFF; @@ -1891,7 +1878,7 @@ a:visited.ui-button { background: #EA7D1E; } #ibo-main-content .actions_details span, .ui-dialog .actions_details span { - background: url("../../../../images/actions_right.png?v=1605536038") no-repeat right; + background: url("../../../../images/actions_right.png?v=1605690930") no-repeat right; color: #fff; font-weight: bold; padding-top: 2px; @@ -1914,7 +1901,7 @@ a:visited.ui-button { } #ibo-main-content .ac_input, .ui-dialog .ac_input { border: 1px solid #7f9db9; - background: #fff url("../../../../images/ac-background.gif?v=1605536038") no-repeat right; + background: #fff url("../../../../images/ac-background.gif?v=1605690930") no-repeat right; /* By Rom */ } #ibo-main-content .csvimport_createobj, .ui-dialog .csvimport_createobj { @@ -1969,7 +1956,7 @@ a:visited.ui-button { noborder-top: 1px solid #8b8b8b; padding: 4px 0px 0px 16px; font-size: 8pt; - background: url("../../../../images/green-square.gif?v=1605536038") no-repeat bottom left; + background: url("../../../../images/green-square.gif?v=1605690930") no-repeat bottom left; color: #83b217; font-weight: bold; text-decoration: none; @@ -2045,22 +2032,22 @@ a:visited.ui-button { margin-top: -8px; } #ibo-main-content .notreeview li, .ui-dialog .notreeview li { - background: url("../../../../images/tv-item.gif?v=1605536038") 0 0 no-repeat; + background: url("../../../../images/tv-item.gif?v=1605690930") 0 0 no-repeat; } #ibo-main-content .notreeview .collapsable, .ui-dialog .notreeview .collapsable { - background-image: url("../../../../images/tv-collapsable.gif?v=1605536038"); + background-image: url("../../../../images/tv-collapsable.gif?v=1605690930"); } #ibo-main-content .notreeview .expandable, .ui-dialog .notreeview .expandable { - background-image: url("../../../../images/tv-expandable.gif?v=1605536038"); + background-image: url("../../../../images/tv-expandable.gif?v=1605690930"); } #ibo-main-content .notreeview .last, .ui-dialog .notreeview .last { - background-image: url("../../../../images/tv-item-last.gif?v=1605536038"); + background-image: url("../../../../images/tv-item-last.gif?v=1605690930"); } #ibo-main-content .notreeview .lastCollapsable, .ui-dialog .notreeview .lastCollapsable { - background-image: url("../../../../images/tv-collapsable-last.gif?v=1605536038"); + background-image: url("../../../../images/tv-collapsable-last.gif?v=1605690930"); } #ibo-main-content .notreeview .lastExpandable, .ui-dialog .notreeview .lastExpandable { - background-image: url("../../../../images/tv-expandable-last.gif?v=1605536038"); + background-image: url("../../../../images/tv-expandable-last.gif?v=1605690930"); } #ibo-main-content #OrganizationSelection, .ui-dialog #OrganizationSelection { padding: 5px 0px 16px 20px; @@ -2236,7 +2223,7 @@ a:visited.ui-button { color: #000; } #ibo-main-content th.red, .ui-dialog th.red { - background: url("../../../../images/red-header.gif?v=1605536038") bottom left repeat-x; + background: url("../../../../images/red-header.gif?v=1605690930") bottom left repeat-x; color: #000; } #ibo-main-content .green, .ui-dialog .green { @@ -2244,7 +2231,7 @@ a:visited.ui-button { color: #000; } #ibo-main-content th.green, .ui-dialog th.green { - background: url("../../../../images/green-header.gif?v=1605536038") bottom left repeat-x; + background: url("../../../../images/green-header.gif?v=1605690930") bottom left repeat-x; color: #000; } #ibo-main-content .orange, .ui-dialog .orange { @@ -2252,7 +2239,7 @@ a:visited.ui-button { color: #000; } #ibo-main-content th.orange, .ui-dialog th.orange { - background: url("../../../../images/orange-header.gif?v=1605536038") bottom left repeat-x; + background: url("../../../../images/orange-header.gif?v=1605690930") bottom left repeat-x; color: #000; /* For Date Picker: Creates a little calendar icon * instead of a text link for "Choose date" @@ -2267,7 +2254,7 @@ a:visited.ui-button { display: block; text-indent: -2000px; overflow: hidden; - background: url("../../../../images/calendar.png?v=1605536038") no-repeat; + background: url("../../../../images/calendar.png?v=1605690930") no-repeat; } #ibo-main-content td a.dp-choose-date.dp-disabled, .ui-dialog td a.dp-choose-date.dp-disabled, #ibo-main-content a.dp-choose-date.dp-disabled, .ui-dialog a.dp-choose-date.dp-disabled { background-position: 0 -20px; @@ -2927,19 +2914,19 @@ a:visited.ui-button { /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */ } #ibo-main-content table.listResults tr.odd td.truncated, .ui-dialog table.listResults tr.odd td.truncated, #ibo-main-content table.listResults tr td.truncated, .ui-dialog table.listResults tr td.truncated, #ibo-main-content .wizContainer table.listResults tr.odd td.truncated, .ui-dialog .wizContainer table.listResults tr.odd td.truncated, #ibo-main-content .wizContainer table.listResults tr td.truncated, .ui-dialog .wizContainer table.listResults tr td.truncated { - background: url("../../../../images/truncated.png?v=1605536038") bottom repeat-x; + background: url("../../../../images/truncated.png?v=1605690930") bottom repeat-x; /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */ } #ibo-main-content table.listResults tr.even td.truncated, .ui-dialog table.listResults tr.even td.truncated, #ibo-main-content .wizContainer table.listResults tr.even td.truncated, .ui-dialog .wizContainer table.listResults tr.even td.truncated { - background: #f9f9f1 url("../../../../images/truncated.png?v=1605536038") bottom repeat-x; + background: #f9f9f1 url("../../../../images/truncated.png?v=1605690930") bottom repeat-x; /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */ } #ibo-main-content table.listResults tr.even td.hover.truncated, .ui-dialog table.listResults tr.even td.hover.truncated, #ibo-main-content .wizContainer table.listResults tr.even td.hover.truncated, .ui-dialog .wizContainer table.listResults tr.even td.hover.truncated { - background: #fdf5d0 url("../../../../images/truncated.png?v=1605536038") bottom repeat-x; + background: #fdf5d0 url("../../../../images/truncated.png?v=1605690930") bottom repeat-x; /* Beware: IE6 does not support multiple selector with multiple classes, only the last class is used */ } #ibo-main-content table.listResults tr.odd td.hover.truncated, .ui-dialog table.listResults tr.odd td.hover.truncated, #ibo-main-content table.listResults tr td.hover.truncated, .ui-dialog table.listResults tr td.hover.truncated, #ibo-main-content .wizContainer table.listResults tr.odd td.hover.truncated, .ui-dialog .wizContainer table.listResults tr.odd td.hover.truncated, #ibo-main-content .wizContainer table.listResults tr td.hover.truncated, .ui-dialog .wizContainer table.listResults tr td.hover.truncated { - background: #fdf5d0 url("../../../../images/truncated.png?v=1605536038") bottom repeat-x; + background: #fdf5d0 url("../../../../images/truncated.png?v=1605690930") bottom repeat-x; } #ibo-main-content table.listResults.truncated, .ui-dialog table.listResults.truncated { border-bottom: 0; @@ -3041,7 +3028,7 @@ a:visited.ui-button { #ibo-main-content div#logo div, .ui-dialog div#logo div { height: 88px; width: 244px; - background: url("../../../../images/itop-logo-2.png?v=1605536038") left no-repeat; + background: url("../../../../images/itop-logo-2.png?v=1605690930") left no-repeat; } #ibo-main-content #left-pane .ui-layout-north, .ui-dialog #left-pane .ui-layout-north { overflow: hidden; @@ -3190,7 +3177,7 @@ a:visited.ui-button { margin: 0 2px; } #ibo-main-content .ui-layout-button-pin-down, .ui-dialog .ui-layout-button-pin-down { - background: url("../../../../images/splitter-bkg.png?v=1605536038") transparent; + background: url("../../../../images/splitter-bkg.png?v=1605690930") transparent; width: 16px; background-position: -144px -144px; } @@ -3327,13 +3314,13 @@ a:visited.ui-button { #ibo-main-content .caselog_header, .ui-dialog .caselog_header { padding: 3px; border-top: 1px solid #fff; - background: #ddd url("../../../../images/plus.gif?v=1605536038") left no-repeat; + background: #ddd url("../../../../images/plus.gif?v=1605690930") left no-repeat; padding-left: 16px; cursor: pointer; width: 100%; } #ibo-main-content .caselog_header.open, .ui-dialog .caselog_header.open { - background: #ddd url("../../../../images/minus.gif?v=1605536038") left no-repeat; + background: #ddd url("../../../../images/minus.gif?v=1605690930") left no-repeat; } #ibo-main-content .caselog_entry, .ui-dialog .caselog_entry, #ibo-main-content .caselog_entry_html, .ui-dialog .caselog_entry_html { overflow-x: auto; @@ -3509,7 +3496,7 @@ a:visited.ui-button { height: 15px; border: 1px #A6A6A6 solid; cursor: pointer; - background-image: url("../../../../images/full-screen.png?v=1605536038"); + background-image: url("../../../../images/full-screen.png?v=1605690930"); background-repeat: no-repeat; background-position: center center; background-size: 98%; @@ -3556,7 +3543,7 @@ a:visited.ui-button { padding: 2px; } #ibo-main-content .field_container > div > div.field_value .attribute-edit .field_input_zone.field_input_document .button .ui-icon, .ui-dialog .field_container > div > div.field_value .attribute-edit .field_input_zone.field_input_document .button .ui-icon { - background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_ffffff_256x240.png?v=1605690930"); background-color: #EA7D1E; } #ibo-main-content .field_container > div > div.field_value .attribute-edit .field_input_zone.field_input_image input, .ui-dialog .field_container > div > div.field_value .attribute-edit .field_input_zone.field_input_image input { @@ -3622,7 +3609,7 @@ a:visited.ui-button { height: 15px; border: 1px #A6A6A6 solid; cursor: pointer; - background-image: url("../../../../images/full-screen.png?v=1605536038"); + background-image: url("../../../../images/full-screen.png?v=1605690930"); background-repeat: no-repeat; background-position: center center; background-size: 98%; @@ -3687,7 +3674,7 @@ a:visited.ui-button { padding-left: 0.4em; } #ibo-main-content .ac_dlg_loading, .ui-dialog .ac_dlg_loading { - background: white url("../../../../images/indicator.gif?v=1605536038") right center no-repeat; + background: white url("../../../../images/indicator.gif?v=1605690930") right center no-repeat; } #ibo-main-content table.pagination, .ui-dialog table.pagination { display: inline-block; @@ -3754,10 +3741,10 @@ a:visited.ui-button { cursor: not-allowed; } #ibo-main-content .dragHover, .ui-dialog .dragHover { - background: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605536038"); + background: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605690930"); } #ibo-main-content .edit_mode .dashlet, .ui-dialog .edit_mode .dashlet { - background: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605536038"); + background: url("../../../../css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png?v=1605690930"); padding: 5px; margin: 0; position: relative; @@ -3802,7 +3789,7 @@ a:visited.ui-button { top: 0; right: 0; z-index: 10; - background: transparent url("../../../../images/delete.png?v=1605536038") no-repeat center; + background: transparent url("../../../../images/delete.png?v=1605690930") no-repeat center; } #ibo-main-content td.prop_value, .ui-dialog td.prop_value { text-align: left; @@ -4031,23 +4018,23 @@ a:visited.ui-button { } #ibo-main-content .message_info, .ui-dialog .message_info { border: 1px solid #993; - background: url("../../../../images/info-mini.png?v=1605536038") 1em 1em no-repeat #ffc; + background: url("../../../../images/info-mini.png?v=1605690930") 1em 1em no-repeat #ffc; padding-left: 3em; } #ibo-main-content .message_ok, .ui-dialog .message_ok { border: 1px solid #393; - background: url("../../../../images/ok.png?v=1605536038") 1em 1em no-repeat #cfc; + background: url("../../../../images/ok.png?v=1605690930") 1em 1em no-repeat #cfc; padding-left: 3em; } #ibo-main-content .message_warning, .ui-dialog .message_warning { border: 1px solid #ec9800; - background: url("../../../../images/error.png?v=1605536038") 1em 1em no-repeat #ffd78d; + background: url("../../../../images/error.png?v=1605690930") 1em 1em no-repeat #ffd78d; color: #000; padding-left: 3em; } #ibo-main-content .message_error, .ui-dialog .message_error { border: 1px solid #933; - background: url("../../../../images/error.png?v=1605536038") 1em 1em no-repeat #fcc; + background: url("../../../../images/error.png?v=1605690930") 1em 1em no-repeat #fcc; padding-left: 3em; } #ibo-main-content .fg-menu a img, .ui-dialog .fg-menu a img { @@ -4178,18 +4165,18 @@ a:visited.ui-button { } #ibo-main-content #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter span, .ui-dialog #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter span { padding-left: 20px; - background: url("../../../../images/eye-open-555.png?v=1605536038") 2px center no-repeat; + background: url("../../../../images/eye-open-555.png?v=1605690930") 2px center no-repeat; } #ibo-main-content #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter.strikethrough span, .ui-dialog #hiddeable_chapters .ui-tabs .ui-tabs-nav li.hideable-chapter.strikethrough span { text-decoration: line-through; - background: url("../../../../images/eye-closed-555.png?v=1605536038") 2px center no-repeat; + background: url("../../../../images/eye-closed-555.png?v=1605690930") 2px center no-repeat; } #ibo-main-content .printable-version legend, .ui-dialog .printable-version legend { padding-left: 26px; - background: #1c94c4 url("../../../../images/eye-open-fff.png?v=1605536038") 8px center no-repeat; + background: #1c94c4 url("../../../../images/eye-open-fff.png?v=1605690930") 8px center no-repeat; } #ibo-main-content .printable-version .strikethrough legend, .ui-dialog .printable-version .strikethrough legend { - background: #1c94c4 url("../../../../images/eye-closed-fff.png?v=1605536038") 8px center no-repeat; + background: #1c94c4 url("../../../../images/eye-closed-fff.png?v=1605690930") 8px center no-repeat; } #ibo-main-content .printable-version fieldset.strikethrough span, .ui-dialog .printable-version fieldset.strikethrough span { display: none; @@ -4262,7 +4249,7 @@ a:visited.ui-button { cursor: pointer; width: 16px; height: 16px; - background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605536038"); + background-image: url("../../../../css/ui-lightness/images/ui-icons_222222_256x240.png?v=1605690930"); background-position: -16px -192px; } #ibo-main-content .history_entry_truncated .history_truncated_toggler, .ui-dialog .history_entry_truncated .history_truncated_toggler { @@ -4347,7 +4334,7 @@ a:visited.ui-button { #ibo-main-content #itop-breadcrumb .breadcrumb-item a::after, .ui-dialog #itop-breadcrumb .breadcrumb-item a::after { content: ''; position: absolute; - background-image: url("../../../../images/breadcrumb-separator.png?v=1605536038"); + background-image: url("../../../../images/breadcrumb-separator.png?v=1605690930"); background-repeat: no-repeat; width: 8px; height: 16px; diff --git a/sources/application/UI/Component/DataTable/DataTableFactory.php b/sources/application/UI/Component/DataTable/DataTableFactory.php index 8009ca187b..c4a730da0e 100644 --- a/sources/application/UI/Component/DataTable/DataTableFactory.php +++ b/sources/application/UI/Component/DataTable/DataTableFactory.php @@ -52,7 +52,7 @@ class DataTableFactory */ public static function MakeForResult(WebPage $oPage, string $sListId, CMDBObjectSet $oSet, $aExtraParams = array()) { - $oPanel = PanelFactory::MakeForClass($oSet->GetClass(), "Result"); + $oPanel = PanelFactory::MakeForClass($oSet->GetClass(), "Result")->AddCSSClasses('ibo-datatable-panel'); $oDataTable = DataTableFactory::MakeForRendering($sListId, $oSet, $aExtraParams); $oPanel->AddMainBlock($oDataTable);