From 66a4814495bb19a34e2509cf313a337b8da8d7e5 Mon Sep 17 00:00:00 2001
From: juanf <juanf>
Date: Fri, 31 Oct 2014 07:50:31 +0000
Subject: [PATCH] SSDM-986 : PAPER - Refactor old tables to use the new one

SVN: 32697
---
 .../newbrowser/html/lib/grid/js/Grid.html     | 26 +++++++++++++++----
 1 file changed, 21 insertions(+), 5 deletions(-)

diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/lib/grid/js/Grid.html b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/lib/grid/js/Grid.html
index e7db564193e..39cf95340fd 100644
--- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/lib/grid/js/Grid.html
+++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/lib/grid/js/Grid.html
@@ -1,6 +1,15 @@
 <style type="text/css">
+
+ /*
+  * Hover highlights the rows
+  */
+ .fuelux .repeater-list-wrapper tr:hover {
+ 	background-color: #F5F5F5;
+ 	cursor: pointer;
+ }
+ 
 /*
- * Fuelux table fix in conjuntion with adding a row on the javascript
+ * Bugfix: Fuelux don't refresh last column correctly so we add a dummy one and hide, check also javascript part
  */
  .fuelux .repeater-list-wrapper td:last-child,
  .fuelux .repeater-list-wrapper th:last-child {
@@ -8,11 +17,18 @@
  }
  
  /*
-  * Hover highlights the rows
+  * Bugfix: Dropdown issues in Chrome getting hiden by other components
   */
- .fuelux .repeater-list-wrapper tr:hover {
- 	background-color: #F5F5F5;
- 	cursor: pointer;
+ .fuelux {
+ 	overflow: visible !important;
+ }
+ 
+ .repeater {
+ 	z-index: 1;
+ }
+ 
+ .repeater ul {
+ 	z-index: 100000;
  }
  
 </style>
-- 
GitLab