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
3f39fafc
Commit
3f39fafc
authored
4 years ago
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FIX] frame fix for FF (need fix for chrom*)
parent
64621176
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
18 deletions
+17
-18
Login.css
dist/styles/Login.css
+2
-1
Login.sass
dist/styles/Login.sass
+2
-1
Frame.purs
...text/Components/Forest/Tree/Node/Action/Search/Frame.purs
+4
-4
SearchField.purs
...omponents/Forest/Tree/Node/Action/Search/SearchField.purs
+1
-2
Upload.purs
...Gargantext/Components/Forest/Tree/Node/Action/Upload.purs
+1
-1
Tools.purs
src/Gargantext/Components/Forest/Tree/Node/Tools.purs
+7
-9
No files found.
dist/styles/Login.css
View file @
3f39fafc
...
...
@@ -78,9 +78,10 @@ li#rename #rename-a {
background-color
:
white
;
border
:
none
;
}
#node-popup-tooltip
.popup-container
.
istex
-search.panel
{
#node-popup-tooltip
.popup-container
.
frame
-search.panel
{
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.2
);
box-shadow
:
0
2px
5px
rgba
(
0
,
0
,
0
,
0.2
);
height
:
600px
;
width
:
1300px
;
}
...
...
This diff is collapsed.
Click to expand it.
dist/styles/Login.sass
View file @
3f39fafc
...
...
@@ -70,9 +70,10 @@ li#rename
justify-content
:
center
background-color
:
white
border
:
none
.
istex
-search.panel
.
frame
-search.panel
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0
.2
)
box-shadow
:
0
2px
5px
rgba
(
0
,
0
,
0
,
0
.2
)
height
:
600px
width
:
1300px
...
...
This diff is collapsed.
Click to expand it.
src/Gargantext/Components/Forest/Tree/Node/Action/Search/Frame.purs
View file @
3f39fafc
...
...
@@ -23,12 +23,12 @@ searchIframes :: R.State Search
-> R.Element
searchIframes search@(search' /\ _) iframeRef =
if isIsTex_Advanced search'.datafield then
H.div { className: "
istex
-search panel panel-default" }
[ iframeWith "https://istex.gargantext.org" search iframeRef ]
H.div { className: "
frame
-search panel panel-default" }
[ iframeWith "https://istex.
frame.
gargantext.org" search iframeRef ]
else
if Just Web == search'.datafield then
H.div { className: "
istex
-search panel panel-default" }
[ iframeWith "https://searx.gargantext.org" search iframeRef ]
H.div { className: "
frame
-search panel panel-default" }
[ iframeWith "https://searx.
frame.
gargantext.org" search iframeRef ]
else
H.div {} []
...
...
This diff is collapsed.
Click to expand it.
src/Gargantext/Components/Forest/Tree/Node/Action/Search/SearchField.purs
View file @
3f39fafc
...
...
@@ -83,8 +83,7 @@ searchFieldComponent = R.hooksComponent "G.C.S.SearchField" cpt
]
]
let footer = H.div {className: "flex-center"}
[submitButton {onSearch, search, session: props.session}]
let footer = submitButton {onSearch, search, session: props.session}
pure $ panel body footer
...
...
This diff is collapsed.
Click to expand it.
src/Gargantext/Components/Forest/Tree/Node/Action/Upload.purs
View file @
3f39fafc
...
...
@@ -154,7 +154,7 @@ uploadButtonCpt = R.hooksComponent "G.C.F.T.N.A.U.uploadButton" cpt
where
disabled = case mFile of
Nothing -> "1"
Just _ -> ""
Just _
-> ""
onClick e = do
let {name, contents} = unsafePartial $ fromJust mFile
...
...
This diff is collapsed.
Click to expand it.
src/Gargantext/Components/Forest/Tree/Node/Tools.purs
View file @
3f39fafc
...
...
@@ -179,18 +179,16 @@ formButton nodeType setNodeType =
------------------------------------------------------------------------
------------------------------------------------------------------------
submitButton :: Action -> (Action -> Aff Unit) -> R.Element
submitButton action dispatch =
H.button { className : "btn btn-primary fa fa-" <> icon action
, type: "button"
, style : { width: "50%" }
, id: S.toLower $ show action
, title: show action
, on: {click: \_ -> launchAff $ dispatch action}
}
[ H.text $ " " <> text action]
, type: "button"
, style : { width: "50%" }
, id: S.toLower $ show action
, title: show action
, on: {click: \_ -> launchAff $ dispatch action}
}
[ H.text $ " " <> text action]
type Href = String
...
...
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