Changeset - ef23fa832ab2
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 14 years ago 2012-01-22 02:33:43
marcin@python-works.com
fixed percentage in stats
fixed menu css
2 files changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
rhodecode/public/css/style.css
Show inline comments
 
@@ -421,7 +421,7 @@ div.options a {
 
	border: 1px solid #666;
 
	border-top: 1px solid #003367;
 
	z-index: 100;
 
	margin: 2px 0px 0px 0px;
 
	margin: 0px 0px 0px 0px;
 
	padding: 0;
 
}
 
rhodecode/templates/summary/summary.html
Show inline comments
 
@@ -299,9 +299,10 @@ var no_data = true;
 
var tbl = document.createElement('table');
 
tbl.setAttribute('class','trending_language_tbl');
 
var cnt = 0;
 

	
 
for (var i=0;i<data.length;i++){
 
    total += data[i][1].count;
 
	total+= data[i][1].count;
 
}
 
for (var i=0;i<data.length;i++){
 
    cnt += 1;
 
    no_data = false;
 

	
0 comments (0 inline, 0 general)