Merge branch 'ent-13403-widget-block-histogram-fallos-configuracion' into 'develop'
Ent 13403 widget block histogram fallos configuracion See merge request artica/pandorafms!7197
This commit is contained in:
commit
958ad2b512
|
@ -774,6 +774,7 @@ function html_print_select(
|
||||||
$order=false,
|
$order=false,
|
||||||
$custom_id=null,
|
$custom_id=null,
|
||||||
$placeholder='',
|
$placeholder='',
|
||||||
|
$select2_container_class=false
|
||||||
) {
|
) {
|
||||||
$output = "\n";
|
$output = "\n";
|
||||||
|
|
||||||
|
@ -1190,6 +1191,12 @@ function html_print_select(
|
||||||
$output .= '</script>';
|
$output .= '</script>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($select2_container_class !== false) {
|
||||||
|
$output .= '<script>';
|
||||||
|
$output .= '$("#'.$id.'").data("select2").$container.addClass("'.$select2_container_class.'")';
|
||||||
|
$output .= '</script>';
|
||||||
|
}
|
||||||
|
|
||||||
if ($return) {
|
if ($return) {
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
@ -6616,7 +6623,12 @@ function html_print_input($data, $wrapper='div', $input_only=false)
|
||||||
false,
|
false,
|
||||||
true,
|
true,
|
||||||
true,
|
true,
|
||||||
true
|
true,
|
||||||
|
'',
|
||||||
|
false,
|
||||||
|
null,
|
||||||
|
'',
|
||||||
|
'select2-multiselect-widget-width select2-multiselect-text-wrap'
|
||||||
);
|
);
|
||||||
$output .= '</li>';
|
$output .= '</li>';
|
||||||
|
|
||||||
|
@ -6684,7 +6696,12 @@ function html_print_input($data, $wrapper='div', $input_only=false)
|
||||||
false,
|
false,
|
||||||
true,
|
true,
|
||||||
true,
|
true,
|
||||||
true
|
true,
|
||||||
|
'',
|
||||||
|
false,
|
||||||
|
null,
|
||||||
|
'',
|
||||||
|
'select2-multiselect-widget-width select2-multiselect-text-wrap'
|
||||||
);
|
);
|
||||||
$output .= '</li>';
|
$output .= '</li>';
|
||||||
|
|
||||||
|
|
|
@ -622,6 +622,7 @@ form.modal-dashboard
|
||||||
.select2-selection__choice {
|
.select2-selection__choice {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
height: 100% !important;
|
height: 100% !important;
|
||||||
|
box-sizing: border-box !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container-tabs {
|
.container-tabs {
|
||||||
|
@ -1004,3 +1005,15 @@ input.resize_button {
|
||||||
ul.select2-selection__rendered > li.select2-selection__choice {
|
ul.select2-selection__rendered > li.select2-selection__choice {
|
||||||
box-sizing: border-box !important;
|
box-sizing: border-box !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.select2-container.select2-container--default.select2-container--open,
|
||||||
|
.select2-container.select2-container--default.select2-container--open
|
||||||
|
.select2-dropdown {
|
||||||
|
box-sizing: border-box !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.select2-container.select2-container--default.select2-container--open
|
||||||
|
.select2-dropdown
|
||||||
|
.select2-results__option {
|
||||||
|
line-break: anywhere;
|
||||||
|
}
|
||||||
|
|
|
@ -14229,3 +14229,24 @@ button.ui-button-text-only.ui-widget.sub:hover,
|
||||||
div.tox .tox-editor-header {
|
div.tox .tox-editor-header {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.select2-multiselect-widget-width {
|
||||||
|
max-width: 230px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.select2-container--default.select2-multiselect-text-wrap
|
||||||
|
.select2-selection--multiple
|
||||||
|
.select2-selection__rendered {
|
||||||
|
box-sizing: border-box !important;
|
||||||
|
padding-right: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.select2-multiselect-text-wrap .select2-selection__choice {
|
||||||
|
text-wrap: wrap;
|
||||||
|
line-break: anywhere;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.select2-multiselect-text-wrap .select2-selection__choice__remove {
|
||||||
|
flex-basis: 0% !important;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue