From 3c5bc2f2394f3658181a61342a4a6def3f66e447 Mon Sep 17 00:00:00 2001 From: cubedro Date: Mon, 6 Apr 2015 13:55:33 +0300 Subject: [PATCH] added orange color --- public/css/style.css | 4 ++++ public/js/filters.js | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/public/css/style.css b/public/css/style.css index 5e0f6ad..f22cc49 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -30,6 +30,10 @@ body { color: #777 !important; } +.text-orange { + color: #ff8a00; +} + .container-fluid { padding-left: 30px; padding-right: 30px; diff --git a/public/js/filters.js b/public/js/filters.js index 0edf6f4..7f368fc 100644 --- a/public/js/filters.js +++ b/public/js/filters.js @@ -248,10 +248,10 @@ function blockTimeClass(diff) return 'text-success'; if(diff <= 20) - return 'text-info'; + return 'text-warning'; if(diff <= 30) - return 'text-warning'; + return 'text-orange'; return 'text-danger' } \ No newline at end of file