diff options
| author | Luc Donnet | 2014-02-11 14:44:44 +0100 |
|---|---|---|
| committer | Luc Donnet | 2014-02-11 14:44:44 +0100 |
| commit | 90831700d30cadf18f068f11fc4e5b674c645a20 (patch) | |
| tree | 26a03945c2d45a7ddb57007d2a7e39259907c694 | |
| parent | 913295b266d332018e51c27df4892f88b3901e51 (diff) | |
| download | chouette-core-90831700d30cadf18f068f11fc4e5b674c645a20.tar.bz2 | |
Fix color in gray for files in import task show
| -rw-r--r-- | app/assets/stylesheets/import_tasks.css.scss | 2 | ||||
| -rw-r--r-- | app/views/import_tasks/show.js.coffee | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/import_tasks.css.scss b/app/assets/stylesheets/import_tasks.css.scss index 8ae0f07f7..610b9827b 100644 --- a/app/assets/stylesheets/import_tasks.css.scss +++ b/app/assets/stylesheets/import_tasks.css.scss @@ -133,7 +133,7 @@ } .files_ignored{ - color: #ffbd2b; + color: #898e7f; display: none; } diff --git a/app/views/import_tasks/show.js.coffee b/app/views/import_tasks/show.js.coffee index accd8e720..c856154fa 100644 --- a/app/views/import_tasks/show.js.coffee +++ b/app/views/import_tasks/show.js.coffee @@ -14,7 +14,7 @@ jQuery -> {label: "<%= t 'import_tasks.show.graph.files.ignored' %>", value: <%= @files_stats["ignored_count"] %> }, {label: "<%= t 'import_tasks.show.graph.files.ok' %>", value: <%= @files_stats["ok_count"] %> } ] - colors: [ "#e22b1b", "#ffbd2b", "#8fc861" ] + colors: [ "#e22b1b", "#898e7f", "#8fc861" ] }).on('click', update = (i, row) -> switch i when 0 then get_import_results( $(".report"), $(".files_error")) |
