Browse Source

[core] Removed wrong color on the table column fixer plugin

Enrico Berti 9 years ago
parent
commit
23e7144a9e

+ 1 - 1
desktop/core/src/desktop/static/desktop/js/jquery.tableextender.js

@@ -204,7 +204,7 @@
       $(this).attr("class", originalTh.attr("class"));
     });
 
-    var clonedCellContainer = $("<div>").css("background-color", "#FFCC00").width(originalTh.outerWidth()).height(originalTh.outerHeight());
+    var clonedCellContainer = $("<div>").css("background-color", "#FFFFFF").width(originalTh.outerWidth()).height(originalTh.outerHeight());
     clonedCell.appendTo(clonedCellContainer);
 
     var clonedCellVisibleContainer = $("<div>").attr("id", $(plugin.element).attr("id") + "jHueTableExtenderClonedContainerCell").addClass("jHueTableExtenderClonedContainerCell").width(originalTh.outerWidth()).css("overflow", "hidden").css("top", topPosition + "px");