[jboss-svn-commits] JBoss Portal SVN: r5249 - in trunk: core/src/bin/portal-core-war/themes/industrial core/src/bin/portal-core-war/themes/maple core/src/bin/portal-core-war/themes/mission-critical core/src/bin/portal-core-war/themes/phalanx theme/src/bin/portal-ajax-war/js/portal

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Sep 25 12:31:47 EDT 2006


Author: roy.russo at jboss.com
Date: 2006-09-25 12:31:45 -0400 (Mon, 25 Sep 2006)
New Revision: 5249

Modified:
   trunk/core/src/bin/portal-core-war/themes/industrial/portal_style.css
   trunk/core/src/bin/portal-core-war/themes/maple/portal_style.css
   trunk/core/src/bin/portal-core-war/themes/mission-critical/portal_style.css
   trunk/core/src/bin/portal-core-war/themes/phalanx/portal_style.css
   trunk/theme/src/bin/portal-ajax-war/js/portal/event.js
Log:
JBPORTAL-1056 - added dropmarker css selector for older themes

Modified: trunk/core/src/bin/portal-core-war/themes/industrial/portal_style.css
===================================================================
--- trunk/core/src/bin/portal-core-war/themes/industrial/portal_style.css	2006-09-25 16:30:17 UTC (rev 5248)
+++ trunk/core/src/bin/portal-core-war/themes/industrial/portal_style.css	2006-09-25 16:31:45 UTC (rev 5249)
@@ -966,6 +966,10 @@
    cursor: move;
 }
 
-.dragover {
-   border: 1px dashed green;
+.emptyPlaceMarker {
+   border-right: red 1px dashed;
+   border-top: red 1px dashed;
+   border-left: red 1px dashed;
+   border-bottom: red 1px dashed;
+   background-color: Transparent;
 }

Modified: trunk/core/src/bin/portal-core-war/themes/maple/portal_style.css
===================================================================
--- trunk/core/src/bin/portal-core-war/themes/maple/portal_style.css	2006-09-25 16:30:17 UTC (rev 5248)
+++ trunk/core/src/bin/portal-core-war/themes/maple/portal_style.css	2006-09-25 16:31:45 UTC (rev 5249)
@@ -979,8 +979,12 @@
    cursor: move;
 }
 
-.dragover {
-   border: 1px dashed green;
+.emptyPlaceMarker {
+   border-right: red 1px dashed;
+   border-top: red 1px dashed;
+   border-left: red 1px dashed;
+   border-bottom: red 1px dashed;
+   background-color: Transparent;
 }
 
 

Modified: trunk/core/src/bin/portal-core-war/themes/mission-critical/portal_style.css
===================================================================
--- trunk/core/src/bin/portal-core-war/themes/mission-critical/portal_style.css	2006-09-25 16:30:17 UTC (rev 5248)
+++ trunk/core/src/bin/portal-core-war/themes/mission-critical/portal_style.css	2006-09-25 16:31:45 UTC (rev 5249)
@@ -1066,6 +1066,10 @@
    cursor: move;
 }
 
-.dragover {
-   border: 1px dashed green;
+.emptyPlaceMarker {
+   border-right: red 1px dashed;
+   border-top: red 1px dashed;
+   border-left: red 1px dashed;
+   border-bottom: red 1px dashed;
+   background-color: Transparent;
 }

Modified: trunk/core/src/bin/portal-core-war/themes/phalanx/portal_style.css
===================================================================
--- trunk/core/src/bin/portal-core-war/themes/phalanx/portal_style.css	2006-09-25 16:30:17 UTC (rev 5248)
+++ trunk/core/src/bin/portal-core-war/themes/phalanx/portal_style.css	2006-09-25 16:31:45 UTC (rev 5249)
@@ -971,6 +971,10 @@
    cursor: move;
 }
 
-.dragover {
-   border: 1px dashed green;
+.emptyPlaceMarker {
+   border-right: red 1px dashed;
+   border-top: red 1px dashed;
+   border-left: red 1px dashed;
+   border-bottom: red 1px dashed;
+   background-color: Transparent;
 }

Modified: trunk/theme/src/bin/portal-ajax-war/js/portal/event.js
===================================================================
--- trunk/theme/src/bin/portal-ajax-war/js/portal/event.js	2006-09-25 16:30:17 UTC (rev 5248)
+++ trunk/theme/src/bin/portal-ajax-war/js/portal/event.js	2006-09-25 16:31:45 UTC (rev 5249)
@@ -130,7 +130,7 @@
 **/
 try
 {
-   Sortable.create("regionA", {dropOnEmpty:true,handle:'handle',hoverclass:'dragover',tag:'div',containment:["regionA","regionB"],constraint:false, ghosting: false,
+   Sortable.create("regionA", {dropOnEmpty:true,handle:'handle',tag:'div',containment:["regionA","regionB"],constraint:false, ghosting: false,
       onChange: function(el)
       {
       },
@@ -139,7 +139,7 @@
       }
    });
 
-   Sortable.create("regionB", {dropOnEmpty:true,handle:'handle',hoverclass:'dragover',tag:'div',containment:["regionA","regionB"],constraint:false, ghosting: false,
+   Sortable.create("regionB", {dropOnEmpty:true,handle:'handle',tag:'div',containment:["regionA","regionB"],constraint:false, ghosting: false,
       onChange: function(el)
       {
       },




More information about the jboss-svn-commits mailing list