Highlighted Column in Report based Condition in Oracle APEX
page level Inline CSS
.chip{
padding:4px 10px;
border-radius:16px;
box-shadow:0 1px 2px 0 rgba(0,0,0,.05);
}
.chip-success{
background: #cdffe0;
color: #00592e;
}
.chip-danger{
background: #ffebeb;
color: #a50000;
}
.chip-warning{
background: #fffedc;
color: #764400;
}
.chip-primary{
background: #cdffe0;
color: #004f95;
}
CASE R.IS_CONFIRM
when 'Y'
then '<span class="chip chip-success">Approved </span>'
else '<span class="chip chip-danger">Cancled </span>'
end
IS_CONFIRM
Comments
Post a Comment