Commit 6d4781c5 authored by arturo's avatar arturo

[ngrams] Fonts in terms table

* #377
parent 61422c57
Pipeline #2894 failed with stage
in 0 seconds
......@@ -8999,7 +8999,7 @@ select.form-control {
text-shadow: 0 0 4px;
}
.b-icon.candidate-term {
color: #5a90b6;
color: #5A90B6;
text-shadow: 0 0 4px;
}
.b-icon.stop-term {
......
......@@ -8952,7 +8952,7 @@ select.form-control {
text-shadow: 0 0 4px;
}
.b-icon.candidate-term {
color: #5a90b6;
color: #5A90B6;
text-shadow: 0 0 4px;
}
.b-icon.stop-term {
......
......@@ -8708,7 +8708,7 @@ select.form-control {
text-shadow: 0 0 4px;
}
.b-icon.candidate-term {
color: #5a90b6;
color: #5A90B6;
text-shadow: 0 0 4px;
}
.b-icon.stop-term {
......
......@@ -8956,7 +8956,7 @@ select.form-control {
text-shadow: 0 0 4px;
}
.b-icon.candidate-term {
color: #5a90b6;
color: #5A90B6;
text-shadow: 0 0 4px;
}
.b-icon.stop-term {
......
......@@ -8957,7 +8957,7 @@ select.form-control {
text-shadow: 0 0 4px;
}
.b-icon.candidate-term {
color: #5a90b6;
color: #5A90B6;
text-shadow: 0 0 4px;
}
.b-icon.stop-term {
......
......@@ -299,10 +299,20 @@ renderNgramsItemCpt = here.component "renderNgramsItem" cpt
termStyle :: GT.TermList -> Number -> DOM.Props
termStyle GT.MapTerm opacity = DOM.style { color: "green", opacity }
termStyle GT.StopTerm opacity = DOM.style { color: "red", opacity
, textDecoration: "line-through" }
termStyle GT.CandidateTerm opacity = DOM.style { color: "#767676", opacity }
termStyle GT.MapTerm opacity = DOM.style
{ color: "#11AA11"
, opacity
}
termStyle GT.StopTerm opacity = DOM.style
{ color: "#EE3311"
, opacity
, textDecoration: "line-through"
}
termStyle GT.CandidateTerm opacity = DOM.style
{ color: "#5A90B6"
, fontStyle: "italic"
, opacity
}
tablePatchHasNgrams :: NgramsTablePatch -> NgramsTerm -> Boolean
tablePatchHasNgrams ngramsTablePatch ngrams =
......
$annotation-graph-color : #11AA11;
// $annotation-candidate-color : #33AAEE;
$annotation-candidate-color : rgb(90, 144, 182);
$annotation-candidate-color : #5A90B6;
$annotation-stop-color : #EE3311;
$annotation-field-base-alpha: 17.5%;
......
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