mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Merge branch 'ent-11541-estilo-de-selector-de-modulos-en-modo-oscuro-es-ilegible' into 'develop'
Ent 11541 estilo de selector de modulos en modo oscuro es ilegible See merge request artica/pandorafms!6100
This commit is contained in:
commit
ee027c4562
@ -5616,6 +5616,9 @@ function ui_print_agent_autocomplete_input($parameters)
|
|||||||
if ($config['style'] === 'pandora_black' && !is_metaconsole()) {
|
if ($config['style'] === 'pandora_black' && !is_metaconsole()) {
|
||||||
$text_color = 'style="color: white"';
|
$text_color = 'style="color: white"';
|
||||||
$icon_agent = 'images/agent_mc.menu.png';
|
$icon_agent = 'images/agent_mc.menu.png';
|
||||||
|
$background_results = 'background: #111;';
|
||||||
|
} else {
|
||||||
|
$background_results = 'background: #a8e7eb;';
|
||||||
}
|
}
|
||||||
|
|
||||||
$icon_image = html_print_image($icon_agent, true, false, true);
|
$icon_image = html_print_image($icon_agent, true, false, true);
|
||||||
@ -6289,7 +6292,7 @@ function ui_print_agent_autocomplete_input($parameters)
|
|||||||
.appendTo(ul);
|
.appendTo(ul);
|
||||||
break;
|
break;
|
||||||
case \'alias\':
|
case \'alias\':
|
||||||
return $("<li style=\'background: #a8e7eb;\'></li>")
|
return $("<li style=\"'.$background_results.'\"></li>")
|
||||||
.data("item.autocomplete", item)
|
.data("item.autocomplete", item)
|
||||||
.append(text)
|
.append(text)
|
||||||
.appendTo(ul);
|
.appendTo(ul);
|
||||||
|
@ -39,7 +39,7 @@ select,
|
|||||||
.selection,
|
.selection,
|
||||||
button.sub,
|
button.sub,
|
||||||
.select2-container .select2-selection--single,
|
.select2-container .select2-selection--single,
|
||||||
.select2-container .select2-selection--multiple {
|
.select2-container {
|
||||||
background-color: #111 !important;
|
background-color: #111 !important;
|
||||||
color: #fff !important;
|
color: #fff !important;
|
||||||
}
|
}
|
||||||
@ -1435,8 +1435,9 @@ button.submitButton.secondary:hover > div {
|
|||||||
}
|
}
|
||||||
|
|
||||||
select[multiple] option:checked,
|
select[multiple] option:checked,
|
||||||
select[multiple] option:active {
|
select[multiple] option:active,
|
||||||
background: #008d86;
|
select[multiple] option:hover {
|
||||||
|
background: #008d86 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.select2-search.select2-search--dropdown,
|
.select2-search.select2-search--dropdown,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user