[open-ils-commits] r14554 - in trunk/Open-ILS/xul/staff_client: chrome/content/util server/skin (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Oct 22 03:09:59 EDT 2009
Author: phasefx
Date: 2009-10-22 03:09:54 -0400 (Thu, 22 Oct 2009)
New Revision: 14554
Modified:
trunk/Open-ILS/xul/staff_client/chrome/content/util/network.js
trunk/Open-ILS/xul/staff_client/server/skin/global.css
Log:
inline style here no longer works in xulrunner 1.9 for some reason
Modified: trunk/Open-ILS/xul/staff_client/chrome/content/util/network.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/chrome/content/util/network.js 2009-10-22 06:54:02 UTC (rev 14553)
+++ trunk/Open-ILS/xul/staff_client/chrome/content/util/network.js 2009-10-22 07:09:54 UTC (rev 14554)
@@ -428,7 +428,7 @@
var t3 = String((override_params.text[r[i].ilsevent] ? override_params.text[r[i].ilsevent](r[i]) : '')).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>');
var t4 = String(r[i].desc).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>');
xml += '<row>' +
- '<description style="color: red" tooltiptext="' + t1 + '">' + t2 + '</description>' +
+ '<description class="oils_event" tooltiptext="' + t1 + '">' + t2 + '</description>' +
'<description>' + t3 + '</description>' +
'</row><row>' + '<description>' + t4 + '</description>' + '</row>';
}
Modified: trunk/Open-ILS/xul/staff_client/server/skin/global.css
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/skin/global.css 2009-10-22 06:54:02 UTC (rev 14553)
+++ trunk/Open-ILS/xul/staff_client/server/skin/global.css 2009-10-22 07:09:54 UTC (rev 14554)
@@ -115,3 +115,7 @@
*/
.edit_hold_range { display: none; }
.edit_hold_focus { display: none; }
+
+.oils_event { color: red; }
+
+
More information about the open-ils-commits
mailing list