From d466284fabe945dbc3c8034ac1468bf97b38ed94 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 12 Feb 2021 09:02:44 +0300 Subject: * customizeCSS: client dialog * remove hardcoded width from most dialogs (move to css) * add helper to easily get dialog from its widget * rework some dialog buttons to use current object instead of calling dialog by name --- classes/pref/prefs.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'classes') diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php index 50a1f39c8..df4540c5e 100644 --- a/classes/pref/prefs.php +++ b/classes/pref/prefs.php @@ -1168,7 +1168,9 @@ class Pref_Prefs extends Handler_Protected { $value = get_pref("USER_STYLESHEET"); $value = str_replace("
", "\n", $value); - print_notice(__("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here.")); + print json_encode(["value" => $value]); + + /*print_notice(__("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here.")); print_hidden("op", "rpc"); print_hidden("method", "setpref"); @@ -1188,7 +1190,7 @@ class Pref_Prefs extends Handler_Protected { onclick=\"dijit.byId('cssEditDlg').execute()\">".__('Save and reload')." "; print ""; - print ""; + print "";*/ } -- cgit v1.2.3-54-g00ecf