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
3
Merge Requests
3
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
6d4781c5
Commit
6d4781c5
authored
2 years ago
by
arturo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ngrams] Fonts in terms table
*
#377
parent
61422c57
Pipeline
#2894
failed with stage
in 0 seconds
Changes
7
Pipelines
1
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 @
6d4781c5
...
...
@@ -8999,7 +8999,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
{
...
...
This diff is collapsed.
Click to expand it.
dist/styles/bootstrap-default.css
View file @
6d4781c5
...
...
@@ -8952,7 +8952,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
{
...
...
This diff is collapsed.
Click to expand it.
dist/styles/bootstrap-greyson.css
View file @
6d4781c5
...
...
@@ -8708,7 +8708,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
{
...
...
This diff is collapsed.
Click to expand it.
dist/styles/bootstrap-herbie.css
View file @
6d4781c5
...
...
@@ -8956,7 +8956,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
{
...
...
This diff is collapsed.
Click to expand it.
dist/styles/bootstrap-monotony.css
View file @
6d4781c5
...
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
src/Gargantext/Components/NgramsTable/Components.purs
View file @
6d4781c5
...
...
@@ -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 =
...
...
This diff is collapsed.
Click to expand it.
src/sass/modules/_annotation.scss
View file @
6d4781c5
$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%
;
...
...
This diff is collapsed.
Click to expand it.
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