pari: trunk r926 - /trunk/config/cfgbasic.html

asterisk-gui-commits at lists.digium.com asterisk-gui-commits at lists.digium.com
Mon May 14 17:15:27 MST 2007


Author: pari
Date: Mon May 14 19:15:26 2007
New Revision: 926

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=926
Log:
ReEnabling the 'Onmouseover colorChange for the panel items lost during r920'

Modified:
    trunk/config/cfgbasic.html

Modified: trunk/config/cfgbasic.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/cfgbasic.html?view=diff&rev=926&r1=925&r2=926
==============================================================================
--- trunk/config/cfgbasic.html (original)
+++ trunk/config/cfgbasic.html Mon May 14 19:15:26 2007
@@ -86,10 +86,21 @@
 
 function my_tooltip(event){
 	var s = (event.srcElement)?event.srcElement:this;
+
+	_$(s.id).style.backgroundColor="#63699C";
+	_$(s.id).style.color="#FFFFFF";
+	_$(s.id).style.fontWeight="bold";
+
 	show_Acctooltip(_$(s.id+"_U").innerHTML );
 }
 
-function default_tooltip(){
+function default_tooltip(event){
+	var s = (event.srcElement)?event.srcElement:this;
+
+	_$(s.id).style.backgroundColor="#6B79A5";
+	_$(s.id).style.color="#CED7EF";
+	_$(s.id).style.fontWeight="normal";
+
 	show_Acctooltip("Move the mouse over to a field to see tooltips");
 }
 



More information about the asterisk-gui-commits mailing list