- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-09-2018 12:50 PM
Hi,
How to create Box lines around STATE , CREATED IN Approval fields in Widget Approval Info
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-09-2018 03:14 PM
You could try to put something like this in your page CSS attribute if you want to avoid modifying the widget itself. However, this can easily break with any future upgrades, since nobody can guarantee the DOM structure. Another option might be to modify the widget itself and put the border around it.
.panel-body form.form-horizontal > div:first-child {
border: 1px solid;
padding: 5px;
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-09-2018 03:14 PM
You could try to put something like this in your page CSS attribute if you want to avoid modifying the widget itself. However, this can easily break with any future upgrades, since nobody can guarantee the DOM structure. Another option might be to modify the widget itself and put the border around it.
.panel-body form.form-horizontal > div:first-child {
border: 1px solid;
padding: 5px;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-09-2018 03:39 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-10-2018 06:26 AM
can i expect any updates please

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-11-2018 04:09 AM
This one seems to require cloning the approval record widget itself.
E.g. simple usage of panel
<div ng-if="data.variables.length > 0" ng-init="variable_toggle=true">
<h4 ng-click="variable_toggle = !variable_toggle" style="cursor: pointer;">
<span class="glyphicon" ng-class="{'glyphicon-chevron-down': !variable_toggle, 'glyphicon-chevron-up': variable_toggle}"></span> ${Options}
</h4>
<div class="panel panel-default" ng-if="variable_toggle">
<div class="panel-body">
<div ng-repeat="variable in data.variables | filter:{visible_summary:true}" ng-if="variable_toggle">
<label>{{::variable.label}}</label>
<div>{{::variable.display_value}}</div>
</div>
</div>
</div>
</div>
can produce something like this.