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
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Grégoire Locqueville
purescript-gargantext
Commits
7042c889
Commit
7042c889
authored
Feb 27, 2023
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev-503-progressBarWaitingText' into dev-merge
parents
25f5ba11
0ca2ab21
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
47 additions
and
1 deletion
+47
-1
bootstrap-darkster.css
dist/styles/bootstrap-darkster.css
+6
-0
bootstrap-default.css
dist/styles/bootstrap-default.css
+6
-0
bootstrap-greyson.css
dist/styles/bootstrap-greyson.css
+6
-0
bootstrap-herbie.css
dist/styles/bootstrap-herbie.css
+6
-0
bootstrap-monotony.css
dist/styles/bootstrap-monotony.css
+6
-0
ProgressBar.purs
src/Gargantext/Components/Bootstrap/Block/ProgressBar.purs
+9
-0
Node.purs
src/Gargantext/Components/Forest/Tree/Node.purs
+1
-0
_tree.sass
src/sass/_legacy/_tree.sass
+7
-1
No files found.
dist/styles/bootstrap-darkster.css
View file @
7042c889
...
...
@@ -10104,6 +10104,12 @@ input[type=range]:-moz-focusring {
height
:
8px
;
background-color
:
#FFFFFF
;
}
.mainleaf__progress-bar
.b-progress-bar
.progress-text
{
color
:
#0F81C7
;
font-size
:
10px
;
line-height
:
8px
;
position
:
absolute
;
}
.right-handed
.mainleaf__progress-bar
{
margin-left
:
16px
;
}
...
...
dist/styles/bootstrap-default.css
View file @
7042c889
...
...
@@ -10051,6 +10051,12 @@ input[type=range]:-moz-focusring {
height
:
8px
;
background-color
:
#FFFFFF
;
}
.mainleaf__progress-bar
.b-progress-bar
.progress-text
{
color
:
#17a2b8
;
font-size
:
10px
;
line-height
:
8px
;
position
:
absolute
;
}
.right-handed
.mainleaf__progress-bar
{
margin-left
:
16px
;
}
...
...
dist/styles/bootstrap-greyson.css
View file @
7042c889
...
...
@@ -9813,6 +9813,12 @@ input[type=range]:-moz-focusring {
height
:
8px
;
background-color
:
#FFFFFF
;
}
.mainleaf__progress-bar
.b-progress-bar
.progress-text
{
color
:
#5c8f94
;
font-size
:
10px
;
line-height
:
8px
;
position
:
absolute
;
}
.right-handed
.mainleaf__progress-bar
{
margin-left
:
16px
;
}
...
...
dist/styles/bootstrap-herbie.css
View file @
7042c889
...
...
@@ -10061,6 +10061,12 @@ input[type=range]:-moz-focusring {
height
:
8px
;
background-color
:
#FFFFFF
;
}
.mainleaf__progress-bar
.b-progress-bar
.progress-text
{
color
:
#74DBEF
;
font-size
:
10px
;
line-height
:
8px
;
position
:
absolute
;
}
.right-handed
.mainleaf__progress-bar
{
margin-left
:
16px
;
}
...
...
dist/styles/bootstrap-monotony.css
View file @
7042c889
...
...
@@ -10062,6 +10062,12 @@ input[type=range]:-moz-focusring {
height
:
8px
;
background-color
:
#FFFFFF
;
}
.mainleaf__progress-bar
.b-progress-bar
.progress-text
{
color
:
#515151
;
font-size
:
10px
;
line-height
:
8px
;
position
:
absolute
;
}
.right-handed
.mainleaf__progress-bar
{
margin-left
:
16px
;
}
...
...
src/Gargantext/Components/Bootstrap/Block/ProgressBar.purs
View file @
7042c889
...
...
@@ -10,6 +10,7 @@ import Reactix.DOM.HTML as H
type Props =
( value :: Number
, waitingTextClass :: String
| Options
)
...
...
@@ -67,4 +68,12 @@ component = R.hooksComponent componentName cpt where
, "aria-valuemax": "100"
}
[]
,
H.div
{ className: intercalate " "
[ "progress-text"
, props.waitingTextClass
]
}
[ H.text "Waiting task..." ]
]
src/Gargantext/Components/Forest/Tree/Node.purs
View file @
7042c889
...
...
@@ -702,5 +702,6 @@ taskProgressCpt = here.component "progress" cpt where
B.progressBar
{ value: asyncProgressContext
, variant: Info
, waitingTextClass: if asyncProgressContext > 0.0 then "d-none" else "d-block"
}
]
src/sass/_legacy/_tree.sass
View file @
7042c889
...
...
@@ -266,6 +266,12 @@ $node-popup-width: 544px
height
:
$progress-bar-height
background-color
:
$white
.progress-text
color
:
$info
font-size
:
10px
line-height
:
8px
position
:
absolute
@include
right-handed
margin-left
:
space-x
(
2
)
@include
left-handed
...
...
@@ -284,7 +290,7 @@ $node-popup-width: 544px
//----------------------------
&
--selected
&
&
__node-link
:
:
before
content
:
""
background-color
:
$gray-100
...
...
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