Commit 656fff60 authored by Przemyslaw Kaminski's avatar Przemyslaw Kaminski

[Graph] Sidebar (added checkboxes)

parent 61bed3f7
...@@ -22,5 +22,9 @@ ...@@ -22,5 +22,9 @@
borderBottom: 1px solid black; borderBottom: 1px solid black;
paddingBottom: 19px; paddingBottom: 19px;
} }
#graph-explorer #sp-container #horizontal-checkbox ul {
display: inline;
float: left;
}
/*# sourceMappingURL=Graph.css.map */ /*# sourceMappingURL=Graph.css.map */
...@@ -21,3 +21,8 @@ ...@@ -21,3 +21,8 @@
#myTabContent #myTabContent
borderBottom: 1px solid black borderBottom: 1px solid black
paddingBottom : 19px paddingBottom : 19px
#horizontal-checkbox
ul
display: inline
float : left
...@@ -24,7 +24,7 @@ sidebarCpt = R.hooksComponent "Sidebar" cpt ...@@ -24,7 +24,7 @@ sidebarCpt = R.hooksComponent "Sidebar" cpt
RH.div { id: "sp-container" RH.div { id: "sp-container"
, className: "col-md-2" } , className: "col-md-2" }
[ [
RH.div {id: "sp-container"} RH.div {}
[ [
RH.div { className: "row" } RH.div { className: "row" }
[ [
...@@ -64,6 +64,45 @@ sidebarCpt = R.hooksComponent "Sidebar" cpt ...@@ -64,6 +64,45 @@ sidebarCpt = R.hooksComponent "Sidebar" cpt
] ]
] ]
] ]
, RH.div { className: "col-md-12"
, id: "horizontal-checkbox" }
[
RH.ul {}
[
RH.li {}
[
RH.span {} [ RH.text "Pubs" ]
, RH.input { type: "checkbox"
, className: "checkbox"
, checked: true
, title: "Mark as completed" }
]
, RH.li {}
[
RH.span {} [ RH.text "Projects" ]
, RH.input { type: "checkbox"
, className: "checkbox"
, checked: true
, title: "Mark as completed" }
]
, RH.li {}
[
RH.span {} [ RH.text "Patents" ]
, RH.input { type: "checkbox"
, className: "checkbox"
, checked: true
, title: "Mark as completed" }
]
, RH.li {}
[
RH.span {} [ RH.text "Others" ]
, RH.input { type: "checkbox"
, className: "checkbox"
, checked: true
, title: "Mark as completed" }
]
]
]
] ]
] ]
] ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment