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
b4f21c5f
Commit
b4f21c5f
authored
Mar 14, 2020
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[tree] fixes to tree icon styling (use flex)
parent
9e975cf6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
45 deletions
+38
-45
Login.css
dist/styles/Login.css
+14
-15
Login.sass
dist/styles/Login.sass
+16
-17
Box.purs
src/Gargantext/Components/Forest/Tree/Node/Box.purs
+8
-13
No files found.
dist/styles/Login.css
View file @
b4f21c5f
...
...
@@ -102,25 +102,24 @@ li#rename #rename-a {
min-width
:
200px
;
}
li
a
#rename
{
display
:
none
;
position
:
absolute
;
text-decoration
:
none
;
left
:
26px
;
li
.leaf
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
flex-start
;
}
li
a
#rename-leaf
{
display
:
none
;
position
:
absolute
;
text-decoration
:
none
;
margin-left
:
20px
;
cursor
:
pointer
;
z-index
:
1
;
li
.leaf
.folder-icon
{
padding
:
0
2
0
2
;
}
li
:hover
a
#rename
{
li
.leaf
a
.settings
{
cursor
:
pointer
;
display
:
block
;
padding
:
0
2
0
2
;
text-decoration
:
none
;
visibility
:
hidden
;
z-index
:
1
;
}
li
:hover
a
#rename-leaf
{
display
:
block
;
li
.leaf
:hover
a
.settings
{
visibility
:
visible
;
}
.glyphitem
{
...
...
dist/styles/Login.sass
View file @
b4f21c5f
...
...
@@ -95,26 +95,25 @@ li#rename
min-width
:
200px
li
a
#rename
display
:
none
position
:
absolute
text-decoration
:
none
left
:
26px
a
#rename-leaf
display
:
none
position
:
absolute
text-decoration
:
none
margin-left
:
20px
cursor
:
pointer
z-index
:
1
.leaf
display
:
flex
flex-direction
:
row
justify-content
:
flex-start
&
:hover
a
#rename
display
:
block
.folder-icon
padding
:
0
2
0
2
a
#rename-leaf
a
.settings
cursor
:
pointer
display
:
block
padding
:
0
2
0
2
text-decoration
:
none
visibility
:
hidden
z-index
:
1
&
:hover
a
.settings
visibility
:
visible
.glyphitem
...
...
src/Gargantext/Components/Forest/Tree/Node/Box.purs
View file @
b4f21c5f
...
...
@@ -76,14 +76,6 @@ nodeMainSpan p@{ dispatch, folderOpen, frontends, session } = R.createElement el
pure $ H.span (dropProps droppedFile isDragOver) $
[ folderIcon nodeType folderOpen
, H.a { href: (url frontends (GT.NodePath (sessionId session) nodeType (Just id)))
, style: { marginLeft: case nodeType of
NodeUser -> "1rem"
_ -> "22px"
}
}
[ nodeText { isSelected: (mCorpusId mCurrentRoute) == (Just id)
, name: name' props} ]
, if showBox then
Popover.popover { open: false
, onClose: \_ -> pure unit
...
...
@@ -93,6 +85,10 @@ nodeMainSpan p@{ dispatch, folderOpen, frontends, session } = R.createElement el
, mNodePopupView props (onPopoverClose popoverRef)
]
else H.div {} []
, H.a { href: (url frontends (GT.NodePath (sessionId session) nodeType (Just id)))
}
[ nodeText { isSelected: (mCorpusId mCurrentRoute) == (Just id)
, name: name' props} ]
, fileTypeView {dispatch, droppedFile, id, isDragOver, nodeType}
, H.div {} (map (\t -> asyncProgressBar { asyncTask: t
, corpusId: id
...
...
@@ -107,13 +103,12 @@ nodeMainSpan p@{ dispatch, folderOpen, frontends, session } = R.createElement el
name' {name, nodeType} = if nodeType == GT.NodeUser then show session else name
folderIcon nodeType folderOpen'@(open /\ _) =
H.a {onClick: R2.effToggler folderOpen'}
H.a { className: "folder-icon"
, onClick: R2.effToggler folderOpen' }
[ H.i {className: GT.fldr nodeType open} [] ]
popOverIcon =
H.a { className: "glyphicon glyphicon-cog"
, id: "rename-leaf"
} []
H.a { className: "settings fa fa-cog" } []
mNodePopupView props@{asyncTasks, id, nodeType} onPopoverClose =
nodePopupView { id
...
...
@@ -125,7 +120,7 @@ nodeMainSpan p@{ dispatch, folderOpen, frontends, session } = R.createElement el
}
dropProps droppedFile isDragOver =
{ className:
dropClass droppedFile isDragOver
{ className:
"leaf " <> (dropClass droppedFile isDragOver)
, on: { drop: dropHandler droppedFile
, dragOver: onDragOverHandler isDragOver
, dragLeave: onDragLeave isDragOver } }
...
...
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