[overlord-commits] Overlord SVN: r944 - in bpm-console/trunk/gui/war: src/main/java/org/jboss/bpm/console/client and 3 other directories.

overlord-commits at lists.jboss.org overlord-commits at lists.jboss.org
Mon Feb 1 11:12:36 EST 2010


Author: heiko.braun at jboss.com
Date: 2010-02-01 11:12:35 -0500 (Mon, 01 Feb 2010)
New Revision: 944

Added:
   bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/public/
   bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/public/console.css
Removed:
   bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/Application.java
   bpm-console/trunk/gui/war/war/console.css
Modified:
   bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/Application.gwt.xml
   bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/ErraiApplication.java
   bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/LoginView.java
   bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/report/ReportFrame.java
   bpm-console/trunk/gui/war/war/app.html
Log:
Fix console.css inclusion

Modified: bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/Application.gwt.xml
===================================================================
--- bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/Application.gwt.xml	2010-02-01 11:56:44 UTC (rev 943)
+++ bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/Application.gwt.xml	2010-02-01 16:12:35 UTC (rev 944)
@@ -64,7 +64,7 @@
 
     <servlet path="/xhp" class="jmaki.xhp.XmlHttpProxyServlet"/>
 
-    <!-- Specify a css to load into your gwt application -->
-    <stylesheet src='/console.css' />
+    <!-- Specify a css to load into your gwt application -->    
+    <stylesheet src="console.css"/>
 
 </module>

Deleted: bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/Application.java
===================================================================
--- bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/Application.java	2010-02-01 11:56:44 UTC (rev 943)
+++ bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/Application.java	2010-02-01 16:12:35 UTC (rev 944)
@@ -1,64 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.bpm.console.client;
-
-import com.allen_sauer.gwt.log.client.Log;
-import com.google.gwt.core.client.EntryPoint;
-import com.google.gwt.user.client.Command;
-import com.google.gwt.user.client.DeferredCommand;
-import com.mvc4g.client.Controller;
-import com.mvc4g.client.Event;
-
-/**
- * Setup the main {@link com.mvc4g.client.Controller} and fire
- * a login event.
- * 
- * @author Heiko.Braun <heiko.braun at jboss.com>
- */
- at Deprecated
-public class Application implements EntryPoint
-{
-
-  public void onModuleLoad() {
-    Log.setUncaughtExceptionHandler();
-
-    DeferredCommand.addCommand(new Command() {
-      public void execute() {
-
-        // hide spash image
-        // move the loading div to background
-        //DOM.getElementById("splash_loading").getStyle().setProperty("display", "none");
-        //DOM.getElementById("splash").getStyle().setProperty("z-index", "-1");
-
-        onModuleLoad2();
-      }
-    });
-  }
-  
-  public void onModuleLoad2()
-  {
-    Controller mainController = new com.mvc4g.client.Controller();
-    mainController.addAction("login", new LoginAction());
-    mainController.addView("loginView", new LoginView());
-    mainController.handleEvent(new Event("login", null));    
-  }
-}

Modified: bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/ErraiApplication.java
===================================================================
--- bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/ErraiApplication.java	2010-02-01 11:56:44 UTC (rev 943)
+++ bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/ErraiApplication.java	2010-02-01 16:12:35 UTC (rev 944)
@@ -25,6 +25,7 @@
 import com.google.gwt.core.client.EntryPoint;
 import com.google.gwt.core.client.GWT;
 import com.google.gwt.user.client.Command;
+import com.google.gwt.user.client.DOM;
 import com.google.gwt.user.client.DeferredCommand;
 import com.mvc4g.client.Controller;
 import com.mvc4g.client.Event;
@@ -57,8 +58,8 @@
 
         // hide splash image
         // move the loading div to background
-        //DOM.getElementById("splash_loading").getStyle().setProperty("display", "none");
-        //DOM.getElementById("splash").getStyle().setProperty("z-index", "-1");
+        DOM.getElementById("splash_loading").getStyle().setProperty("display", "none");
+        DOM.getElementById("splash").getStyle().setProperty("zIndex", "-1");
 
         onModuleLoad2();
       }

Modified: bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/LoginView.java
===================================================================
--- bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/LoginView.java	2010-02-01 11:56:44 UTC (rev 943)
+++ bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/LoginView.java	2010-02-01 16:12:35 UTC (rev 944)
@@ -23,11 +23,10 @@
 
 import com.google.gwt.core.client.GWT;
 import com.google.gwt.core.client.RunAsyncCallback;
+import com.google.gwt.event.dom.client.ClickEvent;
+import com.google.gwt.event.dom.client.ClickHandler;
 import com.google.gwt.http.client.*;
-import com.google.gwt.user.client.Command;
-import com.google.gwt.user.client.Cookies;
-import com.google.gwt.user.client.DeferredCommand;
-import com.google.gwt.user.client.WindowCloseListener;
+import com.google.gwt.user.client.*;
 import com.google.gwt.user.client.ui.*;
 import com.mvc4g.client.Controller;
 import com.mvc4g.client.ViewInterface;
@@ -130,8 +129,8 @@
                         public void execute()
                         {
                           // move the loading div to foreground
-                          //DOM.getElementById("splash").getStyle().setProperty("z-index", "1000");
-                          //DOM.getElementById("ui_loading").getStyle().setProperty("visibility", "visible");
+                          DOM.getElementById("splash").getStyle().setProperty("zIndex", "1000");
+                          DOM.getElementById("ui_loading").getStyle().setProperty("visibility", "visible");
 
                           // launch workspace
                           GWT.runAsync(
@@ -163,7 +162,7 @@
                                   // and finally initialize the workspace UI
 
                                   Registry.get(SecurityService.class).setDeferredNotification(false);
-                                  
+
                                   MessageBuilder.createMessage()
                                       .toSubject("AuthorizationListener")
                                       .signalling()
@@ -171,7 +170,27 @@
                                       .with(SecurityParts.Roles, roleString.toString())
                                       .noErrorHandling()
                                       .sendNowWith(ErraiBus.get()
-                                      );                                  
+                                      );
+
+                                  Timer t = new Timer() {
+
+                                    public void run()
+                                    {
+                                      // hide the loading div
+                                      DeferredCommand.addCommand(
+                                          new Command()
+                                          {
+                                            public void execute()
+                                            {
+                                              DOM.getElementById("ui_loading").getStyle().setProperty("visibility", "hidden");
+                                              DOM.getElementById("splash").getStyle().setProperty("visibility", "hidden");
+                                            }
+                                          });
+
+                                    }
+                                  };
+                                  t.schedule(2000);
+
                                 }
                               }
                           );
@@ -218,24 +237,22 @@
    * The 'layout' window panel.
    */
   private void createLayoutWindowPanel() {
-    window = new WindowPanel(config.getProfileName());
+    window = new WindowPanel(config.getProfileName(), false);    
     window.setAnimationEnabled(true);
-    //window.setSize("320px", "180px");
 
     MosaicPanel panel = new MosaicPanel();
 
     createLayoutContent(panel);
     window.setWidget(panel);
 
-    window.addWindowCloseListener(new WindowCloseListener() {
-      public void onWindowClosed() {
-        window = null;
-      }
-
-      public String onWindowClosing() {
-        return null;
-      }
-    });
+    window.addWindowClosingHandler(
+        new Window.ClosingHandler() {
+          public void onWindowClosing(Window.ClosingEvent event)
+          {
+            window = null;
+          }
+        }
+    );
   }
 
   /**
@@ -250,11 +267,20 @@
     Widget form = createForm();
 
     final Button submit = new Button("Submit");
-    submit.addClickListener(new ClickListener()
+    submit.addClickHandler(new ClickHandler()
     {
 
-      public void onClick(Widget widget)
+      public void onClick(ClickEvent clickEvent)
       {
+        DeferredCommand.addCommand(
+            new Command()
+            {
+              public void execute()
+              {
+                window.hide();
+              }
+            });
+
         engageLogin();
       }
     });

Modified: bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/report/ReportFrame.java
===================================================================
--- bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/report/ReportFrame.java	2010-02-01 11:56:44 UTC (rev 943)
+++ bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/report/ReportFrame.java	2010-02-01 16:12:35 UTC (rev 944)
@@ -49,6 +49,7 @@
     // report frame
     frame = new Frame();
     DOM.setStyleAttribute(frame.getElement(), "border", "none");
+    DOM.setStyleAttribute(frame.getElement(), "backgroundColor", "#ffffff");
     this.add(frame);
   }
 

Added: bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/public/console.css
===================================================================
--- bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/public/console.css	                        (rev 0)
+++ bpm-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/public/console.css	2010-02-01 16:12:35 UTC (rev 944)
@@ -0,0 +1,370 @@
+body {
+    height: 100%;
+    overflow: hidden;
+    margin: 0;
+    padding: 0;
+}
+
+.bpm-layout {
+  border: 1px solid green;
+  margin: 10px;
+}
+
+.bpm-header{
+  background-color:#ffffff;
+}
+
+.bpm-lazy-header {
+  height:35px;
+  margin-bottom:5px;
+  border:1px solid black;
+}
+
+.bpm-header-left {
+  background-color:#ffffff;
+  vertical-align:bottom;
+  margin-left:15px;
+}
+
+.bpm-header-right {
+  background-color:#ffffff;
+  vertical-align:bottom;
+  margin-right:15px;
+}
+
+.bpm-label-header {
+  background-color:#F8F8F8;
+  font-weight:BOLD;
+  font-size:14px;
+  color:#989898;
+  padding-bottom:2px;
+  padding-left:5px;
+  margin-bottom:5px;
+}
+
+.bpm-label-header-invert {
+  background-color:#F8F8F8;
+  font-weight:bold;
+  font-size:14px;
+  padding-bottom:2px;
+  padding-left:5px;
+  margin-bottom:10px;
+}
+
+.bpm-headline {
+  font-weight:BOLD;
+  font-size:14px;
+  padding:10px;
+}
+
+.bpm-header-userinfo {
+  font-family: sans-serif;
+  width:150px;
+}
+
+.bpm-header-versioninfo {
+  font-family: sans-serif;
+  color: #C8C8C8;
+}
+
+.bpm-login-info {
+  font-family: sans-serif;
+  color: #000000;
+  font-size:9px;
+  width:95%;
+  margin-top:5px;
+  text-align:right;
+}
+
+.bpm-user-info-popup {
+  font-family: sans-serif;
+  color: #000000;
+  font-size:9px;
+  margin:5px;
+}
+
+.bpm-property-image {
+  padding-top:10px;
+}
+
+.bpm-filter-panel {
+  padding-top:5px;
+  padding-right:2px;
+  background-color:#dfe8f6;
+  border-bottom: 1px solid #bbbbbb;
+}
+
+.bpm-editor-info {
+  font-family: sans-serif;
+  font-size:18px;
+}
+
+.bpm-editor-header {
+  font-family: sans-serif;
+  background-color: #E0E0E0;
+}
+
+.bpm-menu {
+  height: 50px;
+  width: 100%;
+  border: 1px solid;
+}
+
+.bpm-workspace {
+  width: 100%;
+  height:100%;
+}
+
+.bpm-label {
+  font-family: sans-serif;
+  font-size: small;
+}
+
+.bpm-ListHeaderRow {
+  font-weight: bold;
+}
+
+.bpm-EvenRow {
+  background-color: #f0f4f8;
+}
+
+.bpm-FieldValue {
+
+}
+
+.bpm-EditorHeader {
+
+}
+
+.bpm-loading-color {
+  background-color:#FF6600;
+}
+
+.bpm-loading-image {
+  background-color:#ffffff;
+  width:43px;
+  height:11px;
+}
+
+.bpm-ProcessImage {
+  border: 0px;
+}
+
+.bpm-SplitPanel {
+  border: 1px dashed green;
+  vertical-align: top;
+  position:relative; top:5px; left:5px;
+}
+
+.piechart-types {
+  font-size: small;
+  list-style-type:decimal;
+  font-family: sans-serif;
+}
+
+.bpm-help-panel {
+  background-color:#F0F0F0;
+  font-family: sans-serif;
+  font-size: small;
+}
+
+.bpm-help-icon {
+  background-image: url( images/icons/14.png)
+}
+
+.bpm-report-icon {
+  background-image: url( images/icons/31.png)
+}
+
+.bpm-process-icon {
+  background-image: url( images/icons/41.png)
+}
+
+.bpm-task-icon {
+  background-image: url( images/icons/29.png)
+}
+
+.bpm-instance-icon {
+  background-image: url( images/icons/05_1.png)
+}
+
+.bpm-settings-icon {
+
+}
+
+.bpm-operation-ui {
+  font-size: 10px;
+}
+
+.bpm-tools-icon {
+  background-image: url( images/icons/36.png)
+}
+
+.bpm-switch-context-icon {
+  background-image: url( images/icons/13.png)
+}
+
+.bpm-comment-icon {
+  background-image: url( images/icons/27.png)
+}
+
+.bpm-enalrge-icon {
+  background-image: url( images/icons/49.png)
+}
+
+.login-panel-content {
+  text-align: center;
+}
+
+.bpm-examine-icon {
+  background-image: url( images/icons/examine.png)
+}
+
+.bpm-add-icon {
+  background-image: url( images/icons/add.png)
+}
+
+.bpm-lock-icon-small {
+  background-image: url( images/icons/lock_small.png)
+}
+
+.bpm-remove-icon {
+  background-image: url( images/icons/remove.png)
+}
+
+.bpm-play-icon {
+  background-image: url( images/icons/play.png)
+}
+
+.bpm-stop-icon {
+  background-image: url( images/icons/stop.png)
+}
+
+.bpm-pause-icon {
+  background-image: url( images/icons/pause.png)
+}
+
+div.activeNode {
+  position:absolute;
+  border-width:1px;
+  border-style:solid;
+  border-color:#339933;
+}
+
+div.activeNode-header {
+  position:absolute;
+  overflow:hidden;
+}
+
+div.activeNode-header-link  {
+  cursor:default;
+  font-family:sans-serif;
+  font-size:10px;
+  white-space:nowrap;
+  color:#ffffff;
+  padding-left:3px;
+  padding-right:3px;
+  border-width:1px;
+  border-style:solid;
+  border-color:#339933;
+  background-color:#339933;
+}
+
+div.activeNode-header-link a {
+  color:#ffffff;
+  text-decoration:none;
+}
+
+div.activeNode-header-link a:hover {
+  text-decoration:underline;
+}
+
+/* start - override gwt-log styles */
+.log-panel {
+  background-color: #ECF2FC;
+  border: 0px solid black;
+  margin: 0px;
+  padding:10px;
+}
+
+.log-panel .log-scroll-panel {
+  width: 100% !important;
+  height: 80px !important;
+}
+
+.log-panel .log-text-area,.log-panel BUTTON {
+  font-size: 8pt;
+  margin: 0em;
+}
+
+.log-resize-se {
+  visibility:hidden;
+}
+
+/* end - override gwt-log styles */
+
+/* start - custom widgets */
+.bpm-detail-panel {
+  border:1px solid #E8E8E8;
+}
+
+.bpm-property-box
+{
+  padding:5px;
+  width:100%;
+  border:1px solid #cccccc;
+  background: #F8F8F8;
+}
+
+.bpm-prop-grid {
+  width:100%;
+  border:1px solid #cccccc;
+}
+
+.bpm-prop-grid-even {
+  background: #F8F8F8;
+}
+
+.bpm-prop-grid-odd {
+  background:#F0F0F0;
+}
+
+.bpm-prop-grid-label {
+
+}
+
+/* end - custom widgets */
+
+.gwt-SuggestBoxPopup { z-index:100000; border: 1px solid #ffffff;}
+.gwt-SuggestBoxPopup .item { padding: 2px;}
+.gwt-SuggestBoxPopup .item-selected { background-color: #C3D9FF; padding: 1px;}
+
+.bpm-graphView-activityImage {
+  background-image: url(images/icons/play_red_big.png);
+  background-repeat:no-repeat;
+  width:16px;
+  height:16px;
+}
+
+.bpm-window-layout {
+  margin: 1px;
+}
+
+.bpm-paging-panel {
+  padding:2px;
+  font-size:8px;
+  background-color:#dfe8f6;
+  border-bottom: 1px solid #bbbbbb;
+}
+
+/* mosaic overrides */
+
+.mosaic-Label {
+  font-weight:bold;
+}
+
+.gwt-Button {
+    font-size: 10px;
+    -moz-border-radius: 3px;
+    -webkit-border-radius: 3px;
+}
\ No newline at end of file

Modified: bpm-console/trunk/gui/war/war/app.html
===================================================================
--- bpm-console/trunk/gui/war/war/app.html	2010-02-01 11:56:44 UTC (rev 943)
+++ bpm-console/trunk/gui/war/war/app.html	2010-02-01 16:12:35 UTC (rev 944)
@@ -12,8 +12,6 @@
   <!--                                           -->
   <script type="text/javascript" language="javascript" src="app/app.nocache.js"></script>
 
-  <link rel="stylesheet" href="../console.css" type="text/css">
-
   <style type="text/css">
     html { height: 100%; overflow: hidden; margin: 0; padding: 0; }
     #splash {
@@ -47,7 +45,7 @@
 <!-- OPTIONAL: include this if you want history support -->
 <!--iframe src="javascript:''" id="__gwt_historyFrame" style="width: 0; height: 0; border: 0"></iframe-->
 
-<!--div id="splash" style="height:100%;width:100%;">
+<div id="splash" style="height:100%;width:100%;">
   <table width="100%" height="100%" >
     <tr>
       <td width="100%" height="100%" align="center" valign="middle">
@@ -56,7 +54,7 @@
       </td>
     </tr>
   </table>
-</div-->
+</div>
 
 </body>
 </html>

Deleted: bpm-console/trunk/gui/war/war/console.css
===================================================================
--- bpm-console/trunk/gui/war/war/console.css	2010-02-01 11:56:44 UTC (rev 943)
+++ bpm-console/trunk/gui/war/war/console.css	2010-02-01 16:12:35 UTC (rev 944)
@@ -1,370 +0,0 @@
-body {   
-    height: 100%;
-    overflow: hidden;
-    margin: 0;
-    padding: 0;    
-}
-
-.bpm-layout {
-  border: 1px solid green;
-  margin: 10px;
-}
-
-.bpm-header{
-  background-color:#ffffff;  
-}
-
-.bpm-lazy-header {
-  height:35px;
-  margin-bottom:5px;
-  border:1px solid black;
-}
-
-.bpm-header-left {
-  background-color:#ffffff;
-  vertical-align:bottom;
-  margin-left:15px;
-}
-
-.bpm-header-right {
-  background-color:#ffffff;
-  vertical-align:bottom;
-  margin-right:15px;
-}
-
-.bpm-label-header {
-  background-color:#F8F8F8;
-  font-weight:BOLD;
-  font-size:14px;
-  color:#989898; 
-  padding-bottom:2px;
-  padding-left:5px;
-  margin-bottom:5px;
-}
-
-.bpm-label-header-invert {
-  background-color:#F8F8F8;
-  font-weight:bold;
-  font-size:14px;
-  padding-bottom:2px;
-  padding-left:5px;  
-  margin-bottom:10px;
-}
-
-.bpm-headline {
-  font-weight:BOLD;
-  font-size:14px;
-  padding:10px;
-}
-
-.bpm-header-userinfo {
-  font-family: sans-serif;
-  width:150px;
-}
-
-.bpm-header-versioninfo {
-  font-family: sans-serif;
-  color: #C8C8C8;
-}
-
-.bpm-login-info {
-  font-family: sans-serif;
-  color: #000000;
-  font-size:9px;
-  width:95%;
-  margin-top:5px;  
-  text-align:right;
-}
-
-.bpm-user-info-popup {
-  font-family: sans-serif;
-  color: #000000;
-  font-size:9px;
-  margin:5px;  
-}
-
-.bpm-property-image {
-  padding-top:10px;  
-}
-
-.bpm-filter-panel {
-  padding-top:5px;
-  padding-right:2px;
-  background-color:#dfe8f6;
-  border-bottom: 1px solid #bbbbbb;
-}
-
-.bpm-editor-info {
-  font-family: sans-serif;
-  font-size:18px;  
-}
-
-.bpm-editor-header {
-  font-family: sans-serif;
-  background-color: #E0E0E0;  
-}
-
-.bpm-menu {
-  height: 50px;
-  width: 100%;
-  border: 1px solid;
-}
-
-.bpm-workspace {
-  width: 100%;
-  height:100%;
-}
-
-.bpm-label {
-  font-family: sans-serif;
-  font-size: small;
-}
-
-.bpm-ListHeaderRow {
-  font-weight: bold;
-}
-
-.bpm-EvenRow {
-  background-color: #f0f4f8;
-}
-
-.bpm-FieldValue {
-
-}
-
-.bpm-EditorHeader {
-
-}
-
-.bpm-loading-color {
-  background-color:#FF6600;
-}
-
-.bpm-loading-image {
-  background-color:#ffffff;    
-  width:43px;
-  height:11px;
-}
-
-.bpm-ProcessImage {
-  border: 0px;
-}
-
-.bpm-SplitPanel {
-  border: 1px dashed green;
-  vertical-align: top;
-  position:relative; top:5px; left:5px;
-}
-
-.piechart-types {
-  font-size: small;
-  list-style-type:decimal;
-  font-family: sans-serif;
-}
-
-.bpm-help-panel {
-  background-color:#F0F0F0;
-  font-family: sans-serif;
-  font-size: small;
-}
-
-.bpm-help-icon {
-  background-image: url( images/icons/14.png)
-}
-
-.bpm-report-icon {
-  background-image: url( images/icons/31.png)
-}
-
-.bpm-process-icon {
-  background-image: url( images/icons/41.png)
-}
-
-.bpm-task-icon {
-  background-image: url( images/icons/29.png)
-}
-
-.bpm-instance-icon {
-  background-image: url( images/icons/05_1.png)
-}
-
-.bpm-settings-icon {
-
-}
-
-.bpm-operation-ui {
-  font-size: 10px;
-}
-
-.bpm-tools-icon {
-  background-image: url( images/icons/36.png)
-}
-
-.bpm-switch-context-icon {
-  background-image: url( images/icons/13.png)
-}
-
-.bpm-comment-icon {
-  background-image: url( images/icons/27.png)
-}
-
-.bpm-enalrge-icon {
-  background-image: url( images/icons/49.png)
-}
-
-.login-panel-content {
-  text-align: center;
-}
-
-.bpm-examine-icon {
-  background-image: url( images/icons/examine.png)
-}
-
-.bpm-add-icon {
-  background-image: url( images/icons/add.png)
-}
-
-.bpm-lock-icon-small {
-  background-image: url( images/icons/lock_small.png)
-}
-
-.bpm-remove-icon {
-  background-image: url( images/icons/remove.png)
-}
-
-.bpm-play-icon {
-  background-image: url( images/icons/play.png)
-}
-
-.bpm-stop-icon {
-  background-image: url( images/icons/stop.png)
-}
-
-.bpm-pause-icon {
-  background-image: url( images/icons/pause.png)
-}
-
-div.activeNode {
-  position:absolute;
-  border-width:1px;
-  border-style:solid;
-  border-color:#339933;
-}
-
-div.activeNode-header {
-  position:absolute;
-  overflow:hidden;
-}
-
-div.activeNode-header-link  {
-  cursor:default;
-  font-family:sans-serif;
-  font-size:10px;
-  white-space:nowrap;
-  color:#ffffff;
-  padding-left:3px;
-  padding-right:3px;
-  border-width:1px;
-  border-style:solid;
-  border-color:#339933;
-  background-color:#339933;
-}
-
-div.activeNode-header-link a {
-  color:#ffffff;
-  text-decoration:none;
-}
-
-div.activeNode-header-link a:hover {
-  text-decoration:underline;
-}
-
-/* start - override gwt-log styles */
-.log-panel {
-  background-color: #ECF2FC;
-  border: 0px solid black;
-  margin: 0px;
-  padding:10px;
-}
-
-.log-panel .log-scroll-panel {
-  width: 100% !important;
-  height: 80px !important;
-}
-
-.log-panel .log-text-area,.log-panel BUTTON {
-  font-size: 8pt;
-  margin: 0em;
-}
-
-.log-resize-se {
-  visibility:hidden;
-}
-
-/* end - override gwt-log styles */
-
-/* start - custom widgets */
-.bpm-detail-panel {
-  border:1px solid #E8E8E8;  
-}
-
-.bpm-property-box
-{
-  padding:5px;
-  width:100%;
-  border:1px solid #cccccc;
-  background: #F8F8F8;
-}
-
-.bpm-prop-grid {
-  width:100%;  
-  border:1px solid #cccccc;
-}
-
-.bpm-prop-grid-even {
-  background: #F8F8F8;  
-}
-
-.bpm-prop-grid-odd {
-  background:#F0F0F0;
-}
-
-.bpm-prop-grid-label {
-    
-}
-
-/* end - custom widgets */
-
-.gwt-SuggestBoxPopup { z-index:100000; border: 1px solid #ffffff;}
-.gwt-SuggestBoxPopup .item { padding: 2px;}
-.gwt-SuggestBoxPopup .item-selected { background-color: #C3D9FF; padding: 1px;}
-
-.bpm-graphView-activityImage {
-  background-image: url(images/icons/play_red_big.png);
-  background-repeat:no-repeat;
-  width:16px;
-  height:16px;
-}
-
-.bpm-window-layout {  
-  margin: 1px;
-}
-
-.bpm-paging-panel {
-  padding:2px;
-  font-size:8px;
-  background-color:#dfe8f6;
-  border-bottom: 1px solid #bbbbbb;  
-}
-
-/* mosaic overrides */
-
-.mosaic-Label {
-  font-weight:bold;
-}
-
-.gwt-Button {
-    font-size: 10px;
-    -moz-border-radius: 3px;
-    -webkit-border-radius: 3px;
-}
\ No newline at end of file



More information about the overlord-commits mailing list