diff options
author | Loïc Collignon <loic.collignon@iot.bzh> | 2017-12-19 17:15:55 +0100 |
---|---|---|
committer | Loïc Collignon <loic.collignon@iot.bzh> | 2017-12-19 17:15:55 +0100 |
commit | 4f87bf2d5e0154df8b063948a80d90d614a83252 (patch) | |
tree | aee213912c7972ff8913753264f97b4c0734679c /agl-identity-service/htdocs/identity/binding-debug.css | |
parent | 4d710564d4ba6ed525ad05fea03310857abd4d63 (diff) |
added a fake auth verb for testing purpose and use persistence api to store user profile.
Change-Id: Ifc38f01664dec91150ca7574e4263ee0bc755653
Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'agl-identity-service/htdocs/identity/binding-debug.css')
-rw-r--r-- | agl-identity-service/htdocs/identity/binding-debug.css | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/agl-identity-service/htdocs/identity/binding-debug.css b/agl-identity-service/htdocs/identity/binding-debug.css new file mode 100644 index 0000000..f41c940 --- /dev/null +++ b/agl-identity-service/htdocs/identity/binding-debug.css @@ -0,0 +1,61 @@ +#debug-panel { + float: right; +} + +#debug-panel.collapsed { + background-color: transparent; + overflow-x: hidden; +} + +#debug-panel.expanded { + background-color: lightyellow; + max-width: 25%; + overflow-x: scroll; +} + +#debug-panel.collapsed > #debug-panel-collapse { + display: none; +} + +#debug-panel.expanded > #debug-panel-collapse { + display: block; +} + +#debug-panel.collapsed > #debug-panel-expand { + display: block; +} + +#debug-panel.expanded > #debug-panel-expand { + display: none; +} + +#debug-panel.expanded > #debug-panel-content { + display: block; +} + +#debug-panel.collapsed > #debug-panel-content { + display: none; +} + +.json-key { + color: cornflowerblue; + font-weight: bold; +} + +.json-string { + color: crimson; +} + +.json-number { + color: sandybrown; +} + +.json-boolean { + color: fuchsia; + font-weight: bold; +} + +.json-null { + color: black; + font-weight: bold; +} |