Merge "Improve the loop logs view"
[clamp.git] / src / main / resources / META-INF / resources / designer / modeler / dist / index.html
index ead478a..ab337de 100644 (file)
   ===================================================================
   
   -->
+<style>
+.ERROR{color: red;}
+.WARNING{color: orange;}
+.INFO{color: green;}
+</style>
 
 <html>
 <head>
                        </div>
                </div>
 
-               <div class="canvas" id="js-canvas" style="margin-top: 100px">
+               <div class="canvas" id="js-canvas" style="margin-top: 100px; margin-left: 20px;">
+                       <div id="loop-content">
+                       </div>
+               
                        <label for="loop-log-div" class="col-sm-4 control-label">Loop Logs</label>
-                       <div id="loop-log-div" style="border: 2px solid gray;height: 20vh">
+                       <div id="loop-log-div" style="border: 2px solid gray;height: 20vh; margin-right: 40px;">
                                <div id="loop-log-table-scroll" style="width: 100%;height: 87%;overflow: auto;margin-top: 20px;">
                                        <table id="loop-log-table" style="width: 100%">
                                                <thead>
@@ -57,9 +65,9 @@
                                                </thead>
                                                <tbody>
                                                        <tr ng-repeat="log in loop_logs" ng-class="{reverse: reverse}">
-                                                               <td>{{log.logInstant}}</td>
-                                                               <td>{{log.logType}}</td>
-                                                               <td>{{log.message}}</td>
+                                                               <td width="20%">{{log.logInstant}}</td>
+                                                               <td width="10%" ng-class="log.logType">{{log.logType}}</td>
+                                                               <td width="70">{{log.message}}</td>
                                                        </tr>
                                                </tbody>
                                        </table>
@@ -67,6 +75,7 @@
                        </div>
                </div>
 
+
        </div>
 </body>