More pandora_black fixes
This commit is contained in:
parent
e514a0efb5
commit
6180a42413
|
@ -2070,7 +2070,7 @@ if (is_metaconsole() === false) {
|
|||
json_profile.val(JSON.stringify(data));
|
||||
|
||||
profile_text = `<a href="index.php?sec2=godmode/users/configure_profile&id=${profile}">${profile_text}</a>`;
|
||||
group_img = `<img id="img_group_${aux}" src="" data-title="${group_text}" data-use_title_for_force_title="1" class="bot forced_title" alt="${group_text}"/>`;
|
||||
group_img = `<img id="img_group_${aux}" src="" data-title="${group_text}" data-use_title_for_force_title="1" class="invert_filter main_menu_icon bot forced_title" alt="${group_text}"/>`;
|
||||
group_text = `<a href="index.php?sec=estado&sec2=operation/agentes/estado_agente&refr=60&group_id=${group}">${group_img}${group_text}</a>`;
|
||||
|
||||
$('#table_profiles tr:last').before(
|
||||
|
|
|
@ -379,7 +379,7 @@ function ui_print_message($message, $class='', $attributes='', $return=false, $t
|
|||
$messageTable->data = [];
|
||||
$messageTable->data[0][0] = '<b>'.$text_title.'</b>';
|
||||
$messageTable->data[0][1] = $closeButton;
|
||||
$messageTable->data[1][0] = '<span style="color: #000;">'.$text_message.'</b>';
|
||||
$messageTable->data[1][0] = '<span>'.$text_message.'</b>';
|
||||
|
||||
// JavaScript help vars.
|
||||
$messageCreated = html_print_table($messageTable, true);
|
||||
|
|
|
@ -10804,6 +10804,7 @@ tr.bring_next_field {
|
|||
width: -webkit-fill-available;
|
||||
width: -moz-available;
|
||||
padding-right: 10px;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.action_buttons_right_content {
|
||||
|
@ -10831,7 +10832,7 @@ tr.bring_next_field {
|
|||
left: 0;
|
||||
top: 0;
|
||||
height: 62px;
|
||||
border: 1px solid #e5e9ed;
|
||||
border-top: 1px solid #e5e9ed;
|
||||
background-color: #fff;
|
||||
/*z-index: 10000;*/
|
||||
}
|
||||
|
|
|
@ -677,6 +677,7 @@ div#main_pure {
|
|||
}
|
||||
|
||||
div#main,
|
||||
div#container,
|
||||
body.pure {
|
||||
background-color: #111;
|
||||
}
|
||||
|
@ -1329,6 +1330,7 @@ p.trademark-copyright {
|
|||
|
||||
.action_buttons_background_mask {
|
||||
background-color: #222;
|
||||
border-top: 1px solid #82b92e;
|
||||
}
|
||||
|
||||
button.buttonButton,
|
||||
|
@ -1336,6 +1338,28 @@ button.submitButton {
|
|||
box-shadow: 0px 3px 6px #111;
|
||||
}
|
||||
|
||||
button.buttonButton.secondary,
|
||||
button.submitButton.secondary {
|
||||
background-color: #999;
|
||||
color: #fff;
|
||||
border-color: #fff;
|
||||
}
|
||||
|
||||
button.buttonButton.secondary:hover,
|
||||
button.submitButton.secondary:hover {
|
||||
color: #ddd !important;
|
||||
border-color: #ddd !important;
|
||||
}
|
||||
|
||||
button.buttonButton.secondary > div,
|
||||
button.submitButton.secondary > div {
|
||||
background-color: #fff !important;
|
||||
}
|
||||
|
||||
button.buttonButton.secondary:hover > div,
|
||||
button.submitButton.secondary:hover > div {
|
||||
background-color: #ddd !important;
|
||||
}
|
||||
.fixed_filter_bar {
|
||||
background-color: #222;
|
||||
}
|
||||
|
|
|
@ -888,7 +888,7 @@ foreach ($agents as $agent) {
|
|||
|
||||
$data[2] = html_print_div(
|
||||
[
|
||||
'class' => 'main_menu_icon',
|
||||
'class' => 'invert_filter main_menu_icon',
|
||||
'content' => ui_print_os_icon($agent['id_os'], false, true),
|
||||
],
|
||||
true
|
||||
|
@ -903,7 +903,10 @@ foreach ($agents as $agent) {
|
|||
true,
|
||||
'groups_small',
|
||||
'',
|
||||
false
|
||||
false,
|
||||
false,
|
||||
false,
|
||||
'invert_filter main_menu_icon'
|
||||
);
|
||||
$data[4] .= '</a>';
|
||||
$agent['not_init_count'] = $agent['notinit_count'];
|
||||
|
|
Loading…
Reference in New Issue