Commit 20977ce9 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[DESIGN] fix colors

parent 85b3c957
...@@ -762,44 +762,44 @@ li .leaf:hover a.settings { ...@@ -762,44 +762,44 @@ li .leaf:hover a.settings {
} }
.annotation-run.candidate-term.graph-term.stop-term { .annotation-run.candidate-term.graph-term.stop-term {
color: #000; color: #000;
background-image: linear-gradient(rgba(255, 152, 0, 0.34), rgba(255, 152, 0, 0.34)), linear-gradient(rgba(67, 160, 71, 0.33), rgba(67, 160, 71, 0.33)), linear-gradient(rgba(229, 57, 53, 0.33), rgba(229, 57, 53, 0.33)); background-image: linear-gradient(rgba(184, 184, 184, 0.34), rgba(184, 184, 184, 0.34)), linear-gradient(rgba(149, 210, 149, 0.33), rgba(149, 210, 149, 0.33)), linear-gradient(rgba(245, 148, 153, 0.33), rgba(245, 148, 153, 0.33));
} }
.annotation-run.candidate-term.graph-term { .annotation-run.candidate-term.graph-term {
color: #000; color: #000;
background-image: linear-gradient(rgba(255, 152, 0, 0.5), rgba(255, 152, 0, 0.5)), linear-gradient(rgba(67, 160, 71, 0.5), rgba(67, 160, 71, 0.5)); background-image: linear-gradient(rgba(184, 184, 184, 0.5), rgba(184, 184, 184, 0.5)), linear-gradient(rgba(149, 210, 149, 0.5), rgba(149, 210, 149, 0.5));
} }
.annotation-run.candidate-term.stop-term { .annotation-run.candidate-term.stop-term {
color: #000; color: #000;
background-image: linear-gradient(rgba(255, 152, 0, 0.5), rgba(255, 152, 0, 0.5)), linear-gradient(rgba(229, 57, 53, 0.5), rgba(229, 57, 53, 0.5)); background-image: linear-gradient(rgba(184, 184, 184, 0.5), rgba(184, 184, 184, 0.5)), linear-gradient(rgba(245, 148, 153, 0.5), rgba(245, 148, 153, 0.5));
} }
.annotation-run.graph-term.stop-term { .annotation-run.graph-term.stop-term {
color: #000; color: #000;
background-image: linear-gradient(rgba(67, 160, 71, 0.5), rgba(67, 160, 71, 0.5)), linear-gradient(rgba(229, 57, 53, 0.5), rgba(229, 57, 53, 0.5)); background-image: linear-gradient(rgba(149, 210, 149, 0.5), rgba(149, 210, 149, 0.5)), linear-gradient(rgba(245, 148, 153, 0.5), rgba(245, 148, 153, 0.5));
} }
.annotation-run.candidate-term { .annotation-run.candidate-term {
color: #000; color: #000;
background-color: #FF9800; background-color: #B8B8B893;
} }
.annotation-run.graph-term { .annotation-run.graph-term {
color: #000; color: #000;
background-color: #43A047; background-color: #95D29593;
} }
.annotation-run.stop-term { .annotation-run.stop-term {
color: #000; color: #000;
background-color: #E53935; background-color: #F5949993;
} }
.context-menu .candidate-term { .context-menu .candidate-term {
color: #000; color: #000;
background-color: #FF9800; background-color: #B8B8B893;
} }
.context-menu .graph-term { .context-menu .graph-term {
color: #000; color: #000;
background-color: #43A047; background-color: #95D29593;
} }
.context-menu .stop-term { .context-menu .stop-term {
color: #000; color: #000;
background-color: #E53935; background-color: #F5949993;
} }
/*# sourceMappingURL=sass.css.map */ /*# sourceMappingURL=sass.css.map */
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
// $annotation-stop-color: #f00 // $annotation-stop-color: #f00
// Copied from bootstrap's bg-warning, bg-success, bg-danger: // Copied from bootstrap's bg-warning, bg-success, bg-danger:
$annotation-candidate-color: #FF9800 $annotation-candidate-color: #B8B8B893
$annotation-graph-color: #43A047 $annotation-graph-color: #95D29593
$annotation-stop-color: #E53935 $annotation-stop-color: #F5949993
@mixin lg1($color) @mixin lg1($color)
color: #000 color: #000
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment