https://github.com/flowable/flowable-engine/issues/182
In displaymodel.css you need to add (at the end)
div[class*='ui-tooltip-kisbpm-'] {
font-family: Monaco,Andale Mono,Courier New,monospace;
font-size: 11px;
white-space: pre;
}
div[class*='ui-tooltip-kisbpm-'] .qtip-content {
font-family: Monaco,Andale Mono,Courier New,monospace;
font-size: 11px;
white-space: pre;
}
.ui-tooltip-kisbpm-bpmn .qtip-titlebar {
white-space: pre;
}
.ui-tooltip-kisbpm-bpmn .qtip-tip {
white-space: pre;
}
.qtip {
max-width: 680px;
min-width: 100px;
}
and you should really have a single place for css instead of copying and pasting them around between several apps.
Might be create an overlay for maven war plugin and use it in all apps.
Thanks