parent
c8a8ea9bf4
commit
0fbecfa4ac
|
|
@ -75,21 +75,29 @@
|
|||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Set if extensions are grouped by call_group when viewing all extensions.";
|
||||
$y++;
|
||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "a9ccd174-5ae1-4f90-8ee2-b79a183a04f8";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = "theme";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "operator_panel_main_background_color";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "#ffffff";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Set main background color (and opacity) of extensions";
|
||||
$y++;
|
||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "b9d34460-db41-40d5-becd-5da037fa8942";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = "theme";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "operator_panel_inactive_background_color";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "operator_panel_sub_background_color";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "rgba(255, 255, 255, 0.5)";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "#e5eaf5";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Set background color (and opacity) of inactive extensions.";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Set sub background color (and opacity) of extensions";
|
||||
$y++;
|
||||
$apps[$x]['default_settings'][$y]['default_setting_uuid'] = "9cb6477d-0454-4b9c-b0fb-11c258d4f35f";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_category'] = "theme";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "operator_panel_inactive_border_color";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "operator_panel_border_color";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_name'] = "text";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_value'] = "#b9c5d8";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Set border color (and opacity) of inactive extensions.";
|
||||
$apps[$x]['default_settings'][$y]['default_setting_description'] = "Set border color (and opacity) of extensions";
|
||||
$y++;
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1959,11 +1959,11 @@ header('Expires: '.gmdate('D, d M Y H:i:s',time()+3600).' GMT');
|
|||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
-webkit-box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_label_background_color']['text']; ?>;
|
||||
-moz-box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_label_background_color']['text']; ?>;
|
||||
box-shadow: 0 0 10px <?php echo $_SESSION['theme']['form_table_label_background_color']['text']; ?>;
|
||||
-webkit-box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_field_background_color']['text']; ?>;
|
||||
-moz-box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_field_background_color']['text']; ?>;
|
||||
box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_field_background_color']['text']; ?>;
|
||||
border-width: 1px 3px;
|
||||
border-color: <?php echo $_SESSION['theme']['form_table_label_required_border_color']['text']; ?>;
|
||||
border-color: <?php echo $_SESSION['theme']['operator_panel_border_color']['text']; ?>;
|
||||
background-color: <?php echo $_SESSION['theme']['form_table_label_background_color']['text']; ?>;
|
||||
cursor: default;
|
||||
}
|
||||
|
|
@ -1978,13 +1978,14 @@ header('Expires: '.gmdate('D, d M Y H:i:s',time()+3600).' GMT');
|
|||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
-webkit-box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_label_background_color']['text']; ?>;
|
||||
-moz-box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_label_background_color']['text']; ?>;
|
||||
box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_label_background_color']['text']; ?>;
|
||||
-webkit-box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_field_background_color']['text']; ?>;
|
||||
-moz-box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_field_background_color']['text']; ?>;
|
||||
box-shadow: 0 0 3px <?php echo $_SESSION['theme']['form_table_field_background_color']['text']; ?>;
|
||||
border-width: 1px 3px;
|
||||
border-color: <?php echo $_SESSION['theme']['operator_panel_inactive_border_color']['text']; ?>;
|
||||
border-color: <?php echo $_SESSION['theme']['operator_panel_border_color']['text']; ?>;
|
||||
background-color: <?php echo $_SESSION['theme']['form_table_label_background_color']['text']; ?>;
|
||||
cursor: not-allowed;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
div.off_ext:after {
|
||||
|
|
@ -1999,7 +2000,7 @@ header('Expires: '.gmdate('D, d M Y H:i:s',time()+3600).' GMT');
|
|||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: <?php echo $_SESSION['theme']['operator_panel_inactive_background_color']['text']; ?>;
|
||||
background: <?php echo $_SESSION['theme']['form_table_field_background_color']['text']; ?>;
|
||||
}
|
||||
|
||||
div.op_state_active {
|
||||
|
|
@ -2020,7 +2021,7 @@ header('Expires: '.gmdate('D, d M Y H:i:s',time()+3600).' GMT');
|
|||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
background-color: <?php echo $_SESSION['theme']['form_table_label_background_color']['text']; ?>;
|
||||
background-color: <?php echo $_SESSION['theme']['operator_panel_sub_background_color']['text']; ?>;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
|
|
@ -2051,7 +2052,7 @@ header('Expires: '.gmdate('D, d M Y H:i:s',time()+3600).' GMT');
|
|||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
background-color: <?php echo $_SESSION['theme']['form_table_field_background_color']['text']; ?>;
|
||||
background-color: <?php echo $_SESSION['theme']['operator_panel_main_background_color']['text']; ?>;
|
||||
}
|
||||
|
||||
td.op_state_ringing {
|
||||
|
|
|
|||
Loading…
Reference in New Issue