From 749a43a7f1238a362e8c27dd8bf104672911dfa7 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 22 Mar 2013 13:53:55 +0100 Subject: [PATCH] turn off querycode.css for now as it appears to set stuff for e.g. div.in that messes with our tabs besides it's useless until we turn syntax highlighting back on again --- plugins/querycode/querycode.css | 6 ++++++ plugins/querycode/querycode.py | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/plugins/querycode/querycode.css b/plugins/querycode/querycode.css index a6816550..840a7975 100644 --- a/plugins/querycode/querycode.css +++ b/plugins/querycode/querycode.css @@ -1,3 +1,9 @@ +/* Thierry + This needs to be cleaned up + in particular div.in below conflicts with bootstrap's fade in so another name would be helpful + ---- + turning this off altogether for now -- see querycode.py + */ /* body { font-family:Arial, Helvetica, Sans-Serif; font-size:0.8em;} */ #report { diff --git a/plugins/querycode/querycode.py b/plugins/querycode/querycode.py index eaa231da..6c3cb21d 100644 --- a/plugins/querycode/querycode.py +++ b/plugins/querycode/querycode.py @@ -22,11 +22,13 @@ class QueryCode (Plugin): # Plugins::add_js('/QueryCode/beautyofcode/scripts/shBrushRuby.js'); # Plugins::add_js('/QueryCode/beautyofcode/scripts/shAutoloader.js'); ] , - 'css_files': [ "css/querycode.css" , +# thierry: see this file for details of why we turn this off for now + 'css_files': [ +### "css/querycode.css" , # Plugins::add_css('/QueryCode/beautyofcode/styles/shCore.css'); # Plugins::add_css('/QueryCode/beautyofcode/styles/shCoreDefault.css'); # Plugins::add_css('/QueryCode/beautyofcode/styles/shThemeDefault.css'); - ], + ], } def json_settings_list (self): return ['plugin_uuid','query_uuid'] -- 2.43.0