Ticket #1002211: Create Help pane for Bizidium - fix the css styling for help panel
This commit is contained in:
parent
5219160e32
commit
505d1e7741
|
@ -113,7 +113,7 @@ public class HelpController
|
||||||
public void renderToolTip(GridField field)
|
public void renderToolTip(GridField field)
|
||||||
{
|
{
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("<html>\n<body>\n<div class=\"content\">\n");
|
sb.append("<html>\n<body>\n<div class=\"help-content\">\n");
|
||||||
|
|
||||||
if (field != null)
|
if (field != null)
|
||||||
{
|
{
|
||||||
|
@ -155,7 +155,7 @@ public class HelpController
|
||||||
pnlContextHelp.setTitle(ctxType.equals(X_AD_CtxHelp.CTXTYPE_Home) ? Msg.getMsg(Env.getCtx(), "GettingStarted") : Msg.getMsg(Env.getCtx(), "HowTo"));
|
pnlContextHelp.setTitle(ctxType.equals(X_AD_CtxHelp.CTXTYPE_Home) ? Msg.getMsg(Env.getCtx(), "GettingStarted") : Msg.getMsg(Env.getCtx(), "HowTo"));
|
||||||
|
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("<html>\n<body>\n<div class=\"content\">\n");
|
sb.append("<html>\n<body>\n<div class=\"help-content\">\n");
|
||||||
|
|
||||||
String ctxHelpMsg = getCtxHelpMsgList(ctxType, recordId);
|
String ctxHelpMsg = getCtxHelpMsgList(ctxType, recordId);
|
||||||
if (ctxHelpMsg.length() > 0)
|
if (ctxHelpMsg.length() > 0)
|
||||||
|
|
|
@ -1213,7 +1213,7 @@ tbody.z-grid-empty-body td {
|
||||||
filter: brightness(-30%);
|
filter: brightness(-30%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.content
|
.help-content
|
||||||
{
|
{
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
|
Loading…
Reference in New Issue