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
142
Issues
142
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
dd211c20
Commit
dd211c20
authored
Sep 08, 2020
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[graph] fix z-index for sidebar in left/right handed view
parent
92c4b9d5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
32 deletions
+12
-32
Graph.css
dist/styles/Graph.css
+6
-2
Graph.sass
dist/styles/Graph.sass
+5
-2
purs-packages.nix
nix/purs-packages.nix
+0
-27
GraphExplorer.purs
src/Gargantext/Components/GraphExplorer.purs
+1
-1
No files found.
dist/styles/Graph.css
View file @
dd211c20
...
...
@@ -14,9 +14,12 @@
#graph-explorer
#toggle-container
{
position
:
absolute
;
z-index
:
999
;
right
:
15px
;
right
:
25%
;
top
:
10px
;
width
:
70%
;
width
:
50%
;
}
#graph-explorer
#toggle-container
.container-fluid
{
padding-top
:
90px
;
}
#graph-explorer
#controls-container
{
position
:
absolute
;
...
...
@@ -50,6 +53,7 @@
border
:
1px
white
solid
;
background-color
:
white
;
width
:
28%
;
z-index
:
15
;
}
#graph-explorer
#sp-container
#myTab
{
marginBottom
:
18px
;
...
...
dist/styles/Graph.sass
View file @
dd211c20
...
...
@@ -21,9 +21,11 @@
#toggle-container
position
:
absolute
z-index
:
999
//
needs
to
appear
above
solid
menu
bar
right
:
15px
right
:
25%
top
:
10px
width
:
70%
width
:
50%
.container-fluid
padding-top
:
90px
#controls-container
position
:
absolute
...
...
@@ -51,6 +53,7 @@
border
:
1px
white
solid
background-color
:
white
width
:
28%
z-index
:
15
#myTab
marginBottom
:
18px
...
...
nix/purs-packages.nix
View file @
dd211c20
...
...
@@ -118,24 +118,6 @@
sha256
=
"0mbpb8xr9a7a4bvawhki7js5cbv7c0lv0vdwb6r8nmv6b61gzg27"
;
};
};
"codec"
=
{
name
=
"codec"
;
version
=
"v3.0.0"
;
src
=
pkgs
.
fetchgit
{
url
=
"https://github.com/garyb/purescript-codec.git"
;
rev
=
"v3.0.0"
;
sha256
=
"0jk0j4yss3d6scyb715p926ld8rmsfnv1h85zxpywv85xdingw9w"
;
};
};
"codec-argonaut"
=
{
name
=
"codec-argonaut"
;
version
=
"v7.1.0"
;
src
=
pkgs
.
fetchgit
{
url
=
"https://github.com/garyb/purescript-codec-argonaut.git"
;
rev
=
"v7.1.0"
;
sha256
=
"13aqci36xgxbahgpcxf2hsq9nsp0ljjd7nkzvpwxhhvy4n8yk1kk"
;
};
};
"colors"
=
{
name
=
"colors"
;
version
=
"v5.0.0"
;
...
...
@@ -1072,15 +1054,6 @@
sha256
=
"03irk6n7jgsimhp9ckrg2ns7qbc8d383ls3sslxgir5mr8xdc44g"
;
};
};
"variant"
=
{
name
=
"variant"
;
version
=
"v6.0.1"
;
src
=
pkgs
.
fetchgit
{
url
=
"https://github.com/natefaubion/purescript-variant.git"
;
rev
=
"v6.0.1"
;
sha256
=
"0cn227q57zbqm6r1aw5kvnp1x8zkc1x7wx28yyz311lmy7k1mkql"
;
};
};
"versions"
=
{
name
=
"versions"
;
version
=
"v5.0.1"
;
...
...
src/Gargantext/Components/GraphExplorer.purs
View file @
dd211c20
...
...
@@ -187,7 +187,7 @@ explorerCpt = R2.hooksComponent thisModule "explorer" cpt
mainLayout Types.LeftHanded (tree' /\ gc /\ gv /\ sdb) = [sdb, gc, gv, tree']
outer = RH.div { className: "col-md-12" }
inner h = RH.div { className: "container-fluid " <> hClass
, style: { paddingTop: "90px" }
}
inner h = RH.div { className: "container-fluid " <> hClass }
where
hClass = case h of
Types.LeftHanded -> "lefthanded"
...
...
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