diff options
-rw-r--r-- | www/js/shows.js | 2 | ||||
-rw-r--r-- | www/styles/shows.css | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/www/js/shows.js b/www/js/shows.js index 1086620..f0eb34e 100644 --- a/www/js/shows.js +++ b/www/js/shows.js @@ -202,7 +202,7 @@ Rdxport.ShowView.prototype.render = function() { case 4: s.addClass('label-danger'); break; } } else { - $('#show-rhythm-w' + (w+1)).attr('class', 'label label-default') + $('#show-rhythm-w' + (w+1)).attr('class', 'label label-disabled') } } diff --git a/www/styles/shows.css b/www/styles/shows.css index 2daa8b6..c977334 100644 --- a/www/styles/shows.css +++ b/www/styles/shows.css @@ -28,3 +28,8 @@ margin-top: 1.5em; margin-bottom: 1em; } + +.label-disabled { + background-color: #EEE; + color: #888; +} |