You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by sm...@apache.org on 2006/11/07 22:18:47 UTC

svn commit: r472273 [5/6] - in /portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed: ./ desktop/ widget/ windowicons/ windowthemes/ windowthemes/blueocean/ windowthemes/blueocean/css/ windowthemes/blueocean/images/ windowthemes/blueocean/images/des...

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/blue-metalic-endcap-28.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/document.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/document.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/document.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/font-x-generic.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/font-x-generic.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/font-x-generic.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/image-x-generic.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/image-x-generic.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/image-x-generic.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/jetspeed-desktop-window-visuals.zip
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/jetspeed-desktop-window-visuals.zip?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/jetspeed-desktop-window-visuals.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/package-x-generic.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/package-x-generic.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/package-x-generic.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/test-window-icons.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/test-window-icons.html?view=auto&rev=472273
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/test-window-icons.html (added)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/test-window-icons.html Tue Nov  7 13:18:43 2006
@@ -0,0 +1,251 @@
+<html>
+<head>
+
+<title>Simple Window Icon Demo</title>
+
+<style>
+.floatingPane {
+	/* essential css */
+	position: relative;
+	overflow: hidden;		/* dojo says 'visible' with this explanation "so drop shadow is displayed"" */
+                            /* we says 'hidden' cause IE likes to kindly expand div to fit content otherwise */
+	z-index: 5;
+	-moz-box-sizing: border-box;
+	-khtml-box-sizing: border-box;
+	
+	/* styling css */
+	border: 1px solid;
+	border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;
+	background-color: ThreeDFace;
+
+    width: 200;
+    height: 50;
+}
+.titleBar {
+	/* essential css */
+	z-index: 2;
+	position: absolute;
+	top: 0px;
+	left: 0px;
+	width: 100%;
+
+	/* styling css */
+	vertical-align: middle;
+	height: 22px;
+	font: small-caption;
+	cursor: default;
+
+    /* overrides */
+    background: #98FB98;    /* palegreen */ 
+    line-height: 1.4em;
+	color: #4682B4;  /* steelblue */
+}
+
+.titleBar2 {
+	/* essential css */
+	z-index: 2;
+	position: absolute;
+	top: 0px;
+	left: 0px;
+	width: 100%;
+
+	/* styling css */
+	vertical-align: middle;
+	height: 22px;
+	font: small-caption;
+	cursor: default;
+
+    /* overrides */
+    background: #B0C4DE;  /* lightsteelblue */
+    line-height: 1.4em;
+	color: #00368F;
+}
+.titleBarIcon {
+    /* essential css */
+    float: left;
+
+    /* styling css */
+    margin-top: 3px;
+    margin-left: 2px;
+    margin-right: 3px;
+    height: 16px;
+	width: 16px;
+    /* height: 22px; */
+    /* vertical-align: middle; */
+}
+.titleText {
+	padding: 2px 4px 2px 2px;
+    float:left;
+}
+</style>
+
+<script language="JavaScript" type="text/javascript">
+
+</script>
+</head>
+<body>
+
+<div class="floatingPane" >
+	<div class="titleBar"  >
+        <img class="titleBarIcon" src="application-certificate.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar2"  >
+        <img class="titleBarIcon" src="application-x-executable.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar"  >
+        <img class="titleBarIcon" src="applications-internet.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar2"  >
+        <img class="titleBarIcon" src="audio-x-generic.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar"  >
+        <img class="titleBarIcon" src="document.gif" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar2"  >
+        <img class="titleBarIcon" src="font-x-generic.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar"  >
+        <img class="titleBarIcon" src="image-x-generic.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar2"  >
+        <img class="titleBarIcon" src="package-x-generic.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar"  >
+        <img class="titleBarIcon" src="text-html.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar2"  >
+        <img class="titleBarIcon" src="text-x-generic-template.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar"  >
+        <img class="titleBarIcon" src="text-x-generic.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar2"  >
+        <img class="titleBarIcon" src="text-x-script.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar"  >
+        <img class="titleBarIcon" src="video-x-generic.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar2"  >
+        <img class="titleBarIcon" src="x-office-address-book.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar"  >
+        <img class="titleBarIcon" src="x-office-calendar.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar2"  >
+        <img class="titleBarIcon" src="x-office-document.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar"  >
+        <img class="titleBarIcon" src="x-office-presentation.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+<br>
+
+<div class="floatingPane" >
+	<div class="titleBar2"  >
+        <img class="titleBarIcon" src="x-office-spreadsheet.png" >
+        <div class="titleText" >Untitled</div>
+    </div>
+</div>
+
+
+
+</body>
+</html>

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-html.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-html.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-html.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-x-generic-template.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-x-generic-template.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-x-generic-template.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-x-generic.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-x-generic.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-x-generic.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-x-script.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-x-script.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/text-x-script.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/video-x-generic.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/video-x-generic.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/video-x-generic.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-address-book.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-address-book.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-address-book.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-calendar.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-calendar.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-calendar.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-document.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-document.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-document.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-presentation.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-presentation.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-presentation.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-spreadsheet.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-spreadsheet.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowicons/x-office-spreadsheet.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/css/PortletDefContainer.css
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/css/PortletDefContainer.css?view=auto&rev=472273
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/css/PortletDefContainer.css (added)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/css/PortletDefContainer.css Tue Nov  7 13:18:43 2006
@@ -0,0 +1,58 @@
+/*
+Copyright 2004 The Apache Software Foundation
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+.portletDefItemTable {
+    /*display: inline; */
+    padding: 0px;
+    margin: 0px 2px 6px 2px;
+    overflow: hidden;
+    width: 100%;
+    /*border-spacing: 0;*/  /* could get rid of cellspacing attribute if IE would support CSS2 better */
+}
+.portletDefItem {
+    background-image: url(../images/blue-metalic-28.jpg);
+    background-repeat: no-repeat;
+	height: 28px;
+    width: 100%;
+    overflow: hidden;
+    /*padding-right: 8px; */
+    cursor: pointer;
+}
+.portletDefItemEndCap {
+    background-image: url(../images/blue-metalic-endcap-28.jpg);
+    background-repeat: no-repeat;
+    height: 28px;
+	width: 4px;
+}
+
+.portletDefItemIcon {
+	vertical-align: top;
+	margin-right: 5px;
+	margin-left: 5px;
+    margin-top: 2px;
+    padding-top: 0px;
+	height: 16px;
+	width: 16px;
+}
+
+.portletDefItemText {
+	color: black;
+	text-decoration: none;
+    font-size: 9pt;
+    overflow: hidden;
+    white-space: nowrap;
+    text-overflow: ellipsis;
+}

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/css/styles.css
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/css/styles.css?view=auto&rev=472273
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/css/styles.css (added)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/css/styles.css Tue Nov  7 13:18:43 2006
@@ -0,0 +1,646 @@
+
+/*
+Copyright 2004 The Apache Software Foundation
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+
+
+
+/*  begin dojo styles  */
+
+.blueocean .dojoFloatingPaneTitleBar {
+    /* background: #B0C4DE; */  /* lightsteelblue */
+    background: url(../images/stripe_blue_m4.gif);
+}
+
+.blueocean .dojoFloatingPaneTitleText {
+	color: #ffffff;
+}
+
+/* minimize/maximize icons are specified by CSS only */
+.blueocean .dojoFloatingPaneMinimizeIcon,
+.blueocean .dojoFloatingPaneMaximizeIcon,
+.blueocean .dojoFloatingPaneRestoreIcon,
+.blueocean .dojoFloatingPaneCloseIcon {
+	vertical-align: middle;
+	height: 22px;
+	width: 22px;
+	float: right;
+}
+.blueocean .dojoFloatingPaneMinimizeIcon {
+	background-image: url(../images/desktop/minimize.gif);
+    background-repeat: no-repeat;
+    background-position: center center;
+}
+.blueocean .dojoFloatingPaneMaximizeIcon {
+    background-image: url(../images/desktop/maximize.gif);
+    background-repeat: no-repeat;
+    background-position: center center;
+}
+.blueocean .dojoFloatingPaneRestoreIcon {
+    background-image: url(../images/desktop/restore.gif);
+    background-repeat: no-repeat;
+    background-position: center center;
+}
+.blueocean .dojoFloatingPaneCloseIcon {
+	background-image: url(../images/desktop/close.gif);
+    background-repeat: no-repeat;
+    background-position: center center;
+}
+
+.blueocean .dojoFloatingPaneTitleBarIcon {
+    margin-top: 3px;
+    margin-left: 2px;
+    margin-right: 3px;
+}
+
+
+/*  end dojo styles  */
+
+
+
+/*  begin portlet decorator blueocean  */
+
+.blueocean .PTitle
+{
+    background-image:url(../images/title_background.gif);
+    color:#0080b0;
+      
+    margin:0px;
+    padding-left:3px;
+    height:20px;
+}
+
+.blueocean .PTitleContent
+{
+    font-weight:bold;
+    display: inline;
+    float: left;
+    white-space: normal;
+}
+
+.blueocean .PActionBar
+{
+   float: right;
+   display: inline;
+}
+ 
+.blueocean .PContent
+{
+    clear:both;
+    margin:0px;
+    padding-left: 10px; /* was 1em;  - dojo dies when calculating width of object - can't convert to pixels */
+    white-space: normal;
+    /* background-color: #ffffff; */    /* BOZO: desktop color should not be set here */
+    /* border: 1px solid #90d0ff; */    /* BOZO: desktop cannot be having this behavior */
+    font-size: 10pt;
+
+
+    /* desktop added */
+
+}
+
+
+/* font */
+.blueocean .PTitleLeft,
+.blueocean .PTitle,
+.blueocean .PTitleContent,
+.blueocean .PTitleRight,
+.blueocean .PContentLeft,
+.blueocean .PContent,
+.blueocean .PContentRight,
+.blueocean .PBottomLeft,
+.blueocean .PBottom,
+.blueocean .PBottomRight
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+
+    voice-family: inherit;
+    font-size: 10pt;
+}
+
+
+
+/* --------------------------------- */
+/* PLT.C.1 Links (Anchor)            */
+/* --------------------------------- */
+
+.blueocean A:link, 
+.blueocean A:visited {
+    text-decoration: underline;
+}
+
+.blueocean A:hover, 
+.blueocean A:active {
+    text-decoration: underline;
+}
+
+/* font */
+.blueocean A:link,
+.blueocean A:visited,
+.blueocean A:hover,
+.blueocean A:active
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: 10pt;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.2 Fonts                     */
+/* --------------------------------- */
+
+.blueocean .portlet-font {
+    color: black;
+}
+.blueocean .portlet-font-dim {
+    color: gray;
+}
+
+/* font */
+.blueocean .portlet-font,
+.blueocean .portlet-font-dim
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: 10pt;
+}
+
+
+
+/* --------------------------------- */
+/* PLT.C.3 Messages                  */
+/* --------------------------------- */
+.blueocean .portlet-msg-status,
+.blueocean .portlet-msg-info {
+    background: url(../images/icon_info_sml.gif);
+    background-repeat: no-repeat;
+    padding-left: 20px;
+    min-height: 15px;
+}
+
+.blueocean .portlet-msg-error {
+    background: url(../images/icon_error_sml.gif);
+    background-repeat: no-repeat;
+    padding-left: 20px;
+    min-height: 15px;
+}
+
+.blueocean .portlet-msg-alert {
+    background: url(../images/icon_warning_sml.gif);
+    background-repeat: no-repeat;
+    padding-left: 20px;
+    min-height: 15px;
+}
+
+.blueocean .portlet-msg-success {
+    background: url(../images/icon_success_sml.gif);
+    background-repeat: no-repeat;
+    padding-left: 20px;
+    min-height: 15px;
+}
+
+/* font */
+.blueocean .portlet-msg-status,
+.blueocean .portlet-msg-info,
+.blueocean .portlet-msg-error,
+.blueocean .portlet-msg-alert,
+.blueocean .portlet-msg-success
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: 10pt;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.4 Sections                  */
+/* --------------------------------- */
+.blueocean .portlet-section-header {
+    background-image:url(../images/header_background.gif);
+    background-repeat: repeat-x;
+    background-color:#90d0ff;
+    color: #fff;
+    padding: 5px;
+    margin-right: 2px;
+    margin-left: 2px;
+    clear: both;
+}
+
+.blueocean .portlet-section-body {
+    background: #efefef;
+    border: none;
+    padding: 2px 3px;
+    text-align: left;
+    vertical-align: top;
+    text-align: left;
+}
+
+.blueocean .portlet-section-alternate {
+    background: #ddd;
+    border: none;
+    padding: 2px 3px;
+    text-align: left;
+    vertical-align: top;
+    text-align: left;
+}
+
+.blueocean .portlet-section-selected {
+    /* TODO : ex. change color */
+    background: #ffe;
+    border: none;
+    padding: 2px 3px;
+    text-align: left;
+    vertical-align: top;
+    text-align: left;
+    font-weight:bold;
+}
+
+.blueocean .portlet-section-subheader {
+    background-image:url(../images/subheader_background.gif);
+    background-repeat: repeat-x;
+    background-color:#c0e0f0;
+    color: #0080b0;
+    padding: 5px;
+    margin-right: 2px;
+    margin-left: 2px;
+    clear: both;
+}
+
+.blueocean .portlet-section-footer {
+    background-image:url(../images/footer_background.gif);
+    background-repeat: repeat-x;
+    background-color:#c0e0f0;
+    background-position: top left;
+    color: #0080b0;
+    padding: 5px;
+    margin-right: 2px;
+    margin-left: 2px;
+    clear: both;
+}
+
+.blueocean .portlet-section-text {
+    padding: 1em;
+    padding-bottom: .3em;
+    padding-left: 1em;
+}
+
+/* font */
+.blueocean .portlet-section-header,
+.blueocean .portlet-section-body,
+.blueocean .portlet-section-alternate,
+.blueocean .portlet-section-selected,
+.blueocean .portlet-section-subheader,
+.blueocean .portlet-section-footer,
+.blueocean .portlet-section-text
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: 10pt;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.5 Forms                     */
+/* --------------------------------- */
+.blueocean .portlet-form-label {
+}
+
+.blueocean .portlet-form-input-field {
+    background-color:#90d0ff;
+}
+
+.blueocean .portlet-form-button {
+    background-image:url(../images/button_background.gif);
+    background-color:#90d0ff;
+    color:#ffffff;
+
+    font-weight: bold;
+}
+
+.blueocean .portlet-icon-label {
+}
+
+.blueocean .portlet-dlg-icon-label {
+}
+
+.blueocean .portlet-form-field-label {
+}
+
+.blueocean .portlet-form-field {
+}
+
+/* font */
+.blueocean .portlet-form-label,
+.blueocean .portlet-form-input-field,
+.blueocean .portlet-form-button,
+.blueocean .portlet-icon-label,
+.blueocean .portlet-dlg-icon-label,
+.blueocean .portlet-form-field-label,
+.blueocean .portlet-form-field 
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: 10pt;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.6 Menus                     */
+/* --------------------------------- */
+.blueocean .portlet-menu {
+    background: #efefef;
+    margin-bottom: 6px;
+    border-right: 1px solid #aaa;
+    border-bottom: 1px solid #aaa;
+    padding: 4px 4px 4px 0;
+    padding-bottom: .3em;
+    padding-left: 1em;
+}
+
+.blueocean .portlet-menu-item {
+    text-decoration: none;
+    color: blue;
+}
+
+.blueocean .portlet-menu-item-selected {
+    text-decoration: none;
+    color: #555 !important;
+}
+
+.blueocean .portlet-menu-item-hover {
+    text-decoration: none;
+    color: #f30 !important;
+}
+
+.blueocean .portlet-menu-item-hover-selected {
+    text-decoration: none;
+    color: #555 !important;
+    font-weight: bold;
+}
+
+.blueocean .portlet-menu-cascade-item {
+    text-decoration: none;
+    margin-top: .3em;
+    padding-bottom: 0;
+    color: blue;
+}
+
+.blueocean .portlet-menu-cascade-item-selected {
+    text-decoration: none;
+    color: #555 !important;
+    font-weight: bold;
+}
+
+.blueocean .portlet-menu-description {
+}
+
+.blueocean .portlet-menu-caption {
+    border-bottom: 1px solid #666;
+    border-right: 1px solid #666;
+    background: #ddd;
+    color: #555;
+    padding: 4px;
+}
+
+/* font */
+.blueocean .portlet-menu,
+.blueocean .portlet-menu-item,
+.blueocean .portlet-menu-item-selected,
+.blueocean .portlet-menu-item-hover,
+.blueocean .portlet-menu-item-hover-selected,
+.blueocean .portlet-menu-cascade-item,
+.blueocean .portlet-menu-cascade-item-selected,
+.blueocean .portlet-menu-description,
+.blueocean .portlet-menu-caption
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: 10pt;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.6 Menus (arrowfolder style) */
+/* --------------------------------- */
+.blueocean .arrowfolder .portlet-menu {
+    background: #efefef;
+    margin-bottom: 6px;
+    border-right: 1px solid #aaa;
+    border-bottom: 1px solid #aaa;
+    padding: 4px 4px 4px 0;
+    padding-bottom: .3em;
+    padding-left: 1em;
+}
+
+.blueocean .arrowfolder .portlet-menu-item {
+    text-decoration: none;
+    color: blue;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowdoc_sml.gif);
+    background-repeat: no-repeat;
+
+}
+
+.blueocean .arrowfolder .portlet-menu-item-selected {
+    text-decoration: none;
+    color: #555 !important;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowdoc_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.blueocean .arrowfolder .portlet-menu-item-hover {
+    text-decoration: none;
+    color: #f30 !important;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowdoc_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.blueocean .arrowfolder .portlet-menu-item-hover-selected {
+    text-decoration: none;
+    color: #555 !important;
+    font-weight: bold;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowdoc_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.blueocean .arrowfolder .portlet-menu-cascade-item {
+    text-decoration: none;
+    margin-top: .3em;
+    padding-bottom: 0;
+    color: blue;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowfolderclosed1_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.blueocean .arrowfolder .portlet-menu-cascade-item-selected {
+    text-decoration: none;
+    color: #555 !important;
+    font-weight: bold;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowfolderopen2_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.blueocean .arrowfolder .portlet-menu-description {
+}
+
+.blueocean .arrowfolder .portlet-menu-caption {
+    border-bottom: 1px solid #666;
+    border-right: 1px solid #666;
+    background: #ddd;
+    color: #555;
+    padding: 4px;
+}
+
+/* font */
+.blueocean .arrowfolder .portlet-menu,
+.blueocean .arrowfolder .portlet-menu-item,
+.blueocean .arrowfolder .portlet-menu-item-selected,
+.blueocean .arrowfolder .portlet-menu-item-hover,
+.blueocean .arrowfolder .portlet-menu-item-hover-selected,
+.blueocean .arrowfolder .portlet-menu-cascade-item,
+.blueocean .arrowfolder .portlet-menu-cascade-item-selected,
+.blueocean .arrowfolder .portlet-menu-description,
+.blueocean .arrowfolder .portlet-menu-caption
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: 10pt;
+}
+
+/* --------------------------------- */
+/* Tree component                    */
+/* --------------------------------- */
+
+.blueocean .tree {
+   lineheight: 18px;
+   font-family: arial, sans-serif;
+}
+
+.blueocean .tree-node {
+   padding: 2px 15px 2px 5px;
+}
+
+.blueocean .tree-node a {
+   text-decoration: none;
+}
+
+.blueocean .tree-node-selected {
+   padding: 2px 15px 2px 5px;
+}
+
+.blueocean .tree-node-selected a {
+   text-decoration: none;
+   font-weight: bold;
+}
+
+/* --------------------------------- */
+/* Portlet Table                     */
+/* --------------------------------- */
+.blueocean th, td, input {
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+}
+
+.blueocean table, 
+.blueocean th, 
+.blueocean td {
+    vertical-align: top;
+    font-size: 10pt;    
+    border: none;
+    white-space: normal;
+    /* action buttons shifts right a few millimeters by the following */
+}
+
+.blueocean th
+{
+   font-size: 11pt;  
+}
+
+.blueocean .portlet-table-header {
+    background-image:url(../images/header_background.gif);
+    background-repeat: repeat-x;
+    background-color:#90d0ff;
+    color: #fff;
+
+    border: 0.75px solid #fff;
+    padding: 2px 3px;
+    text-align: left;
+}
+
+.blueocean .portlet-table-footer {
+    background-image:url(../images/footer_background.gif);
+    background-repeat: repeat-x;
+    background-color:#c0e0f0;
+    color: #0080b0;
+
+    font-size: 10pt;
+    padding: 5px;
+    margin: .67em 2px;
+    margin-top: 0;
+}
+
+
+.blueocean .portlet-table-row1 td {
+    font-size: 10pt;
+    background: #ddd;
+    border-bottom: 1px solid #fff;
+}
+
+.blueocean .portlet-table-row2 td {
+    font-size: 10pt;
+    background: #efefef;
+    border-bottom: 1px solid #fff;
+}
+
+.blueocean .portlet-table-col1 {
+    border-right: 1px solid #fff;
+    padding: 2px 15px 2px 5px;
+}
+
+.blueocean .portlet-table-col2 {
+    border-left: 1px solid #fff;
+    padding: 2px 15px 2px 5px;
+}
+
+/* --------------------------------- */
+/* Portlet Data Scroller Table       */
+/* --------------------------------- */
+
+.blueocean .portlet-scroller-grid td {
+    horizontal-align: center;
+}
+
+.blueocean .portlet-scroller {
+    horizontal-align: center;
+}
+
+.blueocean .portlet-paginator {
+    horizontal-align: center;
+}
+
+/*  end portlet decorator blueocean  */

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/blue-metalic-28.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/blue-metalic-28.jpg?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/blue-metalic-28.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/blue-metalic-endcap-28.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/blue-metalic-endcap-28.jpg?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/blue-metalic-endcap-28.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/button_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/button_background.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/button_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/close.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/close.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/close.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/customize.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/customize.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/customize.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/close.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/close.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/close.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/maximize.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/maximize.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/maximize.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/minimize.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/minimize.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/minimize.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/refresh.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/refresh.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/refresh.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/resizeHandle.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/resizeHandle.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/resizeHandle.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/restore.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/restore.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/desktop/restore.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/edit.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/edit.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/edit.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/footer_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/footer_background.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/footer_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/header_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/header_background.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/header_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/help.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/help.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/help.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_arrowdoc_sml.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_arrowdoc_sml.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_arrowdoc_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_arrowfolderclosed1_sml.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_arrowfolderclosed1_sml.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_arrowfolderclosed1_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_arrowfolderopen2_sml.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_arrowfolderopen2_sml.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_arrowfolderopen2_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_error_sml.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_error_sml.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_error_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_info_sml.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_info_sml.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_info_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_success_sml.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_success_sml.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_success_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_warning_sml.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_warning_sml.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/icon_warning_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/info.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/info.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/info.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/info1.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/info1.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/info1.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/leftnavbg.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/leftnavbg.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/leftnavbg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/list-add.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/list-add.png?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/list-add.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/maximized.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/maximized.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/maximized.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/minimized.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/minimized.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/minimized.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/print.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/print.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/print.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/restore.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/restore.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/restore.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/stripe_blue_m3.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/stripe_blue_m3.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/stripe_blue_m3.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/stripe_blue_m4.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/stripe_blue_m4.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/stripe_blue_m4.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/subheader_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/subheader_background.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/subheader_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/title_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/title_background.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/title_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/view.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/view.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/images/view.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/templates/PortletDefContainer.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/templates/PortletDefContainer.html?view=auto&rev=472273
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/templates/PortletDefContainer.html (added)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/templates/PortletDefContainer.html Tue Nov  7 13:18:43 2006
@@ -0,0 +1,4 @@
+<div id="${this.widgetId}" class="portletDefContainer">
+    Drag Portlet Definitions
+	<div id="${this.widgetId}_container" dojoAttachPoint="containerNode" class="portletDefContainerClient"></div>
+</div>

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/templates/PortletDefContainerItemTemplate.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/templates/PortletDefContainerItemTemplate.html?view=auto&rev=472273
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/templates/PortletDefContainerItemTemplate.html (added)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/blueocean/templates/PortletDefContainerItemTemplate.html Tue Nov  7 13:18:43 2006
@@ -0,0 +1 @@
+<table class="portletDefItemTable" cellspacing="0"><tr dojoAttachEvent="onClick"><td class="portletDefItem"><span class="portletDefItemText"><img dojoAttachPoint="itemIcon" class="portletDefItemIcon"><span dojoAttachPoint="itemText"></span></span></td><td class="portletDefItemEndCap"></td></tr></table>

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/css/PortletDefContainer.css
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/css/PortletDefContainer.css?view=auto&rev=472273
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/css/PortletDefContainer.css (added)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/css/PortletDefContainer.css Tue Nov  7 13:18:43 2006
@@ -0,0 +1,124 @@
+/*
+Copyright 2004 The Apache Software Foundation
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+.portletSelectorFloatingPane {
+	/* essential css */
+	position: relative;
+	overflow: hidden;		/* dojo says 'visible' with this explanation "so drop shadow is displayed"" */
+                            /* we says 'hidden' cause IE likes to kindly expand div to fit content otherwise */
+	z-index: 5;
+	-moz-box-sizing: border-box;
+	-khtml-box-sizing: border-box;
+	
+	/* styling css */
+	border: 1px solid;
+	border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;
+	background-color: ThreeDFace;
+
+    width: 100%;
+}
+
+.portletSelectorTitleBar {
+	/* essential css */
+	z-index: 2;
+
+	/* styling css */
+	vertical-align: middle;
+	font: small-caption;
+	cursor: default;
+    line-height: 1.4em;
+
+    background: #98FB98;    /* palegreen */ 
+	color: #4682B4;  /* steelblue */
+
+    height: 22px;
+}
+
+.portletSelectorTitleBarIcon {
+    /* essential css */
+    float: left;
+
+    /* styling css */
+    margin-top: 3px;
+    margin-left: 2px;
+    margin-right: 3px;
+    height: 16px;
+	width: 16px;
+    /* height: 22px; */
+    /* vertical-align: middle; */
+}
+
+.portletSelectorTitleText {
+    padding: 2px 4px 2px 2px;
+    float: left;
+    color: #4682B4;  /* steelblue */
+}
+
+.portletSelectorTitleBarMinimizeIcon {
+	background-image: url(../images/desktop/minimize.gif);
+}
+.portletSelectorTitleBarMaximizeIcon {
+	background-image: url(../images/desktop/maximize.gif);
+}
+.portletSelectorTitleBarRestoreIcon {
+	background-image: url(../images/desktop/restore.gif);
+}
+.portletSelectorTitleBarCloseIcon {
+	background-image: url(../images/desktop/close.gif);
+}
+
+.portletSelectorTitleBarControlIcon {
+	vertical-align: middle;
+	height: 22px;
+	width: 22px;
+	float: right;
+    background-repeat: no-repeat;
+    background-position: center center;
+}
+
+.portletSelectorFloatingPaneClient {
+	position: relative;
+	z-index: 10;
+	border: 1px solid;
+	border-color: ThreeDShadow ThreeDHighlight ThreeDHighlight ThreeDShadow;
+	margin: 2px;
+	background-color: ThreeDFace;
+	padding: 8px;
+	font-family: Verdana, Helvetica, Garamond, sans-serif;
+	font-size: 12px;
+	overflow: auto;
+}
+
+/* height for resize bar is specified in var resizeBarHeight */
+.portletSelectorFloatingPaneResizebar {
+	z-index: 10;
+	background-color: ThreeDFace;
+    
+    height: 13px;
+}
+.portletSelectorResizeHandle {
+	float: right;
+	position: absolute;
+	right: 2px;
+	bottom: 2px;
+	width: 13px;
+	height: 13px;
+	z-index: 20;
+	cursor: nw-resize;
+	background-image: url(../images/desktop/resizeHandle.gif);
+    background-repeat: no-repeat;
+	line-height: 0px;
+}

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/css/styles.css
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/css/styles.css?view=auto&rev=472273
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/css/styles.css (added)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/css/styles.css Tue Nov  7 13:18:43 2006
@@ -0,0 +1,721 @@
+
+/*
+Copyright 2004 The Apache Software Foundation
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+
+
+
+/*  begin dojo styles  */
+
+.tigris .dojoFloatingPaneTitleBar {
+    background: #98FB98;    /* palegreen */ 
+}
+
+.tigris .dojoFloatingPaneTitleText {
+	color: #4682B4;  /* steelblue */
+}
+
+.tigris .portletWindowActionButton {
+	height: 22px;
+	width: 14px;
+}
+
+/* minimize/maximize icons are specified by CSS only */
+.tigris .dojoFloatingPaneMinimizeIcon,
+.tigris .dojoFloatingPaneMaximizeIcon,
+.tigris .dojoFloatingPaneRestoreIcon,
+.tigris .dojoFloatingPaneCloseIcon {
+	vertical-align: middle;
+	height: 22px;
+	width: 22px;
+	float: right;
+}
+.tigris .dojoFloatingPaneMinimizeIcon {
+	background-image: url(../images/desktop/minimize.gif);
+    background-repeat: no-repeat;
+    background-position: center center;
+}
+.tigris .dojoFloatingPaneMaximizeIcon {
+    background-image: url(../images/desktop/maximize.gif);
+    background-repeat: no-repeat;
+    background-position: center center;
+}
+.tigris .dojoFloatingPaneRestoreIcon {
+    background-image: url(../images/desktop/restore.gif);
+    background-repeat: no-repeat;
+    background-position: center center;
+}
+.tigris .dojoFloatingPaneCloseIcon {
+	background-image: url(../images/desktop/close.gif);
+    background-repeat: no-repeat;
+    background-position: center center;
+}
+
+.tigris .dojoFloatingPaneTitleBarIcon {
+    margin-top: 3px;
+    margin-left: 2px;
+    margin-right: 3px;   /* these margin settings are restated from desktop/widget/HtmlFloatingPane.css - to override the .tigris img styles in this file */
+}
+
+/*  end dojo styles  */
+
+
+
+/*  begin portlet decorator tigris  */
+
+.tigris .PTitleLeft
+{
+}
+
+
+
+.tigris .PTitle
+{
+      
+    padding-top: 2px;
+    padding-bottom: 16px;
+    padding-right: 2px;
+    border-left: 1px solid #DDDDDD;
+    border-right: 1px solid #666666;
+    border-top: 1px solid #DDDDDD;
+    border-bottom: 1px solid #666666;
+    color: #000000;
+    background-color: #DDDDDD;
+        
+    
+}
+
+.tigris .PTitleContent
+{
+    font-weight:bold;
+    display: inline;
+    float: left;
+    white-space: normal;
+}
+
+.tigris .PActionBar
+{
+   float: right;
+   display: inline;
+}
+ 
+.tigris .PTitleRight
+{
+}
+
+.tigris .PContentLeft
+{
+}
+
+.tigris .PContent
+{    
+    padding-left: 10px; /* was 1em;  - dojo dies when calculating width of object - can't convert to pixels */
+    white-space: normal;
+    /* background-color: #EFEFEF; */    /* BOZO: desktop color should not be set here */
+    /* border-right: 1px solid #AAAAAA;
+    border-bottom: 1px solid #AAAAAA; */    /* BOZO: desktop cannot be having this behavior */
+    font-size: small;
+
+
+    /* desktop added */
+
+}
+
+
+
+.tigris .PContentRight
+{
+}
+
+.tigris .PBottomLeft
+{
+}
+
+.tigris .PBottom
+{
+}
+
+.tigris .PBottomRight
+{
+}
+
+/* font */
+.tigris .PTitleLeft,
+.tigris .PTitle,
+.tigris .PTitleContent,
+.tigris .PTitleRight,
+.tigris .PContentLeft,
+.tigris .PContent,
+.tigris .PContentRight,
+.tigris .PBottomLeft,
+.tigris .PBottom,
+.tigris .PBottomRight
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+
+    voice-family: inherit;
+    font-size: x-small;
+}
+
+
+
+/* --------------------------------- */
+/* PLT.C.1 Links (Anchor)            */
+/* --------------------------------- */
+
+.tigris A:link, 
+.tigris A:visited {
+    text-decoration: underline;
+}
+
+.tigris A:hover, 
+.tigris A:active {
+    text-decoration: underline;
+}
+
+/* font */
+.tigris A:link,
+.tigris A:visited,
+.tigris A:hover,
+.tigris A:active
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: 12px;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.2 Fonts                     */
+/* --------------------------------- */
+
+.tigris .portlet-font {
+    color: black;
+}
+.tigris .portlet-font-dim {
+    color: gray;
+}
+
+/* font */
+.tigris .portlet-font,
+.tigris .portlet-font-dim
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: x-small;
+}
+
+
+
+/* --------------------------------- */
+/* PLT.C.3 Messages                  */
+/* --------------------------------- */
+.tigris .portlet-msg-status,
+.tigris .portlet-msg-info {
+    background: url(../images/icon_info_sml.gif);
+    background-repeat: no-repeat;
+    padding-left: 20px;
+    min-height: 15px;
+}
+
+.tigris .portlet-msg-error {
+    background: url(../images/icon_error_sml.gif);
+    background-repeat: no-repeat;
+    padding-left: 20px;
+    min-height: 15px;
+}
+
+.tigris .portlet-msg-alert {
+    background: url(../images/icon_warning_sml.gif);
+    background-repeat: no-repeat;
+    padding-left: 20px;
+    min-height: 15px;
+}
+
+.tigris .portlet-msg-success {
+    background: url(../images/icon_success_sml.gif);
+    background-repeat: no-repeat;
+    padding-left: 20px;
+    min-height: 15px;
+}
+
+/* font */
+.tigris .portlet-msg-status,
+.tigris .portlet-msg-info,
+.tigris .portlet-msg-error,
+.tigris .portlet-msg-alert,
+.tigris .portlet-msg-success
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: x-small;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.4 Sections                  */
+/* --------------------------------- */
+.tigris .portlet-section-header {
+    background-image: url(../images/nw_maj_rond.gif);
+    background-repeat: no-repeat;
+    color: #fff;
+    background-color: #036;
+    padding: 5px;
+    margin-right: 2px;
+    margin-left: 2px;
+    clear: both;
+}
+
+.tigris .portlet-section-body {
+    background: #efefef;
+    border: none;
+    padding: 2px 3px;
+    text-align: left;
+    vertical-align: top;
+    text-align: left;
+}
+
+.tigris .portlet-section-alternate {
+    background: #ddd;
+    border: none;
+    padding: 2px 3px;
+    text-align: left;
+    vertical-align: top;
+    text-align: left;
+}
+
+.tigris .portlet-section-selected {
+    /* TODO : ex. change color */
+    background: #ffe;
+    border: none;
+    padding: 2px 3px;
+    text-align: left;
+    vertical-align: top;
+    text-align: left;
+    font-weight:bold;
+}
+
+.tigris .portlet-section-subheader {
+    background-image: url(../images/nw_maj_rond.gif);
+    background-repeat: no-repeat;
+    color: #fff;
+    background-color: #888;
+    padding: 5px;
+    margin-right: 2px;
+    margin-left: 2px;
+    clear: both;
+}
+
+.tigris .portlet-section-footer {
+    background-repeat: no-repeat;
+    background-position: bottom left;
+    background-color: #ddd;
+    background-image: url(../images/sw_med_rond.gif);
+    color: #000;
+    padding: 5px;
+    margin: .67em 2px;
+    margin-top: 0;
+}
+
+.tigris .portlet-section-text {
+    padding: 1em;
+    padding-bottom: .3em;
+    padding-left: 1em;
+}
+
+/* font */
+.tigris .portlet-section-header,
+.tigris .portlet-section-body,
+.tigris .portlet-section-alternate,
+.tigris .portlet-section-selected,
+.tigris .portlet-section-subheader,
+.tigris .portlet-section-footer,
+.tigris .portlet-section-text,
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: x-small;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.5 Forms                     */
+/* --------------------------------- */
+.tigris .portlet-form-label {
+}
+
+.tigris .portlet-form-input-field {
+}
+
+.tigris .portlet-form-button {
+}
+
+.tigris .portlet-icon-label {
+}
+
+.tigris .portlet-dlg-icon-label {
+}
+
+.tigris .portlet-form-field-label {
+}
+
+.tigris .portlet-form-field {
+}
+
+/* font */
+.tigris .portlet-section-header,
+.tigris .portlet-section-body,
+.tigris .portlet-section-alternate,
+.tigris .portlet-section-selected,
+.tigris .portlet-section-subheader,
+.tigris .portlet-section-footer,
+.tigris .portlet-section-text,
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: x-small;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.6 Menus                     */
+/* --------------------------------- */
+.tigris .portlet-menu {
+    background: #efefef;
+    margin-bottom: 6px;
+    border-right: 1px solid #aaa;
+    border-bottom: 1px solid #aaa;
+    padding: 4px 4px 4px 0;
+    padding-bottom: .3em;
+    padding-left: 1em;
+}
+
+.tigris .portlet-menu-item {
+    text-decoration: none;
+    color: blue;
+}
+
+.tigris .portlet-menu-item-selected {
+    text-decoration: none;
+    color: #555 !important;
+}
+
+.tigris .portlet-menu-item-hover {
+    text-decoration: none;
+    color: #f30 !important;
+}
+
+.tigris .portlet-menu-item-hover-selected {
+    text-decoration: none;
+    color: #555 !important;
+    font-weight: bold;
+}
+
+.tigris .portlet-menu-cascade-item {
+    text-decoration: none;
+    margin-top: .3em;
+    padding-bottom: 0;
+    color: blue;
+}
+
+.tigris .portlet-menu-cascade-item-selected {
+    text-decoration: none;
+    color: #555 !important;
+    font-weight: bold;
+}
+
+.tigris .portlet-menu-description {
+}
+
+.tigris .portlet-menu-caption {
+    border-bottom: 1px solid #666;
+    border-right: 1px solid #666;
+    background: #ddd;
+    color: #555;
+    padding: 4px;
+}
+
+/* font */
+.tigris .portlet-menu,
+.tigris .portlet-menu-item,
+.tigris .portlet-menu-item-selected,
+.tigris .portlet-menu-item-hover,
+.tigris .portlet-menu-item-hover-selected,
+.tigris .portlet-menu-cascade-item,
+.tigris .portlet-menu-cascade-item-selected,
+.tigris .portlet-menu-description,
+.tigris .portlet-menu-caption
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: x-small;
+}
+
+
+/* --------------------------------- */
+/* PLT.C.6 Menus (arrowfolder style) */
+/* --------------------------------- */
+.tigris .arrowfolder .portlet-menu {
+    background: #efefef;
+    margin-bottom: 6px;
+    border-right: 1px solid #aaa;
+    border-bottom: 1px solid #aaa;
+    padding: 4px 4px 4px 0;
+    padding-bottom: .3em;
+    padding-left: 1em;
+}
+
+.tigris .arrowfolder .portlet-menu-item {
+    text-decoration: none;
+    color: blue;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowdoc_sml.gif);
+    background-repeat: no-repeat;
+
+}
+
+.tigris .arrowfolder .portlet-menu-item-selected {
+    text-decoration: none;
+    color: #555 !important;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowdoc_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.tigris .arrowfolder .portlet-menu-item-hover {
+    text-decoration: none;
+    color: #f30 !important;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowdoc_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.tigris .arrowfolder .portlet-menu-item-hover-selected {
+    text-decoration: none;
+    color: #555 !important;
+    font-weight: bold;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowdoc_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.tigris .arrowfolder .portlet-menu-cascade-item {
+    text-decoration: none;
+    margin-top: .3em;
+    padding-bottom: 0;
+    color: blue;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowfolderclosed1_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.tigris .arrowfolder .portlet-menu-cascade-item-selected {
+    text-decoration: none;
+    color: #555 !important;
+    font-weight: bold;
+    padding-left: 34px;
+    background-image: url(../images/icon_arrowfolderopen2_sml.gif);
+    background-repeat: no-repeat;
+}
+
+.tigris .arrowfolder .portlet-menu-description {
+}
+
+.tigris .arrowfolder .portlet-menu-caption {
+    border-bottom: 1px solid #666;
+    border-right: 1px solid #666;
+    background: #ddd;
+    color: #555;
+    padding: 4px;
+}
+
+/* font */
+.tigris .arrowfolder .portlet-menu,
+.tigris .arrowfolder .portlet-menu-item,
+.tigris .arrowfolder .portlet-menu-item-selected,
+.tigris .arrowfolder .portlet-menu-item-hover,
+.tigris .arrowfolder .portlet-menu-item-hover-selected,
+.tigris .arrowfolder .portlet-menu-cascade-item,
+.tigris .arrowfolder .portlet-menu-cascade-item-selected,
+.tigris .arrowfolder .portlet-menu-description,
+.tigris .arrowfolder .portlet-menu-caption
+{
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+    voice-family: "\"}\"";
+    voice-family: inherit;
+    font-size: x-small;
+}
+
+/* --------------------------------- */
+/* Tree component                    */
+/* --------------------------------- */
+
+.tigris .tree {
+   lineheight: 18px;
+   font-family: arial, sans-serif;
+}
+
+.tigris .tree-node {
+   padding: 2px 15px 2px 5px;
+}
+
+.tigris .tree-node a {
+   text-decoration: none;
+}
+
+.tigris .tree-node-selected {
+   padding: 2px 15px 2px 5px;
+}
+
+.tigris .tree-node-selected a {
+   text-decoration: none;
+   font-weight: bold;
+}
+
+/* --------------------------------- */
+/* Portlet Table                     */
+/* --------------------------------- */
+.tigris th, td, input {
+    font-family: Verdana, Helvetica, Arial, sans-serif;
+}
+
+.tigris table, 
+.tigris th, 
+.tigris td {
+    vertical-align: top;
+    font-size: 10pt;    
+    border: none;
+    white-space: normal;
+    /* action buttons shifts right a few millimeters by the following */
+}
+
+.tigris th
+{
+   font-size: 12pt;  
+}
+
+.tigris .portlet-table-header {
+    background-color: #bbb;
+    border: 0.75px solid #fff;
+    padding: 2px 3px;
+    text-align: left;
+}
+
+.tigris .portlet-table-footer {
+    font-size: x-small;
+    padding: 5px;
+    margin: .67em 2px;
+    margin-top: 0;
+    background-color: #ddd;
+    background-image: url(../images/sw_med_rond.gif);
+    background-repeat: no-repeat;
+    background-position: bottom left;
+}
+
+
+.tigris .portlet-table-row1 td {
+    font-size: small;
+    background: #ddd;
+    border-bottom: 1px solid #fff;
+}
+
+.tigris .portlet-table-row2 td {
+    font-size: small;
+    background: #efefef;
+    border-bottom: 1px solid #fff;
+}
+
+.tigris .portlet-table-col1 {
+    border-right: 1px solid #fff;
+    padding: 2px 15px 2px 5px;
+}
+
+.tigris .portlet-table-col2 {
+    border-left: 1px solid #fff;
+    padding: 2px 15px 2px 5px;
+}
+
+/* --------------------------------- */
+/* Portlet Data Scroller Table       */
+/* --------------------------------- */
+
+.tigris .portlet-scroller-grid td {
+    horizontal-align: center;
+}
+
+.tigris .portlet-scroller {
+    horizontal-align: center;
+}
+
+.tigris .portlet-paginator {
+    horizontal-align: center;
+}
+
+/* Custom stuff for UGS added by EDB */
+.tigris p.corelink
+{
+    margin-top: 0.5em;
+    margin-bottom: 0em;
+    font-size: 12px;
+}
+
+.tigris p.abstract
+{
+    margin-top: 0em;
+    margin-bottom: 0.5em;
+    font-size: 11px;
+}
+
+.tigris p.title
+{
+    font-family: Arial, Helvetica, sans-serif; 
+    font-size: 17px; 
+    font-weight: bold; 
+    padding-bottom: 0em; 
+    margin-top: 0em; 
+    margin-bottom: 0em;
+}
+
+.tigris p.download
+{
+    font-size:12px;
+    margin-top:0.25em;
+    margin-bottom:0em;
+}
+
+.tigris p.side
+{ 
+    font-size: 12px;
+    margin-left: 0.85em;
+    text-indent: -0.85em;
+    margin-top: 0.25em;
+    margin-bottom:
+    0.25em;
+}
+
+.tigris img
+{
+    display: inline;
+    margin: 0em;
+}
+
+/*  end portlet decorator tigris  */

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/blue-metalic-28.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/blue-metalic-28.jpg?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/blue-metalic-28.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/blue-metalic-endcap-28.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/blue-metalic-endcap-28.jpg?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/blue-metalic-endcap-28.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/close.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/close.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/close.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/customize.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/customize.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/customize.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/close.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/close.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/close.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/customize.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/customize.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/customize.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/edit.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/edit.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/edit.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/help.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/help.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/help.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/maximize.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/maximize.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/maximize.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/minimize.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/minimize.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/minimize.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/print.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/print.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/print.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/resizeHandle.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/resizeHandle.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/resizeHandle.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/restore.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/restore.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/restore.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/view.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/view.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/desktop/view.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/edit.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/edit.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/edit.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/help.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/help.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/help.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/icon_arrowdoc_sml.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/icon_arrowdoc_sml.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/icon_arrowdoc_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/icon_arrowfolderclosed1_sml.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/windowthemes/tigris/images/icon_arrowfolderclosed1_sml.gif?view=auto&rev=472273
==============================================================================
Binary file - no diff available.



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org