Skip to content

Commit 8a9cb3a

Browse files
committed
remove unnecesary images
1 parent 662a397 commit 8a9cb3a

14 files changed

Lines changed: 25 additions & 18 deletions

File tree

codespeed/static/.DS_Store

6 KB
Binary file not shown.

codespeed/static/css/main.css

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ body {
55
margin: 0;
66
padding: 0;
77
background-color: #596A74;
8-
background-image: url(../images/vgradient.png);
98
background-repeat: repeat-x;
109
font-size: 16px;
1110
margin-bottom: 0.8em;
@@ -108,7 +107,7 @@ div#presentation div.menubox {
108107
background-image: url(../images/vgradient.png);
109108
background-repeat: repeat-x;
110109
background-color: #FFFFFF;
111-
color: white;
110+
color: black;
112111
width: 220px;
113112
cursor: pointer;
114113
text-align: center;
@@ -288,6 +287,9 @@ table.reports {
288287
margin-bottom: 2em
289288
}
290289

290+
a.feed {
291+
text-decoration: underline;
292+
}
291293
/*table.reports {
292294
border-width: 2px;
293295
}*/
@@ -467,8 +469,11 @@ p.note, p.warning {
467469
border-radius: 10px;
468470
}
469471
p.warning {
470-
padding-left: 42px;
471-
background-image: url(../images/warning.png);
472+
margin-left: 10px;
473+
}
474+
p.warning::before{
475+
content: '⚠ ';
476+
color: #f53535;
472477
}
473478
p.note {
474479
margin-top: 20px;

codespeed/static/images/.DS_Store

6 KB
Binary file not shown.
-673 Bytes
Binary file not shown.

codespeed/static/images/rss.png

-689 Bytes
Binary file not shown.
-340 Bytes
Binary file not shown.
-1.54 KB
Binary file not shown.

codespeed/static/js/changes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function refreshContent() {
7272
var h = $("#content").height();//get height for loading text
7373
$("#contentwrap").fadeOut("fast", function() {
7474
$(this).show();
75-
$(this).html(getLoadText("Loading...", h, true));
75+
$(this).html(getLoadText("Loading...", h));
7676
$(this).load("table/", $.param(getConfiguration()), function() { updateTable(); });
7777
});
7878
}

codespeed/static/js/codespeed.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function readCheckbox(el) {
99
return config;
1010
}
1111

12-
function getLoadText(text, h, showloader) {
12+
function getLoadText(text, h) {
1313
var loadtext = '<div style="text-align:center;">';
1414
var pstyle = "";
1515
if (h > 0) {
@@ -19,9 +19,6 @@ function getLoadText(text, h, showloader) {
1919
pstyle = ' style="line-height:' + h + 'px;"';
2020
}
2121
loadtext += '<p' + pstyle + '>'+ text;
22-
if (showloader) {
23-
loadtext += ' <img src="' + window.STATIC_URL +'images/ajax-loader.gif" align="bottom">';
24-
}
2522
loadtext += '</p></div>';
2623
return loadtext;
2724
}

codespeed/static/js/comparison.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@ function renderComparisonPlot(plotid, benchmarks, exes, enviros, baseline, chart
339339
plotoptions.series = series;
340340
plotoptions.grid = {borderColor: '#9DADC6', shadow: false, drawBorder: true};
341341
plotoptions.seriesDefaults.shadow = false;
342+
plotoptions.axesDefaults.tickOptions = {fontFamily:'Arial'};
342343

343344
// determine conditions for rendering the legend outside the plot area
344345
var offplot = false;
@@ -419,7 +420,7 @@ function init(defaults) {
419420

420421
// Get comparison data
421422
var h = $("#content").height();//get height for loading text
422-
$("#cplot").html(getLoadText("Loading...", h, true));
423+
$("#cplot").html(getLoadText("Loading...", h));
423424
$.getJSON("json/", savedata);
424425

425426
$("#permalink").click(function() {

0 commit comments

Comments
 (0)