Merge pull request #50 from cubedro/develop

Added orange color
This commit is contained in:
Marian OANCΞA 2015-04-06 13:56:04 +03:00
commit ed2530985e
2 changed files with 6 additions and 2 deletions

View File

@ -30,6 +30,10 @@ body {
color: #777 !important; color: #777 !important;
} }
.text-orange {
color: #ff8a00;
}
.container-fluid { .container-fluid {
padding-left: 30px; padding-left: 30px;
padding-right: 30px; padding-right: 30px;

View File

@ -248,10 +248,10 @@ function blockTimeClass(diff)
return 'text-success'; return 'text-success';
if(diff <= 20) if(diff <= 20)
return 'text-info'; return 'text-warning';
if(diff <= 30) if(diff <= 30)
return 'text-warning'; return 'text-orange';
return 'text-danger' return 'text-danger'
} }