Dashboard: Fixed issue where if RST was +**db it broke page layout

这个提交包含在:
Peter Goodhall 2011-08-23 16:23:10 +01:00
父节点 67b44ce87d
当前提交 8ca54726e2
共有 2 个文件被更改,包括 4 次插入4 次删除

查看文件

@ -49,7 +49,7 @@
// Instantiate and draw our chart, passing in some options. // Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('modechart_div')); var chart = new google.visualization.PieChart(document.getElementById('modechart_div'));
chart.draw(data, {width: 350, height: 240}); chart.draw(data, {width: 310, height: 240});
} }
function drawBandChart() { function drawBandChart() {
@ -68,7 +68,7 @@
// Instantiate and draw our chart, passing in some options. // Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('bandchart_div')); var chart = new google.visualization.PieChart(document.getElementById('bandchart_div'));
chart.draw(data, {width: 350, height: 240}); chart.draw(data, {width: 310, height: 240});
} }
</script> </script>

查看文件

@ -99,8 +99,8 @@ table .titles { font-weight: bold; }
#name { width: 145px; } #name { width: 145px; }
#comment { width: 89.5%; } #comment { width: 89.5%; }
.dash_left { float: left; width: 430px; } .dash_left { float: left; width: 440px; }
.dash_sidebar { float: right; width: 350px; } .dash_sidebar { float: right; width: 310px; }
.note { padding: 5px; } .note { padding: 5px; }
.auth { padding: 5px; } .auth { padding: 5px; }
#notes_add { padding: 5px; } #notes_add { padding: 5px; }