##// END OF EJS Templates
fixed min width set....
marcink -
r379:86a25ad5 default
parent child Browse files
Show More
@@ -1,3 +1,10 b''
1 /* -----------------------------------------------------------
2 GLOBAL WIDTH
3 ----------------------------------------------------------- */
4 #header,#content,#footer{
5 min-width: 1024px;
6 }
7
1 /* -----------------------------------------------------------
8 /* -----------------------------------------------------------
2 content
9 content
3 ----------------------------------------------------------- */
10 ----------------------------------------------------------- */
@@ -45,7 +45,7 b''
45 <td>r${repo['rev']}:${repo['tip']}</td>
45 <td>r${repo['rev']}:${repo['tip']}</td>
46 <td>
46 <td>
47 ${h.form(url('repo', repo_name=repo['name']),method='delete')}
47 ${h.form(url('repo', repo_name=repo['name']),method='delete')}
48 ${h.submit('remove','delete',class_="delete_icon action_button",onclick="return confirm('Confirm to delete this repository');")}
48 ${h.submit('remove_%s' % repo['name'],'delete',class_="delete_icon action_button",onclick="return confirm('Confirm to delete this repository');")}
49 ${h.end_form()}
49 ${h.end_form()}
50 </td>
50 </td>
51 </tr>
51 </tr>
@@ -122,13 +122,11 b' E.onDOMReady(function(e){'
122 </div>
122 </div>
123
123
124 <div class="table">
124 <div class="table">
125 <div id="commit_history" style="width:600px;height:370px;float:left"></div>
125 <div id="commit_history" style="width:460px;height:370px;float:left"></div>
126 <div id="legend_data">
126 <div id="legend_data">
127 <div id="legend_container"></div>
127 <div id="legend_container"></div>
128 <div id="legend_choices">
128 <div id="legend_choices">
129 <table id="legend_choices_tables" style="font-size:smaller;color:#545454">
129 <table id="legend_choices_tables" style="font-size:smaller;color:#545454"></table>
130
131 </table>
132 </div>
130 </div>
133 </div>
131 </div>
134 <script type="text/javascript">
132 <script type="text/javascript">
@@ -164,7 +162,7 b' E.onDOMReady(function(e){'
164
162
165 if (data.length > 0){
163 if (data.length > 0){
166 var plot = YAHOO.widget.Flot("commit_history", data,
164 var plot = YAHOO.widget.Flot("commit_history", data,
167 { bars: { show: true, align:'left' },
165 { bars: { show: true, align:'center' },
168 points: { show: true, radius:0,fill:true },
166 points: { show: true, radius:0,fill:true },
169 legend:{show:true, container:"legend_container"},
167 legend:{show:true, container:"legend_container"},
170 selection: { mode: "xy" },
168 selection: { mode: "xy" },
General Comments 0
You need to be logged in to leave comments. Login now