Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
138
Issues
138
List
Board
Labels
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
purescript-gargantext
Commits
70f28cf3
Commit
70f28cf3
authored
Jun 08, 2022
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/377-dev-fonts-terms-rc0.x' into dev
parents
2ba8fd1a
6d4781c5
Pipeline
#2908
failed with stage
in 0 seconds
Changes
7
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
20 additions
and
10 deletions
+20
-10
bootstrap-darkster.css
dist/styles/bootstrap-darkster.css
+1
-1
bootstrap-default.css
dist/styles/bootstrap-default.css
+1
-1
bootstrap-greyson.css
dist/styles/bootstrap-greyson.css
+1
-1
bootstrap-herbie.css
dist/styles/bootstrap-herbie.css
+1
-1
bootstrap-monotony.css
dist/styles/bootstrap-monotony.css
+1
-1
Components.purs
src/Gargantext/Components/NgramsTable/Components.purs
+14
-4
_annotation.scss
src/sass/modules/_annotation.scss
+1
-1
No files found.
dist/styles/bootstrap-darkster.css
View file @
70f28cf3
...
...
@@ -9000,7 +9000,7 @@ select.form-control {
text-shadow
:
0
0
4px
;
}
.b-icon.candidate-term
{
color
:
#5
a90b
6
;
color
:
#5
A90B
6
;
text-shadow
:
0
0
4px
;
}
.b-icon.stop-term
{
...
...
dist/styles/bootstrap-default.css
View file @
70f28cf3
...
...
@@ -8953,7 +8953,7 @@ select.form-control {
text-shadow
:
0
0
4px
;
}
.b-icon.candidate-term
{
color
:
#5
a90b
6
;
color
:
#5
A90B
6
;
text-shadow
:
0
0
4px
;
}
.b-icon.stop-term
{
...
...
dist/styles/bootstrap-greyson.css
View file @
70f28cf3
...
...
@@ -8709,7 +8709,7 @@ select.form-control {
text-shadow
:
0
0
4px
;
}
.b-icon.candidate-term
{
color
:
#5
a90b
6
;
color
:
#5
A90B
6
;
text-shadow
:
0
0
4px
;
}
.b-icon.stop-term
{
...
...
dist/styles/bootstrap-herbie.css
View file @
70f28cf3
...
...
@@ -8957,7 +8957,7 @@ select.form-control {
text-shadow
:
0
0
4px
;
}
.b-icon.candidate-term
{
color
:
#5
a90b
6
;
color
:
#5
A90B
6
;
text-shadow
:
0
0
4px
;
}
.b-icon.stop-term
{
...
...
dist/styles/bootstrap-monotony.css
View file @
70f28cf3
...
...
@@ -8958,7 +8958,7 @@ select.form-control {
text-shadow
:
0
0
4px
;
}
.b-icon.candidate-term
{
color
:
#5
a90b
6
;
color
:
#5
A90B
6
;
text-shadow
:
0
0
4px
;
}
.b-icon.stop-term
{
...
...
src/Gargantext/Components/NgramsTable/Components.purs
View file @
70f28cf3
...
...
@@ -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 =
...
...
src/sass/modules/_annotation.scss
View file @
70f28cf3
$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%
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment