diff options
Diffstat (limited to 'ishtar_common/static')
-rw-r--r-- | ishtar_common/static/js/ishtar.js | 3 | ||||
-rw-r--r-- | ishtar_common/static/media/style.css | 14 |
2 files changed, 17 insertions, 0 deletions
diff --git a/ishtar_common/static/js/ishtar.js b/ishtar_common/static/js/ishtar.js index 0a15bfc23..b91558194 100644 --- a/ishtar_common/static/js/ishtar.js +++ b/ishtar_common/static/js/ishtar.js @@ -51,6 +51,9 @@ $(document).ready(function(){ if ($.isFunction($(".prettyPhoto a").prettyPhoto)){ $(".prettyPhoto a").prettyPhoto({'social_tools':''}); } + $('#current_items select').change(function(){ + $(this).attr('class', $(this).children("option:selected").attr('class')); + }) }); $('#to_bottom_arrow').live('click', function(){ diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index 5a7de3694..8722b5d05 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -17,9 +17,11 @@ div.form { } /* color */ +#context_menu .red, a, a.remove { color:#D14; } + a.add-button{ color:#61615C; } @@ -28,6 +30,18 @@ a.add-button{ color:#fff; } +#context_menu .orange { + color:#dd6011; +} + +#context_menu .green { + color:#13ae0c; +} + +#context_menu .normal{ + color:#000; +} + /* borders */ a.add-button, a.remove, #progress-content, |