summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorertopogo <erwin.t.pombett@gmail.com>2026-02-22 19:57:54 +0100
committerertopogo <erwin.t.pombett@gmail.com>2026-02-22 19:57:54 +0100
commit27e9f08e863e9ca22c1244f3cb24150142571334 (patch)
tree7e6cdeb4c2043cf17fc833a0c841303974c45f9e /server
parentc0dac6503789e8c3f2c111cef0d4d0ebeb624ea9 (diff)
Application:correction de la visibilité des diagrames de séquence sous flux
Diffstat (limited to 'server')
-rw-r--r--server/public/index.html18
1 files changed, 15 insertions, 3 deletions
diff --git a/server/public/index.html b/server/public/index.html
index c903ecf..0edebe2 100644
--- a/server/public/index.html
+++ b/server/public/index.html
@@ -215,7 +215,7 @@
.diagram-wrapper svg {
width: auto !important;
height: auto !important;
- min-width: 1200px;
+ min-width: 600px;
max-width: none;
}
@@ -314,10 +314,11 @@
reseau: 'Reseau',
vms: 'Machines Virtuelles',
iam: 'IAM / Identite',
- applications: 'Applications'
+ applications: 'Applications',
+ flux: 'Flux AuthN/AuthZ'
};
- const CATEGORY_ORDER = ['macro', 'reseau', 'vms', 'iam', 'applications'];
+ const CATEGORY_ORDER = ['macro', 'reseau', 'vms', 'iam', 'applications', 'flux'];
let currentSchema = null;
let currentZoom = 1;
@@ -341,6 +342,17 @@
padding: 25,
wrappingWidth: 200
},
+ sequence: {
+ useMaxWidth: false,
+ mirrorActors: false,
+ messageAlign: 'center',
+ wrap: true,
+ width: 200,
+ boxMargin: 10,
+ noteMargin: 10,
+ messageMargin: 35,
+ actorMargin: 50
+ },
fontSize: 14,
themeVariables: getTheme() === 'dark'
? { primaryColor: '#4a90d9', primaryTextColor: '#c0caf5', lineColor: '#5c6bc0', secondaryColor: '#292e42', tertiaryColor: '#1f2029' }