Partial fix for FELIX-2286 /Various rendering issues with IE/
https://issues.apache.org/jira/browse/FELIX-2286
fixes component and services plugins
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@934380 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/resources/templates/components.html b/webconsole/src/main/resources/templates/components.html
index b995d31..a574b3e 100644
--- a/webconsole/src/main/resources/templates/components.html
+++ b/webconsole/src/main/resources/templates/components.html
@@ -5,9 +5,6 @@
var scrData = ${__data__};
// i18n
var i18n = {
- 'Enable' : '${scr.action.enable}',
- 'Disable' : '${scr.action.disable}',
- 'Configure' : '${scr.action.configure}',
'Bundle' : '${scr.prop.bundle}',
'Default State' : '${scr.prop.defstate}',
'Activation' : '${scr.prop.activation}',
@@ -41,7 +38,20 @@
</tr>
</thead>
<tbody>
- <tr><td colspan="4"> </td></tr>
+ <tr>
+ <td> </td> <!-- id -->
+ <td> <!-- name with arrow -->
+ <div class="bIcon ui-icon ui-icon-triangle-1-e" style="float:left" title="${scr.details.tip}"> </div>
+ </td>
+ <td> </td> <!-- status -->
+ <td>
+ <ul class="icons">
+ <li class="dynhover ui-helper-hidden" title="${scr.action.enable}"><span class="ui-icon ui-icon-play"> </span></li>
+ <li class="dynhover ui-helper-hidden" title="${scr.action.disable}"><span class="ui-icon ui-icon-stop"> </span></li>
+ <li class="dynhover ui-helper-hidden" title="${scr.action.configure}"><span class="ui-icon ui-icon-wrench"> </span></li>
+ </ul>
+ </td>
+ </tr>
</tbody>
</table>
</div> <!-- end data available -->