1
0
Fork 0

dashboard styling

This commit is contained in:
hkernbach 2016-02-23 11:10:00 +01:00 committed by Frank Celler
parent 4a76aaed80
commit 1d5e1ff375
2 changed files with 4 additions and 3 deletions

View File

@ -219,7 +219,7 @@
}
else {
$("#" + a).html('<br/><span class="dashboard-figurePer" style="color: '
+ "#000" +';">' + "data not ready yet" + '</span>');
+ "#000" +';">' + '<p class="dataNotReadyYet">data not ready yet</p>' + '</span>');
}
});
},
@ -616,7 +616,7 @@
if ($('.dataNotReadyYet').length === 0) {
$('#dataTransferDistribution').prepend('<p class="dataNotReadyYet"> data not ready yet </p>');
$('#totalTimeDistribution').prepend('<p class="dataNotReadyYet"> data not ready yet </p>');
$('.dashboard-bar-chart-title').prepend('<p class="dataNotReadyYet"> data not ready yet </p>');
$('.dashboard-bar-chart-title').append('<p class="dataNotReadyYet"> data not ready yet </p>');
}
},

View File

@ -30,8 +30,9 @@
}
.dataNotReadyYet {
color: $c-warning;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-size: 14px;
font-weight: 100;
text-align: center;
}