Commit f93761e8 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[DESIGN][ERGO] fix color private vs public + login

parent 6000141a
......@@ -36,7 +36,7 @@ plus showLogin =
H.button {on: {click}}
[ H.div { "type": "button"
, className: "glyphicon glyphicon-plus"
} [] ]
} [H.text "Login"] ]
-- TODO same as the one in the Login Modal (same CSS)
-- [ H.i { className: "material-icons md-36"} [] ]
where
......
......@@ -127,9 +127,10 @@ fldr nt open = if open
then "glyphicon glyphicon-folder-open" <> color nt
else "glyphicon glyphicon-folder-close" <> color nt
where
color FolderPublic = " text-danger"
color NodeUser = ""
color FolderPublic = ""
color FolderShared = " text-warning"
color _ = ""
color _ = " text-danger"
-- START node text
......
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