Fix input toggle switch handle color default setting (#7247)
This commit is contained in:
parent
3088bb188f
commit
0a75229a43
|
|
@ -172,7 +172,7 @@ $input_toggle_style = $_SESSION['theme']['input_toggle_style']['text'] ?? 'switc
|
|||
$input_toggle_switch_background_color_true = $_SESSION['theme']['input_toggle_switch_background_color_true']['text'] ?? '#2e82d0';
|
||||
$input_toggle_switch_background_color_false = $_SESSION['theme']['input_toggle_switch_background_color_false']['text'] ?? $input_border_color;
|
||||
$input_toggle_switch_handle_symbol = $_SESSION['theme']['input_toggle_switch_handle_symbol']['boolean'] ?? 'false';
|
||||
$input_toggle_switch_handle_color = $_SESSION['theme']['input_toggle_switch_handle_color']['boolean'] ?? '#ffffff';
|
||||
$input_toggle_switch_handle_color = $_SESSION['theme']['input_toggle_switch_handle_color']['text'] ?? '#ffffff';
|
||||
$table_heading_text_color = $_SESSION['theme']['table_heading_text_color']['text'] ?? '#3164ad';
|
||||
$table_heading_text_size = $_SESSION['theme']['table_heading_text_size']['text'] ?? '12px';
|
||||
$table_heading_text_font = $_SESSION['theme']['table_heading_text_font']['text'] ?? 'arial';
|
||||
|
|
|
|||
Loading…
Reference in New Issue