From 0a75229a4357bff7e299affc8e014065153a9b8e Mon Sep 17 00:00:00 2001 From: Alex <40072887+alexdcrane@users.noreply.github.com> Date: Thu, 6 Feb 2025 13:45:38 -0700 Subject: [PATCH] Fix input toggle switch handle color default setting (#7247) --- themes/default/css.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/default/css.php b/themes/default/css.php index 0b06707d38..2559cae1b0 100644 --- a/themes/default/css.php +++ b/themes/default/css.php @@ -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';