Explorar el Código

- Fixing styles issues found on the truncated lists (Ticket #61)

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@228 a333f486-631f-4898-b8df-5754b55c2be0
dflaven hace 15 años
padre
commit
87f34e3ad5
Se han modificado 2 ficheros con 5 adiciones y 0 borrados
  1. 4 0
      css/light-grey.css
  2. 1 0
      js/utils.js

+ 4 - 0
css/light-grey.css

@@ -680,6 +680,10 @@ table.listResults tr.even td.truncated.hover {
 	background: #E8FFD3 url(../images/truncated.png) bottom  repeat-x;
 }
 
+table.listResults tr.odd td.truncated.hover {
+	background: #E8FFD3 url(../images/truncated.png) bottom  repeat-x;
+}
+
 table.listResults.truncated {
 	border-bottom: 0;
 	padding-bottom: 0;

+ 1 - 0
js/utils.js

@@ -12,6 +12,7 @@ function ReloadTruncatedList(divId, sSerializedFilter, sExtraParams)
 		 $('#'+divId).empty();
 		 $('#'+divId).append(data);
 		 $('#'+divId).removeClass('loading');
+		 $('#'+divId+' .listResults').tableHover(); // hover tables
 		 $('#'+divId+' .listResults').tablesorter( { headers: { 0:{sorter: false }}, widgets: ['zebra']} ); // sortable and zebra tables
 		 //$('#'+divId).unblockUI();
 		}