diff -urN projectpier-0.8.0.2/application/layouts/account.php projectpier-0.8.0.2_patched/application/layouts/account.php
--- projectpier-0.8.0.2/application/layouts/account.php 2008-02-09 17:45:08.000000000 -0800
+++ projectpier-0.8.0.2_patched/application/layouts/account.php 2008-05-21 14:08:16.000000000 -0700
@@ -9,8 +9,7 @@
-
-
+
diff -urN projectpier-0.8.0.2/application/layouts/administration.php projectpier-0.8.0.2_patched/application/layouts/administration.php
--- projectpier-0.8.0.2/application/layouts/administration.php 2008-02-09 17:45:08.000000000 -0800
+++ projectpier-0.8.0.2_patched/application/layouts/administration.php 2008-05-21 14:08:16.000000000 -0700
@@ -10,8 +10,7 @@
-
-
+
diff -urN projectpier-0.8.0.2/application/layouts/dashboard.php projectpier-0.8.0.2_patched/application/layouts/dashboard.php
--- projectpier-0.8.0.2/application/layouts/dashboard.php 2008-02-09 17:45:08.000000000 -0800
+++ projectpier-0.8.0.2_patched/application/layouts/dashboard.php 2008-05-21 14:08:16.000000000 -0700
@@ -9,8 +9,7 @@
-
-
+
diff -urN projectpier-0.8.0.2/application/layouts/project_website.php projectpier-0.8.0.2_patched/application/layouts/project_website.php
--- projectpier-0.8.0.2/application/layouts/project_website.php 2008-02-09 17:45:08.000000000 -0800
+++ projectpier-0.8.0.2_patched/application/layouts/project_website.php 2008-05-21 14:08:16.000000000 -0700
@@ -14,8 +14,7 @@
-
-
+
diff -urN projectpier-0.8.0.2/application/views/application/user_box.php projectpier-0.8.0.2_patched/application/views/application/user_box.php
--- projectpier-0.8.0.2/application/views/application/user_box.php 2008-02-09 17:45:08.000000000 -0800
+++ projectpier-0.8.0.2_patched/application/views/application/user_box.php 2008-05-21 14:12:57.000000000 -0700
@@ -1,64 +1,42 @@
- getDisplayName())) ?> (
),
-
- - 'account_more_icon', 'class' => 'PopupMenuWidgetAttachTo', 'title' => lang('enable javascript'))) ?>
-
- - 'projects_more_icon', 'class' => 'PopupMenuWidgetAttachTo', 'title' => lang('enable javascript'))) ?>
-
-isAdministrator()) { ?>
- - 'administration_more_icon', 'class' => 'PopupMenuWidgetAttachTo', 'title' => lang('enable javascript'))) ?>
-
+ getDisplayName())) ?> ()
+
-
-
-
-
-
-
-
-
-
-isAdministrator()) { ?>
-
-
-
-
+
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/javascript/dropdown.js projectpier-0.8.0.2_patched/public/assets/javascript/dropdown.js
--- projectpier-0.8.0.2/public/assets/javascript/dropdown.js 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/javascript/dropdown.js 2008-05-21 14:08:16.000000000 -0700
@@ -0,0 +1,24 @@
+function menuFix() {
+ var sfEls = document.getElementById("account_more_menu").getElementsByTagName("LI");
+ for (var i=0; i0? " ": "") + "sfhover";
+ }
+ // event added to keep menu items from disappearing
+ sfEls[i].onMouseDown=function() {
+ this.className+=(this.className.length>0? " ": "") + "sfhover";
+ }
+ // event added to keep menu items from disappearing
+ sfEls[i].onMouseUp=function() {
+ this.className+=(this.className.length>0? " ": "") + "sfhover";
+ }
+ sfEls[i].onmouseout=function() {
+ this.className=this.className.replace(new RegExp("( ?|^)sfhover\\b"), "");
+ }
+ }
+}
+//onload call
+if (document.all) { // Load sfHover only in IE; other browsers don't need it
+if (window.attachEvent) window.attachEvent("onload", menuFix);
+else window.onload = menuFix; // Mac IE5 needs this
+}
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/themes/acClassic/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/acClassic/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/acClassic/stylesheets/general/construction.css 2007-09-02 20:14:58.000000000 -0700
+++ projectpier-0.8.0.2_patched/public/assets/themes/acClassic/stylesheets/general/construction.css 2008-05-21 13:14:34.000000000 -0700
@@ -1,472 +1,581 @@
-body {
- text-align: left;
-}
-
-#wrapper {
- text-align: center;
-}
-
-#header {
- width: 780px;
- margin: 0 auto;
- padding-top: 10px;
- text-align: left;
-}
-
-#header h1 {
- float: left;
- margin: 0;
- padding: 10px 0 10px 10px;
- border: 0;
-}
-
-#header h1 a {
- font-weight: normal;
- border: 0;
- font-size: 24px;
-}
-
-#header h1 a:hover {
- border: 0;
- color: #003562;
- background: transparent;
- text-decoration: underline;
-}
-
-#systemNoticesWrapper {
- background: red;
- color: white;
- text-align: center;
-}
-
-#systemNotices {
- margin: 0 auto;
- padding: 10px 0;
- width: 760px;
- text-align: left;
-}
-
-#systemNotices ul {
- margin: 0;
- padding: 0 0 0 15px;
-}
-
-#systemNotices a, #systemNotices a:hover {
- border: 0;
- color: white;
- text-decoration: underline;
-}
-
-#userboxWrapper {
- margin-left: 500px;
- color: #666;
- font-size: 10px;
-}
-
-#userbox {
- padding: 5px 8px;
- border: 2px solid #ccc;
- background: #f8f8f8;
-}
-
-#userbox ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#userbox ul li {
- display: inline;
- margin-right: 10px;
-}
-
-#userbox .PopupMenuWidgetDiv {
- position: absolute;
- border: 1px solid #666;
- background: white;
- padding: 5px 10px;
- width: 140px;
- color: #333;
-}
-
-#userbox .PopupMenuWidgetDiv p {
- margin: 0;
- font-weight: bolder;
-}
-
-#userbox .PopupMenuWidgetDiv ul {
- margin-left: 12px;
- padding-left: 5px;
-}
-
-#userbox .PopupMenuWidgetDiv ul li {
- display: list-item;
- font-weight: normal;
- list-style: square;
-}
-
-/** Tabs **/
-
-#tabsWrapper {
- width: 780px;
- margin: 5px auto 0 auto;
- text-align: left;
-}
-
-#tabs {
- float: left;
-}
-
-#tabs ul {
- margin: 0;
- padding: 0 10px;
- list-style: none;
-}
-
-#tabs ul li {
- margin: 0 1px;
- float: left;
- background: url('../../images/layout/tab_right.gif') no-repeat top right;
-}
-
-#tabs ul li a {
- border: 0;
- display: block;
- padding: 0 10px;
- background: url('../../images/layout/tab_left.gif') no-repeat top left;
- text-align: center;
- color: #333;
- font-size: 10px;
- font-weight: bolder;
- line-height: 18px;
- text-decoration: none;
-}
-
-#tabs ul li a:hover {
- border: 0;
- color: #333;
- text-decoration: underline;
-}
-
-#tabs ul li.active {
- background: url('../../images/layout/tab_active_right.gif') no-repeat top right;
-}
-
-#tabs ul li.active a {
- /* padding: 0.1em 0.6em; */
- padding: 0 10px;
- background: url('../../images/layout/tab_active_left.gif') no-repeat top left;
- color: white;
-}
-
-#tabs ul li.active a:hover {
- color: white;
- text-decoration: none;
-}
-
-/** Crumbs **/
-
-#crumbsWrapper {
- clear: both;
- background: #444;
- margin: 0 auto;
- float: left;
- width: 100%;
-}
-
-#crumbsBlock {
- margin: 0 auto;
- padding: 0 10px;
- width: 760px;
- line-height: 20px;
- text-align: left;
-}
-
-#crumbs {
- float: left;
-}
-
-#crumbs ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#crumbs ul li {
- display: inline;
- line-height: 22px;
- color: white;
- font-size: 10px;
- font-weight: bolder;
-}
-
-#crumbs ul li span {
- font-weight: normal;
-}
-
-#crumbs ul li a {
- margin: 0 3px;
- border: 0;
- color: white;
- font-weight: bolder;
- text-decoration: none;
-}
-
-#crumbs ul li a:hover {
- text-decoration: underline;
- background: transparent;
-}
-
-#searchBox {
- padding: 1px 0;
- text-align: right;
-}
-
-#searchBox input {
- border: 1px solid #222;
- font-size: 10px;
- padding: 1px;
- width: 100px;
- background: #e8e8e8;
-}
-
-#searchBox input:focus {
- background: #f8f8f8;
-}
-
-#searchBox button {
- margin: 0 0 0 2px;
- border: 0;
- padding: 0;
- font-size: 10px;
- color: #ccc;
- background: #444;
- height: 18px;
-}
-
-/** Content **/
-
-#outerContentWrapper {
- clear: both;
- background: url('../../images/layout/content-back.gif') repeat-x;
-}
-
-#innerContentWrapper {
- margin: 0 auto;
- padding: 10px;
- width: 760px;
- text-align: left;
-}
-
-#pageTitle {
- margin-bottom: 0;
- color: #BA0101;
- font-weight: normal;
-}
-
-#pageContent {
- padding: 5px 10px;
- border: 1px solid #ccc;
- border-width: 1px 0;
- background: white;
-}
-
-#content {
- float: left;
- width: 530px;
- min-height: 400px;
-}
-
-/** Sidebar **/
-
-#sidebar {
- margin-left: 535px;
- padding: 0 10px;
- font-size: 10px;
-}
-
-#sidebar h2 {
- margin-top: 0;
- font-size: 12px;
-}
-
-#sidebar .blockContent {
- margin-bottom: 10px;
- padding: 0 5px;
- line-height: 120%;
-}
-
-#sidebar .listWithDetails li {
- padding-bottom: 5px;
-}
-
-/** Page actions **/
-
-#page_actions {
- margin-bottom: 10px;
-}
-
-#page_actions ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#page_actions ul li {
- padding-right: 3px;
- display: inline;
- font-weight: bolder;
- font-size: 10px;
-}
-
-#page_actions ul li a {
- border: 0;
- padding: 0 15px 0 0;
- color: #444;
- text-decoration: underline;
- background: url('../../images/icons/more_down.gif') no-repeat right bottom;
-}
-
-#page_actions ul li a:hover {
- color: black;
-}
-
-/** Footer **/
-
-#footer {
- clear: both;
- margin: 10px auto;
- padding: 0 10px 10px 10px;
- width: 760px;
- text-align: left;
- color: #999;
- line-height: 130%;
- font-size: 9px;
-}
-
-#copy {
- float: left;
-}
-
-#productSignature {
- text-align: right;
-}
-
-#listOfRssFeeds {
- list-style: none;
- padding: 0 0 0 4px;
-}
-
-#listOfRssFeeds li {
- padding-left: 16px;
- background: url('../../images/icons/feed.gif') no-repeat;
- line-height: 12px;
- margin: 2px 0;
-}
-
-/** Helper classes **/
-
-.clear {
- clear: both;
- height: 1px;
- overflow: hidden;
-}
-
-#error, #success {
- margin: 10px 0;
- padding: 5px 10px;
- border: 1px solid #ccc;
- clear: both;
- cursor: pointer;
- text-align: left;
-}
-
-#error {
- background: #FFB0B0;
- border-color: red;
-}
-
-#success {
- background: #90DC90;
- border-color: green;
-}
-
-/** User card **/
-
-div.card {
- padding: 10px;
- border: 1px solid #ccc;
-}
-
-* html div.card {
- padding-top: 5px;
-}
-
-div.card div.cardIcon {
- float: left;
- width: 50px;
-}
-
-div.card div.cardData {
- margin-left: 60px;
-}
-
-div.card div.cardData h2 {
- margin-top: 0;
-}
-
-div.card div.cardBlock {
- margin-bottom: 25px;
- padding-left: 10px;
-}
-
-div.card div.cardBlock span {
- font-size: 90%;
- font-weight: bolder;
- color: #333;
-}
-
-div.card table {
- margin-top: 10px;
-}
-
-div.card table, div.card table tr, div.card table td {
- border: 0;
-}
-
-div.card table tr, div.card table td {
- padding: 2px;
-}
-
-/** / user card **/
-
-/** Advanced pagination **/
-
-div.advancedPagination {
- margin: 10px;
- text-align: right;
-}
-
-div.advancedPagination span {
- line-height: 20px;
-}
-
-div.advancedPagination select {
- padding: 0;
-}
-
-/** /Advanced pagination **/
-
-/** Private **/
-
-div.private {
- float: right;
- height: 9px;
- width: 37px;
- overflow: hidden;
- background: url('../../images/icons/private.gif') no-repeat;
-}
-
-div.private span {
- display: none;
-}
+body {
+ text-align: left;
+}
+
+#wrapper {
+ text-align: center;
+}
+
+#header {
+ width: 780px;
+ margin: 0 auto;
+ padding-top: 10px;
+ text-align: left;
+}
+
+#header h1 {
+ float: left;
+ margin: 0;
+ padding: 10px 0 10px 10px;
+ border: 0;
+}
+
+#header h1 a {
+ font-weight: normal;
+ border: 0;
+ font-size: 24px;
+}
+
+#header h1 a:hover {
+ border: 0;
+ color: #003562;
+ background: transparent;
+ text-decoration: underline;
+}
+
+#systemNoticesWrapper {
+ background: red;
+ color: white;
+ text-align: center;
+}
+
+#systemNotices {
+ margin: 0 auto;
+ padding: 10px 0;
+ width: 760px;
+ text-align: left;
+}
+
+#systemNotices ul {
+ margin: 0;
+ padding: 0 0 0 15px;
+}
+
+#systemNotices a, #systemNotices a:hover {
+ border: 0;
+ color: white;
+ text-decoration: underline;
+}
+
+#userboxWrapper {
+/*
+ background-color: #d8d8d8;
+ border: 1px solid #c1c1c1;
+*/
+ color: #666;
+ float: right;
+ font-size: 11px;
+ font-size: 13px;
+ margin-bottom: 20px;
+ margin-right: 10px;
+ width: 300px;
+ z-index: 250;
+}
+
+#userbox {
+ padding: 0 5px;
+}
+
+#userbox p{
+ float: right;
+ margin: 0;
+ padding: 5px;
+}
+
+/*-------------------- general userbox links---------------------*/
+#account_more_menu {
+ background-color: #d8d8d8;
+ border: 1px solid #c1c1c1;
+ float: right;
+ list-style: none;
+ margin: 5px 0 0 0;
+ padding: 5px;
+}
+
+#account_more_menu li{
+ border: 1px solid #c1c1c1;
+ float: left;
+ list-style: none;
+ margin:0pt 6pt 0pt 2px;
+ padding: 0;
+}
+
+#account_more_menu li a{
+ border:medium none;
+ display:block;
+ padding:0px 5px;
+}
+
+/*-------------------- submenus---------------------*/
+#account_more_menu ul {
+ background-color: #fff;
+ border: 1px solid #cccccc;
+ clear: left;
+ font-weight: normal; /* height: auto;*/
+ left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
+ line-height: 120%;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ width: 12em;
+ z-index: 1000 !important;
+}
+
+#account_more_menu ul li {
+ background-image: none !important;
+ border: none;
+ float: none;
+ font-size: 12px;
+ list-style: none;
+ list-style-image: none !important;
+ margin: 0;
+ padding: 0;
+}
+
+* html #account_more_menu ul li, * html #account_more_menu ul li a {
+ height: 1%;
+}
+
+#account_more_menu h6 {
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #8dbbce;
+ color: #333;
+ font-size: 12px;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a {
+ background-image: none !important;
+ border: none;
+ border-bottom: 1px solid #d8d8d8;
+ font-size: 12px;
+ font-weight: normal;
+ height: auto;
+ line-height: 1.2em;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+#account_more_menu ul li a:hover {
+ background-color: #e9f2f7;
+ color: #0079AF;
+ text-decoration: none;
+}
+
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{
+ left: -999em;
+}
+
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{
+ left: auto; /* lists nested under hovered list items */
+}
+
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{
+ background-color: #fff; /* position: relative;
+ z-index: 2500;*/
+ color: #0079af;
+}
+
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{
+ background-color: transparent;
+ color: #0079af;
+}
+
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{
+ background-color: #eef6ff;
+ color: #0079af;
+}
+
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{
+}
+
+* html>body #account_more_menu li{
+ text-align: center;
+ white-space: nowrap;
+ width: 60px;
+}
+
+* html>body #account_more_menu li li{
+ text-align: left;
+ white-space: nowrap;
+ width: 125px;
+}
+
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{
+ left: 110px;
+}
+
+/** Tabs **/
+
+#tabsWrapper {
+ width: 780px;
+ margin: 5px auto 0 auto;
+ text-align: left;
+}
+
+#tabs {
+ float: left;
+ width: 600px;
+}
+
+#tabs ul {
+ margin: 0;
+ padding: 0 10px;
+ list-style: none;
+}
+
+#tabs ul li {
+ margin: 0 1px;
+ float: left;
+ background: url('../../images/layout/tab_right.gif') no-repeat top right;
+}
+
+#tabs ul li a {
+ border: 0;
+ display: block;
+ padding: 0 10px;
+ background: url('../../images/layout/tab_left.gif') no-repeat top left;
+ text-align: center;
+ color: #333;
+ font-size: 10px;
+ font-weight: bolder;
+ line-height: 18px;
+ text-decoration: none;
+}
+
+#tabs ul li a:hover {
+ border: 0;
+ color: #333;
+ text-decoration: underline;
+}
+
+#tabs ul li.active {
+ background: url('../../images/layout/tab_active_right.gif') no-repeat top right;
+}
+
+#tabs ul li.active a {
+ /* padding: 0.1em 0.6em; */
+ padding: 0 10px;
+ background: url('../../images/layout/tab_active_left.gif') no-repeat top left;
+ color: white;
+}
+
+#tabs ul li.active a:hover {
+ color: white;
+ text-decoration: none;
+}
+
+/** Crumbs **/
+
+#crumbsWrapper {
+ clear: both;
+ background: #444;
+ margin: 0 auto;
+ float: left;
+ width: 100%;
+}
+
+#crumbsBlock {
+ margin: 0 auto;
+ padding: 0 10px;
+ width: 760px;
+ line-height: 20px;
+ text-align: left;
+}
+
+#crumbs {
+ float: left;
+}
+
+#crumbs ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#crumbs ul li {
+ display: inline;
+ line-height: 22px;
+ color: white;
+ font-size: 10px;
+ font-weight: bolder;
+}
+
+#crumbs ul li span {
+ font-weight: normal;
+}
+
+#crumbs ul li a {
+ margin: 0 3px;
+ border: 0;
+ color: white;
+ font-weight: bolder;
+ text-decoration: none;
+}
+
+#crumbs ul li a:hover {
+ text-decoration: underline;
+ background: transparent;
+}
+
+#searchBox {
+ padding: 1px 0;
+ text-align: right;
+}
+
+#searchBox input {
+ border: 1px solid #222;
+ font-size: 10px;
+ padding: 1px;
+ width: 100px;
+ background: #e8e8e8;
+}
+
+#searchBox input:focus {
+ background: #f8f8f8;
+}
+
+#searchBox button {
+ margin: 0 0 0 2px;
+ border: 0;
+ padding: 0;
+ font-size: 10px;
+ color: #ccc;
+ background: #444;
+ height: 18px;
+}
+
+/** Content **/
+
+#outerContentWrapper {
+ clear: both;
+ background: url('../../images/layout/content-back.gif') repeat-x;
+}
+
+#innerContentWrapper {
+ margin: 0 auto;
+ padding: 10px;
+ width: 760px;
+ text-align: left;
+}
+
+#pageTitle {
+ margin-bottom: 0;
+ color: #BA0101;
+ font-weight: normal;
+}
+
+#pageContent {
+ padding: 5px 10px;
+ border: 1px solid #ccc;
+ border-width: 1px 0;
+ background: white;
+}
+
+#content {
+ float: left;
+ width: 530px;
+ min-height: 400px;
+}
+
+/** Sidebar **/
+
+#sidebar {
+ margin-left: 535px;
+ padding: 0 10px;
+ font-size: 10px;
+}
+
+#sidebar h2 {
+ margin-top: 0;
+ font-size: 12px;
+}
+
+#sidebar .blockContent {
+ margin-bottom: 10px;
+ padding: 0 5px;
+ line-height: 120%;
+}
+
+#sidebar .listWithDetails li {
+ padding-bottom: 5px;
+}
+
+/** Page actions **/
+
+#page_actions {
+ margin-bottom: 10px;
+}
+
+#page_actions ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#page_actions ul li {
+ padding-right: 3px;
+ display: inline;
+ font-weight: bolder;
+ font-size: 10px;
+}
+
+#page_actions ul li a {
+ border: 0;
+ padding: 0 15px 0 0;
+ color: #444;
+ text-decoration: underline;
+ background: url('../../images/icons/more_down.gif') no-repeat right bottom;
+}
+
+#page_actions ul li a:hover {
+ color: black;
+}
+
+/** Footer **/
+
+#footer {
+ clear: both;
+ margin: 10px auto;
+ padding: 0 10px 10px 10px;
+ width: 760px;
+ text-align: left;
+ color: #999;
+ line-height: 130%;
+ font-size: 9px;
+}
+
+#copy {
+ float: left;
+}
+
+#productSignature {
+ text-align: right;
+}
+
+#listOfRssFeeds {
+ list-style: none;
+ padding: 0 0 0 4px;
+}
+
+#listOfRssFeeds li {
+ padding-left: 16px;
+ background: url('../../images/icons/feed.gif') no-repeat;
+ line-height: 12px;
+ margin: 2px 0;
+}
+
+/** Helper classes **/
+
+.clear {
+ clear: both;
+ height: 1px;
+ overflow: hidden;
+}
+
+#error, #success {
+ margin: 10px 0;
+ padding: 5px 10px;
+ border: 1px solid #ccc;
+ clear: both;
+ cursor: pointer;
+ text-align: left;
+}
+
+#error {
+ background: #FFB0B0;
+ border-color: red;
+}
+
+#success {
+ background: #90DC90;
+ border-color: green;
+}
+
+/** User card **/
+
+div.card {
+ padding: 10px;
+ border: 1px solid #ccc;
+}
+
+* html div.card {
+ padding-top: 5px;
+}
+
+div.card div.cardIcon {
+ float: left;
+ width: 50px;
+}
+
+div.card div.cardData {
+ margin-left: 60px;
+}
+
+div.card div.cardData h2 {
+ margin-top: 0;
+}
+
+div.card div.cardBlock {
+ margin-bottom: 25px;
+ padding-left: 10px;
+}
+
+div.card div.cardBlock span {
+ font-size: 90%;
+ font-weight: bolder;
+ color: #333;
+}
+
+div.card table {
+ margin-top: 10px;
+}
+
+div.card table, div.card table tr, div.card table td {
+ border: 0;
+}
+
+div.card table tr, div.card table td {
+ padding: 2px;
+}
+
+/** / user card **/
+
+/** Advanced pagination **/
+
+div.advancedPagination {
+ margin: 10px;
+ text-align: right;
+}
+
+div.advancedPagination span {
+ line-height: 20px;
+}
+
+div.advancedPagination select {
+ padding: 0;
+}
+
+/** /Advanced pagination **/
+
+/** Private **/
+
+div.private {
+ float: right;
+ height: 9px;
+ width: 37px;
+ overflow: hidden;
+ background: url('../../images/icons/private.gif') no-repeat;
+}
+
+div.private span {
+ display: none;
+}
diff -urN projectpier-0.8.0.2/public/assets/themes/acSimple/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/acSimple/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/acSimple/stylesheets/general/construction.css 2007-06-28 03:44:54.000000000 -0700
+++ projectpier-0.8.0.2_patched/public/assets/themes/acSimple/stylesheets/general/construction.css 2008-05-21 13:14:34.000000000 -0700
@@ -13,7 +13,7 @@
#header {
width: 910px;
margin: 0 auto;
- padding-top: 10px;
+ padding-top: 6px;
text-align: left;
}
@@ -31,7 +31,6 @@
}
-
#systemNoticesWrapper {
background: red;
color: white;
@@ -57,55 +56,161 @@
}
#userboxWrapper {
- margin-left: 640px;
- color: #666;
- font-size: 10px;
+ padding: 0px 5px 7px 2px;
+ border:1px solid #ECCB17;
+ text-align:left;
+ background: url('../../images/logtypes/today.gif') no-repeat top center;
+ color: #666;
+ float: right;
+ font-size: 11px;
+ font-size: 13px;
+ margin-bottom: 20px;
+ margin-right: 10px;
+ width: 297px;
+ z-index: 250;
}
#userbox {
- padding: 5px 5px 7px 5px;
-margin-bottom:20px;
-border:1px solid #ECCB17;
-text-align:center;
- background: url('../../images/logtypes/today.gif') no-repeat top center;
+ padding: 0 5px;
}
-#userbox ul {
- margin: 0;
- padding: 0;
- list-style: none;
+#userbox p{
+ float: right;
+ margin: 0;
+ padding: 2px;
}
-#userbox ul li {
- display: inline;
- margin-right: 10px;
+/*-------------------- general userbox links---------------------*/
+#account_more_menu {
+ float: right;
+ list-style: none;
+ margin: 5px 0 0 0;
+ padding: 0;
}
-#userbox .PopupMenuWidgetDiv {
- position: absolute;
- border: 1px solid #666;
- background: white;
- padding: 5px 10px;
- width: 140px;
- color: #333;
+#account_more_menu li{
+ border: 1px solid #c1c1c1;
+ float: left;
+ list-style: none;
+ margin:0pt 6pt 0pt 2px;
+ padding: 0;
}
-#userbox .PopupMenuWidgetDiv p {
- margin: 0;
- font-weight: bold;
+#account_more_menu li a{
+ border: none;
+ display: block;
+ padding: 0px 10px 0px 6px
}
-#userbox .PopupMenuWidgetDiv ul {
- margin-left: 12px;
- padding-left: 5px;
+/*-------------------- submenus---------------------*/
+#account_more_menu ul {
+ background-color: #fff;
+ border: 1px solid #cccccc;
+ clear: left;
+ font-weight: normal; /* height: auto;*/
+ left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
+ line-height: 120%;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ width: 12em;
+ z-index: 1000 !important;
}
-#userbox .PopupMenuWidgetDiv ul li {
- display: list-item;
- font-weight: normal;
-list-style-image: url(../../images/icons/0105_ico-arrow.gif)
+#account_more_menu ul li {
+ background-image: none !important;
+ border: none;
+ float: none;
+ font-size: 12px;
+ list-style: none;
+ list-style-image: none !important;
+ margin: 0;
+ padding: 0;
+}
+
+* html #account_more_menu ul li, * html #account_more_menu ul li a {
+ height: 1%;
+}
+
+#account_more_menu h6 {
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #8dbbce;
+ color: #333;
+ font-size: 12px;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a {
+ background-image: none !important;
+ border: none;
+ border-bottom: 1px solid #d8d8d8;
+ font-size: 12px;
+ font-weight: normal;
+ height: auto;
+ line-height: 1.2em;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+#account_more_menu ul li a:hover {
+ background-color: #e9f2f7;
+ color: #0079AF;
+ text-decoration: none;
+}
+
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{
+ left: -999em;
+}
+
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{
+ left: auto; /* lists nested under hovered list items */
+}
+
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{
+ background-color: #fff; /* position: relative;
+ z-index: 2500;*/
+ color: #0079af;
+}
+
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{
+ background-color: transparent;
+ color: #0079af;
+}
+
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{
+ background-color: #eef6ff;
+ color: #0079af;
}
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{
+}
+
+* html>body #account_more_menu li{
+ text-align: center;
+ white-space: nowrap;
+ width: 60px;
+}
+
+* html>body #account_more_menu li li{
+ text-align: left;
+ white-space: nowrap;
+ width: 125px;
+}
+
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{
+ left: 110px;
+}
+
+
+
/** Tabs **/
#tabsWrapper {
@@ -120,6 +225,7 @@
#tabs {
float: left;
+ width: 800px;
}
#tabs ul {
diff -urN projectpier-0.8.0.2/public/assets/themes/azul/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/azul/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/azul/stylesheets/general/construction.css 2007-06-28 04:02:46.000000000 -0700
+++ projectpier-0.8.0.2_patched/public/assets/themes/azul/stylesheets/general/construction.css 2008-05-21 13:14:34.000000000 -0700
@@ -1,527 +1,618 @@
-body {
- text-align: left;
- font-size:80%;
- font-family:arial,verdana,halvetica,sans-serif;
- background:#0F2638;
- border-bottom:30px solid #000;
- margin:0;
- padding:0;
-}
-
-#wrapper {
- text-align: center;
- background-color: #0F2638;
-}
-
-#headerWrapper {
- /*background-color: #111111; */
-}
-
-#header {
- width: 780px;
- margin: 0 auto;
- padding-top: 10px;
- text-align: left;
-}
-
-#header h1 {
- float: left;
- margin: 0;
- padding: 10px 0 10px 10px;
- border: 0;
-}
-
-#header h1 a {
- font-weight: normal;
- border: 0;
- font-size: 1.1em;
- color:#fcfcfc;
-}
-
-#header h1 a:hover {
- border: 0;
- color:#fcfcfc;
- background: transparent;
- text-decoration: underline;
-}
-
-#systemNoticesWrapper {
- background: red;
- color: white;
- text-align: center;
-}
-
-#systemNotices {
- margin: 0 auto;
- padding: 10px 0;
- width: 760px;
- text-align: left;
-}
-
-#systemNotices ul {
- margin: 0;
- padding: 0 0 0 15px;
-}
-
-#systemNotices a, #systemNotices a:hover {
- border: 0;
- color: white;
- text-decoration: underline;
-}
-
-#userboxWrapper {
- margin-left: 500px;
- color: #fcfcfc;
- font-size: 1.0em;
-}
-
-#userbox {
- padding: 5px 8px;
- border: 1px solid #193F5A;
- background: #111;
-}
-
-#userbox ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#userbox ul li {
- display: inline;
- margin-right: 10px;
-}
-
-#userbox a:link, #userbox a:visited{
- color:#B4E4FF;
-}
-
-#userbox a:hover{
- color:#fcfcfc;
-}
-
-#userbox .PopupMenuWidgetDiv {
- position: absolute;
- border: 1px solid #193F5A;
- background: #000;
- padding: 5px 10px;
- width: 140px;
- color: #fcfcfc;
-}
-
-#userbox .PopupMenuWidgetDiv a:link, #userbox .PopupMenuWidgetDiv a:visited {
- color: #A4D2F7;
-}
-
-#userbox .PopupMenuWidgetDiv a:hover{
- color: #fcfcfc;
-}
-
-#userbox .PopupMenuWidgetDiv p {
- margin: 0;
- font-weight: bold;
-}
-
-#userbox .PopupMenuWidgetDiv ul {
- margin-left: 12px;
- padding-left: 5px;
-}
-
-#userbox .PopupMenuWidgetDiv ul li {
- display: list-item;
- font-weight: normal;
- list-style: square;
-}
-
-/** Tabs **/
-
-#tabsWrapper {
- width: 780px;
- margin: 15px auto 0 auto;
- text-align: left;
-}
-
-#tabs {
- float: left;
- padding-bottom:15px;
-}
-
-#tabs ul {
- margin: 0;
- padding: 0 10px;
- list-style: none;
-}
-
-#tabs ul li {
- margin: 0 3px;
- float: left;
- background: url(../../images/layout/tab_right.gif) no-repeat top right;
-}
-
-#tabs ul li a {
- border:none;
- display: block;
- padding: 10px 6px;
- background: url(../../images/layout/tab_left.gif) no-repeat top left;
- text-align: center;
- color: #444;
- font-weight:bold;
- font-size: 1.2em;
- line-height: 18px;
- text-decoration: none;
- position:relative;
-}
-
-#tabs ul li a:hover {
- color: #3073A7;
- border:none;
-}
-
-#tabs ul li.active {
- background: url(../../images/layout/tab_active_right.gif) no-repeat top right;
-}
-
-#tabs ul li.active a {
- padding: 10px 10px;
- background: url(../../images/layout/tab_active_left.gif) no-repeat top left;
- color:#fcfcfc;
-}
-
-#tabs ul li.active a:hover {
- color: white;
- text-decoration: none;
-}
-
-/** Crumbs **/
-
-#crumbsWrapper {
- clear: both;
- background: #000;
- margin: 0 auto;
- float: left;
- width: 100%;
- border-top:1px solid #193F5A;
- padding:5px 0;
-}
-
-#crumbsBlock {
- margin: 0 auto;
- padding: 0 10px;
- width: 760px;
- line-height: 20px;
- text-align: left;
-}
-
-#crumbs {
- float: left;
-}
-
-#crumbs ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#crumbs ul li {
- display: inline;
- line-height: 22px;
- color: white;
- font-size: 0.9em;
- font-weight: bold;
-}
-
-#crumbs ul li span {
- font-weight: normal;
-}
-
-#crumbs ul li a {
- margin: 0 3px;
- border: 0;
- color: white;
- font-weight: bold;
- text-decoration: none;
-}
-
-#crumbs ul li a:hover {
- text-decoration: underline;
- background: transparent;
-}
-
-#searchBox {
- padding: 1px 0;
- text-align: right;
-}
-
-#searchBox input {
- border: 1px solid #999;
- font-size: 1.0em;
- padding: 1px;
- width: 100px;
- background: #fff;
- color:#333;
-}
-
-#searchBox button {
- margin: 0 0 0 3px;
- border: none;
- padding: 0;
- font-size: 1.0em;
- color:#fcfcfc;
- background: #245377;
- height: 1.6em;
- line-height:1.6em;
-}
-
-/** Content **/
-
-.header{
- font-size:1.2em;
-}
-
-#outerContentWrapper {
- clear: both;
- background: #fcfcfc url(../../images/layout/content-outer-back.gif) repeat-x;
-}
-
-#innerContentWrapper {
- margin: 0 auto;
- padding: 1px 10px 10px 10px;
- width: 760px;
- text-align: left;
-}
-
-#pageTitle {
- margin-bottom: 8px;
- color:#333;
- font-weight: bold;
- font-size: 1.5em;
- text-align: left;
- background-color: transparent;
- padding-top: 4px;
-}
-
-#pageContent {
- padding: 5px 10px;
- /*border: 1px solid #193F5A;
- border-width: 1px 0;*/
- border: solid 1px #3A3A3A;
- background: #122E43 url('../../images/layout/content-back.gif') repeat-x;
-}
-
-#content {
- float: left;
- width: 530px;
- min-height: 400px;
- color:#fcfcfc;
-}
-
-/** Sidebar **/
-
-#sidebar {
- margin-left: 535px;
- padding: 0 10px;
- font-size: 1.0em;
- color:#fcfcfc;
-}
-
-#sidebar h2, .sidebarBlock h2 {
- margin-top: 0;
- font-size: 1.05em;
-}
-
-#sidebar .blockContent {
- margin-bottom: 10px;
- padding: 0 5px;
- line-height: 120%;
-}
-
-#sidebar .listWithDetails li {
- padding-bottom: 5px;
-}
-
-/** Page actions **/
-
-#page_actions {
- height:30px;
- padding:5px 0;
-}
-
-#page_actions ul {
- margin: 0;
- padding: 0 10px;
- list-style: none;
-}
-
-#page_actions ul li {
- margin: 0 3px;
- float: left;
- padding:0;
- background: url(../../images/layout/action_right.gif) no-repeat top right;
-}
-
-#page_actions ul li a {
- border:none;
- display: block;
- padding: 0 10px;
- background: url(../../images/layout/action_left.gif) no-repeat top left;
- text-align: center;
- color: #444;
- font-weight:bold;
- font-size: 1.0em;
- line-height:20px;
- text-decoration: none;
-}
-
-#page_actions ul li a:hover {
- color: #3073A7;
- border:none;
-}
-
-/** Footer **/
-
-#footer {
- clear: both;
- margin: 0 auto;
- padding: 0 10px 20px 10px;
- width: 760px;
- text-align: left;
- color: #999;
- line-height: 130%;
- font-size: 0.8em;
- background-color:#fcfcfc;
-}
-
-#footer a:link, #footer a:visited{
- color:#3073A7;
-}
-
-#footer a:hover{
- color:#333;
-}
-
-#copy {
- float: left;
-}
-
-#productSignature {
- text-align: right;
-}
-
-#listOfRssFeeds {
- list-style: none;
- padding: 0 0 0 4px;
-}
-
-#listOfRssFeeds li {
- padding-left: 16px;
- background: url(../../images/icons/feed.gif) no-repeat;
- line-height: 12px;
- margin: 2px 0;
-}
-
-/** Helper classes **/
-
-.clear {
- clear: both;
- height: 1px;
- overflow: hidden;
-}
-
-#error, #success {
- margin: 10px 0;
- padding: 5px 10px;
- border: 1px solid #193F5A;
- clear: both;
- cursor: pointer;
- text-align: left;
-}
-
-#error {
- background: #FFB0B0;
- border-color: red;
-}
-
-#success {
- background: #90DC90;
- border-color: green;
-}
-
-/** User card **/
-
-div.card {
- padding: 10px;
- border: 1px solid #193F5A;
-}
-
-* html div.card {
- padding-top: 5px;
-}
-
-div.card div.cardIcon {
- float: left;
- width: 50px;
-}
-
-div.card div.cardData {
- margin-left: 60px;
-}
-
-div.card div.cardData h2 {
- margin-top: 0;
-}
-
-div.card div.cardBlock {
- margin-bottom: 25px;
- padding-left: 10px;
-}
-
-div.card div.cardBlock span {
- font-size: 100%;
- font-weight: bold;
- color:#fcfcfc;
-}
-
-div.card table {
- margin-top: 10px;
-}
-
-div.card table, div.card table tr, div.card table td {
- border: 0;
-}
-
-div.card table tr, div.card table td {
- padding: 2px;
-}
-
-/** / user card **/
-
-/** Advanced pagination **/
-
-div.advancedPagination {
- margin: 10px;
- text-align: right;
-}
-
-div.advancedPagination span {
- line-height: 20px;
-}
-
-div.advancedPagination select {
- padding: 0;
-}
-
-/** /Advanced pagination **/
-
-/** Private **/
-
-div.private {
- float: right;
- height: 9px;
- width: 37px;
- overflow: hidden;
- background: url(../../images/icons/private.gif) no-repeat;
-}
-
-div.private span {
- display: none;
-}
+body {
+ text-align: left;
+ font-size:80%;
+ font-family:arial,verdana,halvetica,sans-serif;
+ background:#0F2638;
+ border-bottom:30px solid #000;
+ margin:0;
+ padding:0;
+}
+
+#wrapper {
+ text-align: center;
+ background-color: #0F2638;
+}
+
+#headerWrapper {
+ /*background-color: #111111; */
+}
+
+#header {
+ width: 780px;
+ margin: 0 auto;
+ padding-top: 10px;
+ text-align: left;
+}
+
+#header h1 {
+ float: left;
+ margin: 0;
+ padding: 10px 0 10px 10px;
+ border: 0;
+}
+
+#header h1 a {
+ font-weight: normal;
+ border: 0;
+ font-size: 1.1em;
+ color:#fcfcfc;
+}
+
+#header h1 a:hover {
+ border: 0;
+ color:#fcfcfc;
+ background: transparent;
+ text-decoration: underline;
+}
+
+#systemNoticesWrapper {
+ background: red;
+ color: white;
+ text-align: center;
+}
+
+#systemNotices {
+ margin: 0 auto;
+ padding: 10px 0;
+ width: 760px;
+ text-align: left;
+}
+
+#systemNotices ul {
+ margin: 0;
+ padding: 0 0 0 15px;
+}
+
+#systemNotices a, #systemNotices a:hover {
+ border: 0;
+ color: white;
+ text-decoration: underline;
+}
+
+#userboxWrapper {
+ border: 1px solid #193F5A;
+ background: #111;
+ color: #fcfcfc;
+ float: right;
+ font-size: 11px;
+ font-size: 13px;
+ margin-bottom: 20px;
+ margin-right: 10px;
+ width: 297px;
+ z-index: 250;
+}
+
+#userbox {
+ padding: 5px 8px;
+
+}
+
+#userbox p{
+ float: right;
+ margin: 0;
+ padding: 5px;
+}
+
+/*-------------------- general userbox links---------------------*/
+#account_more_menu {
+ float: right;
+ list-style: none;
+ margin: 5px 0 0 0;
+ padding: 0;
+}
+
+#account_more_menu li{
+ border: 1px solid #c1c1c1;
+ float: left;
+ list-style: none;
+ margin:0pt 6pt 8pt 2px;
+ padding: 0;
+}
+
+#account_more_menu li a{
+ border: none;
+ display: block;
+ padding: 0px 10px 0px 6px
+}
+
+/*-------------------- submenus---------------------*/
+#account_more_menu ul {
+ background-color: #fff;
+ border: 1px solid #cccccc;
+ clear: left;
+ font-weight: normal; /* height: auto;*/
+ left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
+ line-height: 120%;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ width: 12em;
+ z-index: 1000 !important;
+}
+
+#account_more_menu ul li {
+ background-image: none !important;
+ border: none;
+ float: none;
+ font-size: 12px;
+ list-style: none;
+ list-style-image: none !important;
+ margin: 0;
+ padding: 0;
+}
+
+* html #account_more_menu ul li, * html #account_more_menu ul li a {
+ height: 1%;
+}
+
+#account_more_menu h6 {
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #8dbbce;
+ color: #333;
+ font-size: 12px;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a {
+ background-image: none !important;
+ border: none;
+ border-bottom: 1px solid #d8d8d8;
+ font-size: 12px;
+ font-weight: normal;
+ height: auto;
+ line-height: 1.2em;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+#account_more_menu ul li a:hover {
+ background-color: #e9f2f7;
+ color: #0079AF;
+ text-decoration: none;
+}
+
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{
+ left: -999em;
+}
+
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{
+ left: auto; /* lists nested under hovered list items */
+}
+
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{
+ background-color: #fff; /* position: relative;
+ z-index: 2500;*/
+ color: #0079af;
+}
+
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{
+ background-color: transparent;
+ color: #0079af;
+}
+
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{
+ background-color: #eef6ff;
+ color: #0079af;
+}
+
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{
+}
+
+* html>body #account_more_menu li{
+ text-align: center;
+ white-space: nowrap;
+ width: 60px;
+}
+
+* html>body #account_more_menu li li{
+ text-align: left;
+ white-space: nowrap;
+ width: 125px;
+}
+
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{
+ left: 110px;
+}
+
+
+/** Tabs **/
+
+#tabsWrapper {
+ width: 780px;
+ margin: 15px auto 0 auto;
+ text-align: left;
+}
+
+#tabs {
+ float: left;
+ padding-bottom:15px;
+ width: 670px;
+}
+
+#tabs ul {
+ margin: 0;
+ padding: 0 10px;
+ list-style: none;
+}
+
+#tabs ul li {
+ margin: 0 3px;
+ float: left;
+ background: url(../../images/layout/tab_right.gif) no-repeat top right;
+}
+
+#tabs ul li a {
+ border:none;
+ display: block;
+ padding: 10px 6px;
+ background: url(../../images/layout/tab_left.gif) no-repeat top left;
+ text-align: center;
+ color: #444;
+ font-weight:bold;
+ font-size: 1.2em;
+ line-height: 18px;
+ text-decoration: none;
+ position:relative;
+}
+
+#tabs ul li a:hover {
+ color: #3073A7;
+ border:none;
+}
+
+#tabs ul li.active {
+ background: url(../../images/layout/tab_active_right.gif) no-repeat top right;
+}
+
+#tabs ul li.active a {
+ padding: 10px 10px;
+ background: url(../../images/layout/tab_active_left.gif) no-repeat top left;
+ color:#fcfcfc;
+}
+
+#tabs ul li.active a:hover {
+ color: white;
+ text-decoration: none;
+}
+
+/** Crumbs **/
+
+#crumbsWrapper {
+ clear: both;
+ background: #000;
+ margin: 0 auto;
+ float: left;
+ width: 100%;
+ border-top:1px solid #193F5A;
+ padding:5px 0;
+}
+
+#crumbsBlock {
+ margin: 0 auto;
+ padding: 0 10px;
+ width: 760px;
+ line-height: 20px;
+ text-align: left;
+}
+
+#crumbs {
+ float: left;
+}
+
+#crumbs ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#crumbs ul li {
+ display: inline;
+ line-height: 22px;
+ color: white;
+ font-size: 0.9em;
+ font-weight: bold;
+}
+
+#crumbs ul li span {
+ font-weight: normal;
+}
+
+#crumbs ul li a {
+ margin: 0 3px;
+ border: 0;
+ color: white;
+ font-weight: bold;
+ text-decoration: none;
+}
+
+#crumbs ul li a:hover {
+ text-decoration: underline;
+ background: transparent;
+}
+
+#searchBox {
+ padding: 1px 0;
+ text-align: right;
+}
+
+#searchBox input {
+ border: 1px solid #999;
+ font-size: 1.0em;
+ padding: 1px;
+ width: 100px;
+ background: #fff;
+ color:#333;
+}
+
+#searchBox button {
+ margin: 0 0 0 3px;
+ border: none;
+ padding: 0;
+ font-size: 1.0em;
+ color:#fcfcfc;
+ background: #245377;
+ height: 1.6em;
+ line-height:1.6em;
+}
+
+/** Content **/
+
+.header{
+ font-size:1.2em;
+}
+
+#outerContentWrapper {
+ clear: both;
+ background: #fcfcfc url(../../images/layout/content-outer-back.gif) repeat-x;
+}
+
+#innerContentWrapper {
+ margin: 0 auto;
+ padding: 1px 10px 10px 10px;
+ width: 760px;
+ text-align: left;
+}
+
+#pageTitle {
+ margin-bottom: 8px;
+ color:#333;
+ font-weight: bold;
+ font-size: 1.5em;
+ text-align: left;
+ background-color: transparent;
+ padding-top: 4px;
+}
+
+#pageContent {
+ padding: 5px 10px;
+ /*border: 1px solid #193F5A;
+ border-width: 1px 0;*/
+ border: solid 1px #3A3A3A;
+ background: #122E43 url('../../images/layout/content-back.gif') repeat-x;
+}
+
+#content {
+ float: left;
+ width: 530px;
+ min-height: 400px;
+ color:#fcfcfc;
+}
+
+/** Sidebar **/
+
+#sidebar {
+ margin-left: 535px;
+ padding: 0 10px;
+ font-size: 1.0em;
+ color:#fcfcfc;
+}
+
+#sidebar h2, .sidebarBlock h2 {
+ margin-top: 0;
+ font-size: 1.05em;
+}
+
+#sidebar .blockContent {
+ margin-bottom: 10px;
+ padding: 0 5px;
+ line-height: 120%;
+}
+
+#sidebar .listWithDetails li {
+ padding-bottom: 5px;
+}
+
+/** Page actions **/
+
+#page_actions {
+ height:30px;
+ padding:5px 0;
+}
+
+#page_actions ul {
+ margin: 0;
+ padding: 0 10px;
+ list-style: none;
+}
+
+#page_actions ul li {
+ margin: 0 3px;
+ float: left;
+ padding:0;
+ background: url(../../images/layout/action_right.gif) no-repeat top right;
+}
+
+#page_actions ul li a {
+ border:none;
+ display: block;
+ padding: 0 10px;
+ background: url(../../images/layout/action_left.gif) no-repeat top left;
+ text-align: center;
+ color: #444;
+ font-weight:bold;
+ font-size: 1.0em;
+ line-height:20px;
+ text-decoration: none;
+}
+
+#page_actions ul li a:hover {
+ color: #3073A7;
+ border:none;
+}
+
+/** Footer **/
+
+#footer {
+ clear: both;
+ margin: 0 auto;
+ padding: 0 10px 20px 10px;
+ width: 760px;
+ text-align: left;
+ color: #999;
+ line-height: 130%;
+ font-size: 0.8em;
+ background-color:#fcfcfc;
+}
+
+#footer a:link, #footer a:visited{
+ color:#3073A7;
+}
+
+#footer a:hover{
+ color:#333;
+}
+
+#copy {
+ float: left;
+}
+
+#productSignature {
+ text-align: right;
+}
+
+#listOfRssFeeds {
+ list-style: none;
+ padding: 0 0 0 4px;
+}
+
+#listOfRssFeeds li {
+ padding-left: 16px;
+ background: url(../../images/icons/feed.gif) no-repeat;
+ line-height: 12px;
+ margin: 2px 0;
+}
+
+/** Helper classes **/
+
+.clear {
+ clear: both;
+ height: 1px;
+ overflow: hidden;
+}
+
+#error, #success {
+ margin: 10px 0;
+ padding: 5px 10px;
+ border: 1px solid #193F5A;
+ clear: both;
+ cursor: pointer;
+ text-align: left;
+}
+
+#error {
+ background: #FFB0B0;
+ border-color: red;
+}
+
+#success {
+ background: #90DC90;
+ border-color: green;
+}
+
+/** User card **/
+
+div.card {
+ padding: 10px;
+ border: 1px solid #193F5A;
+}
+
+* html div.card {
+ padding-top: 5px;
+}
+
+div.card div.cardIcon {
+ float: left;
+ width: 50px;
+}
+
+div.card div.cardData {
+ margin-left: 60px;
+}
+
+div.card div.cardData h2 {
+ margin-top: 0;
+}
+
+div.card div.cardBlock {
+ margin-bottom: 25px;
+ padding-left: 10px;
+}
+
+div.card div.cardBlock span {
+ font-size: 100%;
+ font-weight: bold;
+ color:#fcfcfc;
+}
+
+div.card table {
+ margin-top: 10px;
+}
+
+div.card table, div.card table tr, div.card table td {
+ border: 0;
+}
+
+div.card table tr, div.card table td {
+ padding: 2px;
+}
+
+/** / user card **/
+
+/** Advanced pagination **/
+
+div.advancedPagination {
+ margin: 10px;
+ text-align: right;
+}
+
+div.advancedPagination span {
+ line-height: 20px;
+}
+
+div.advancedPagination select {
+ padding: 0;
+}
+
+/** /Advanced pagination **/
+
+/** Private **/
+
+div.private {
+ float: right;
+ height: 9px;
+ width: 37px;
+ overflow: hidden;
+ background: url(../../images/icons/private.gif) no-repeat;
+}
+
+div.private span {
+ display: none;
+}
diff -urN projectpier-0.8.0.2/public/assets/themes/basic-aqua/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/basic-aqua/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/basic-aqua/stylesheets/general/construction.css 2007-06-28 04:20:38.000000000 -0700
+++ projectpier-0.8.0.2_patched/public/assets/themes/basic-aqua/stylesheets/general/construction.css 2008-05-21 13:14:34.000000000 -0700
@@ -70,53 +70,153 @@
}
#userboxWrapper {
- margin-left: 500px;
color: #666;
- font-size: 10px;
+ float: right;
+ font-size: 11px;
+ font-size: 13px;
+ margin-right: 10px;
+ width: 297px;
+ z-index: 250;
}
#userbox {
- padding: 5px 8px;
- text-align: right;
- font-size: 11px;
+ padding: 0 5px;
}
-#userbox ul {
- margin: 0;
- padding: 0;
- list-style: none;
+#userbox p{
+ float: right;
+ margin: 0;
+ padding: 2px;
}
-#userbox ul li {
- display: inline;
- margin-right: 2px;
+/*-------------------- general userbox links---------------------*/
+#account_more_menu {
+ float: right;
+ list-style: none;
+ margin: 5px 0 0 0;
+ padding: 0;
}
-#userbox .PopupMenuWidgetDiv {
- position: absolute;
- border: 1px solid #ccc;
- background: white;
- padding: 5px 10px;
- width: 140px;
- color: #333;
+#account_more_menu li{
+ float: left;
+ list-style: none;
+ margin:0pt 6pt 0pt 2px;
+ padding: 0;
}
-#userbox .PopupMenuWidgetDiv p {
- margin: 0;
- font-weight: bolder;
+#account_more_menu li a{
+ display: block;
+ padding: 0px 10px 0px 6px
}
-#userbox .PopupMenuWidgetDiv ul {
- margin-left: 12px;
- padding-left: 5px;
+/*-------------------- submenus---------------------*/
+#account_more_menu ul {
+ background-color: #fff;
+ border: 1px solid #cccccc;
+ clear: left;
+ font-weight: normal; /* height: auto;*/
+ left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
+ line-height: 120%;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ width: 12em;
+ z-index: 1000 !important;
}
-#userbox .PopupMenuWidgetDiv ul li {
- display: list-item;
- font-weight: normal;
- list-style: square;
+#account_more_menu ul li {
+ background-image: none !important;
+ border: none;
+ float: none;
+ font-size: 12px;
+ list-style: none;
+ list-style-image: none !important;
+ margin: 0;
+ padding: 0;
+}
+
+* html #account_more_menu ul li, * html #account_more_menu ul li a {
+ height: 1%;
+}
+
+#account_more_menu h6 {
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #8dbbce;
+ color: #333;
+ font-size: 12px;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a {
+ background-image: none !important;
+ border: none;
+ border-bottom: 1px solid #d8d8d8;
+ font-size: 12px;
+ font-weight: normal;
+ height: auto;
+ line-height: 1.2em;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+#account_more_menu ul li a:hover {
+ background-color: #e9f2f7;
+ color: #0079AF;
+ text-decoration: none;
+}
+
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{
+ left: -999em;
+}
+
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{
+ left: auto; /* lists nested under hovered list items */
+}
+
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{
+ background-color: #fff; /* position: relative;
+ z-index: 2500;*/
+ color: #0079af;
+}
+
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{
+ background-color: transparent;
+ color: #0079af;
+}
+
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{
+ background-color: #eef6ff;
+ color: #0079af;
+}
+
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{
+}
+
+* html>body #account_more_menu li{
+ text-align: center;
+ white-space: nowrap;
+ width: 60px;
}
+* html>body #account_more_menu li li{
+ text-align: left;
+ white-space: nowrap;
+ width: 125px;
+}
+
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{
+ left: 110px;
+}
+
+
/** Tabs **/
#tabsWrapper {
diff -urN projectpier-0.8.0.2/public/assets/themes/basic-orange/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/basic-orange/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/basic-orange/stylesheets/general/construction.css 2007-06-28 04:20:38.000000000 -0700
+++ projectpier-0.8.0.2_patched/public/assets/themes/basic-orange/stylesheets/general/construction.css 2008-05-21 13:14:34.000000000 -0700
@@ -70,53 +70,153 @@
}
#userboxWrapper {
- margin-left: 500px;
color: #666;
- font-size: 10px;
+ float: right;
+ font-size: 11px;
+ font-size: 13px;
+ margin-right: 10px;
+ width: 297px;
+ z-index: 250;
}
#userbox {
- padding: 5px 8px;
- text-align: right;
- font-size: 11px;
+ padding: 0 5px;
}
-#userbox ul {
- margin: 0;
- padding: 0;
- list-style: none;
+#userbox p{
+ float: right;
+ margin: 0;
+ padding: 2px;
}
-#userbox ul li {
- display: inline;
- margin-right: 2px;
+/*-------------------- general userbox links---------------------*/
+#account_more_menu {
+ float: right;
+ list-style: none;
+ margin: 5px 0 0 0;
+ padding: 0;
}
-#userbox .PopupMenuWidgetDiv {
- position: absolute;
- border: 1px solid #ccc;
- background: white;
- padding: 5px 10px;
- width: 140px;
- color: #333;
+#account_more_menu li{
+ float: left;
+ list-style: none;
+ margin:0pt 6pt 0pt 2px;
+ padding: 0;
}
-#userbox .PopupMenuWidgetDiv p {
- margin: 0;
- font-weight: bolder;
+#account_more_menu li a{
+ display: block;
+ padding: 0px 10px 0px 6px
}
-#userbox .PopupMenuWidgetDiv ul {
- margin-left: 12px;
- padding-left: 5px;
+/*-------------------- submenus---------------------*/
+#account_more_menu ul {
+ background-color: #fff;
+ border: 1px solid #cccccc;
+ clear: left;
+ font-weight: normal; /* height: auto;*/
+ left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
+ line-height: 120%;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ width: 12em;
+ z-index: 1000 !important;
}
-#userbox .PopupMenuWidgetDiv ul li {
- display: list-item;
- font-weight: normal;
- list-style: square;
+#account_more_menu ul li {
+ background-image: none !important;
+ border: none;
+ float: none;
+ font-size: 12px;
+ list-style: none;
+ list-style-image: none !important;
+ margin: 0;
+ padding: 0;
+}
+
+* html #account_more_menu ul li, * html #account_more_menu ul li a {
+ height: 1%;
+}
+
+#account_more_menu h6 {
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #8dbbce;
+ color: #333;
+ font-size: 12px;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a {
+ background-image: none !important;
+ border: none;
+ border-bottom: 1px solid #d8d8d8;
+ font-size: 12px;
+ font-weight: normal;
+ height: auto;
+ line-height: 1.2em;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+#account_more_menu ul li a:hover {
+ background-color: #e9f2f7;
+ color: #0079AF;
+ text-decoration: none;
+}
+
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{
+ left: -999em;
+}
+
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{
+ left: auto; /* lists nested under hovered list items */
+}
+
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{
+ background-color: #fff; /* position: relative;
+ z-index: 2500;*/
+ color: #0079af;
+}
+
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{
+ background-color: transparent;
+ color: #0079af;
+}
+
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{
+ background-color: #eef6ff;
+ color: #0079af;
+}
+
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{
+}
+
+* html>body #account_more_menu li{
+ text-align: center;
+ white-space: nowrap;
+ width: 60px;
}
+* html>body #account_more_menu li li{
+ text-align: left;
+ white-space: nowrap;
+ width: 125px;
+}
+
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{
+ left: 110px;
+}
+
+
/** Tabs **/
#tabsWrapper {
@@ -127,6 +227,7 @@
#tabs {
float: left;
+ width: 670px;
}
#tabs ul {
diff -urN projectpier-0.8.0.2/public/assets/themes/default/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/default/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/default/stylesheets/general/construction.css 2007-08-31 22:14:42.000000000 -0700
+++ projectpier-0.8.0.2_patched/public/assets/themes/default/stylesheets/general/construction.css 2008-05-21 13:14:34.000000000 -0700
@@ -103,55 +103,160 @@
}
#userboxWrapper {
- margin-left: 450px;
- color: #666;
- font-size: 10px;
+ background-color: #d8d8d8;
+ background-image: url(../../images/layout/bg_userbox.png);
+ background-repeat: repeat-x;
+ border: 1px solid #c1c1c1;
+ color: #666;
+ float: right;
+ font-size: 11px;
+ font-size: 13px;
+ margin-bottom: 20px;
+ margin-right: 10px;
+ width: 297px;
+ z-index: 250;
}
#userbox {
- padding: 5px 8px;
- text-align: right;
- border: 0px solid #ccc;
- font-size: 11px;
-
+ padding: 0 5px;
}
-#userbox ul {
- margin: 0;
- padding: 0;
- list-style: none;
+#userbox p{
+ float: right;
+ margin: 0;
+ padding: 5px;
+}
+
+/*-------------------- general userbox links---------------------*/
+#account_more_menu {
+ float: right;
+ list-style: none;
+ margin: 5px 0 0 0;
+ padding: 0;
+}
+
+#account_more_menu li{
+ border: 1px solid #c1c1c1;
+ float: left;
+ list-style: none;
+ margin:0pt 6pt 0pt 2px;
+ padding: 0;
+}
+
+#account_more_menu li a{
+ border: none;
+ display: block;
+ padding: 0px 10px 0px 6px
+}
+
+/*-------------------- submenus---------------------*/
+#account_more_menu ul {
+ background-color: #fff;
+ border: 1px solid #cccccc;
+ clear: left;
+ font-weight: normal; /* height: auto;*/
+ left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
+ line-height: 120%;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ width: 12em;
+ z-index: 1000 !important;
+}
+
+#account_more_menu ul li {
+ background-image: none !important;
+ border: none;
+ float: none;
+ font-size: 12px;
+ list-style: none;
+ list-style-image: none !important;
+ margin: 0;
+ padding: 0;
}
-#userbox ul li {
- display: inline;
- margin-right: 2px;
+* html #account_more_menu ul li, * html #account_more_menu ul li a {
+ height: 1%;
}
-#userbox .PopupMenuWidgetDiv {
- position: absolute;
- border: 1px solid #000063;
- background: white;
- padding: 5px 10px;
- width: 140px;
- color: #333;
+#account_more_menu h6 {
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #8dbbce;
+ color: #333;
+ font-size: 12px;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 10px !important;
}
-#userbox .PopupMenuWidgetDiv p {
- margin: 0;
- font-weight: bolder;
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a {
+ background-image: none !important;
+ border: none;
+ border-bottom: 1px solid #d8d8d8;
+ font-size: 12px;
+ font-weight: normal;
+ height: auto;
+ line-height: 1.2em;
+ margin: 0;
+ padding: 3px 10px !important;
}
-#userbox .PopupMenuWidgetDiv ul {
- margin-left: 12px;
- padding-left: 5px;
+#account_more_menu ul li a:hover {
+ background-color: #e9f2f7;
+ color: #0079AF;
+ text-decoration: none;
}
-#userbox .PopupMenuWidgetDiv ul li {
- display: list-item;
- font-weight: normal;
- list-style: disc;
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{
+ left: -999em;
}
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{
+ left: auto; /* lists nested under hovered list items */
+}
+
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{
+ background-color: #fff; /* position: relative;
+ z-index: 2500;*/
+ color: #0079af;
+}
+
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{
+ background-color: transparent;
+ color: #0079af;
+}
+
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{
+ background-color: #eef6ff;
+ color: #0079af;
+}
+
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{
+}
+
+* html>body #account_more_menu li{
+ text-align: center;
+ white-space: nowrap;
+ width: 60px;
+}
+
+* html>body #account_more_menu li li{
+ text-align: left;
+ white-space: nowrap;
+ width: 125px;
+}
+
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{
+ left: 110px;
+}
+
+
/** Tabs **/
#tabsWrapper {
@@ -163,6 +268,7 @@
#tabs {
float: left;
+ width: 670px;
}
#tabs ul {
diff -urN projectpier-0.8.0.2/public/assets/themes/ebrentnelson/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/ebrentnelson/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/ebrentnelson/stylesheets/general/construction.css 2007-07-05 20:13:32.000000000 -0700
+++ projectpier-0.8.0.2_patched/public/assets/themes/ebrentnelson/stylesheets/general/construction.css 2008-05-21 13:14:34.000000000 -0700
@@ -1,494 +1,598 @@
-body {
- text-align: left;
-}
-
-#wrapper {
- text-align: center;
- background-color: #111111;
-}
-
-#headerWrapper {
- /*background-color: #111111; */
-}
-
-#header {
- width: 780px;
- margin: 0 auto;
- padding-top: 10px;
- text-align: left;
- background: url('../../images/appLogo.png') no-repeat;
-}
-
-#header h1 {
- float: left;
- margin: 0;
- padding: 10px 0 10px 56px;
- border: 0;
-}
-
-#header h1 a {
- font-weight: normal;
- border: 0;
- font-size: 24px;
- color: #FFF;
-}
-
-#header h1 a:hover {
- border: 0;
- color: #FFF;
- background: transparent;
- text-decoration: underline;
-}
-
-#systemNoticesWrapper {
- background: red;
- color: white;
- text-align: center;
-}
-
-#systemNotices {
- margin: 0 auto;
- padding: 10px 0;
- width: 760px;
- text-align: left;
-}
-
-#systemNotices ul {
- margin: 0;
- padding: 0 0 0 15px;
-}
-
-#systemNotices a, #systemNotices a:hover {
- border: 0;
- color: white;
- text-decoration: underline;
-}
-
-#userboxWrapper {
- margin-left: 500px;
- color: #FFF;
- font-size: 10px;
-}
-
-#userbox {
- padding: 5px 8px;
- border: 1px solid #262626;
- background: #111111;
-}
-
-#userbox ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#userbox ul li {
- display: inline;
- margin-right: 10px;
-}
-
-#userbox .PopupMenuWidgetDiv {
- position: absolute;
- border: 1px solid #666;
- background: white;
- padding: 5px 10px;
- width: 140px;
- color: #333;
-}
-
-#userbox .PopupMenuWidgetDiv a {
- color: #006699;
-}
-
-#userbox .PopupMenuWidgetDiv p {
- margin: 0;
- font-weight: bolder;
-}
-
-#userbox .PopupMenuWidgetDiv ul {
- margin-left: 12px;
- padding-left: 5px;
-}
-
-#userbox .PopupMenuWidgetDiv ul li {
- display: list-item;
- font-weight: normal;
- list-style: square;
-}
-
-/** Tabs **/
-
-#tabsWrapper {
- width: 780px;
- margin: 5px auto 0 auto;
- text-align: left;
-}
-
-#tabs {
- float: left;
-}
-
-#tabs ul {
- margin: 0;
- padding: 0 10px;
- list-style: none;
-}
-
-#tabs ul li {
- margin: 0 1px;
- float: left;
- /*background: url('../../images/layout/tab_right.gif') no-repeat top right;*/
-}
-
-#tabs ul li a {
- border: solid 1px #3A3A3A;
- display: block;
- padding: 0 10px;
- /*background: url('../../images/layout/tab_left.gif') no-repeat top left;*/
- background-color:#333333;
- text-align: center;
- color: #FFF;
- font-size: 10px;
- /*font-weight: bolder;*/
- line-height: 18px;
- text-decoration: none;
-}
-
-#tabs ul li a:hover {
- border: solid 1px #006699;
- color: #FFF;
- /*text-decoration: underline;*/
-}
-
-#tabs ul li.active {
- /*background: url('../../images/layout/tab_active_right.gif') no-repeat top right;*/
-}
-
-#tabs ul li.active a {
- /* padding: 0.1em 0.6em; */
- padding: 0 10px;
- /*background: url('../../images/layout/tab_active_left.gif') no-repeat top left;*/
- background-color:#000000;
- color: #527FCA;
-}
-
-#tabs ul li.active a:hover {
- color: white;
- text-decoration: none;
-}
-
-/** Crumbs **/
-
-#crumbsWrapper {
- clear: both;
- background: #111;
- margin: 0 auto;
- float: left;
- width: 100%;
-}
-
-#crumbsBlock {
- margin: 0 auto;
- padding: 0 10px;
- width: 760px;
- line-height: 20px;
- text-align: left;
-}
-
-#crumbs {
- float: left;
-}
-
-#crumbs ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#crumbs ul li {
- display: inline;
- line-height: 22px;
- color: white;
- font-size: 10px;
- font-weight: bolder;
-}
-
-#crumbs ul li span {
- font-weight: normal;
-}
-
-#crumbs ul li a {
- margin: 0 3px;
- border: 0;
- color: white;
- font-weight: bolder;
- text-decoration: none;
-}
-
-#crumbs ul li a:hover {
- text-decoration: underline;
- background: transparent;
-}
-
-#searchBox {
- padding: 1px 0;
- text-align: right;
-}
-
-#searchBox input {
- border: 1px solid #3A3A3A;
- font-size: 10px;
- padding: 1px;
- width: 100px;
- background: #e8e8e8;
-}
-
-#searchBox input:focus {
- background: #f8f8f8;
-}
-
-#searchBox button {
- margin: 0 0 0 2px;
- border: #3A3A3A;
- padding: 0;
- font-size: 10px;
- color: #ccc;
- background: #222;
- height: 16px;
-}
-
-/** Content **/
-
-#outerContentWrapper {
- clear: both;
- background-color: #111111;
- /*background: url('../../images/layout/content-back.gif') repeat-x;*/
-}
-
-#innerContentWrapper {
- margin: 0 auto;
- padding: 10px;
- width: 760px;
- text-align: left;
-}
-
-#pageTitle {
- margin-bottom: 8px;
- color: #FFFFFF;
- font-weight: normal;
- font-size: 10pt;
- text-align: center;
- background-color: #000000;
- padding-top: 4px;
- border: 1px solid #262626;
-}
-
-#pageContent {
- padding: 5px 10px;
- /*border: 1px solid #ccc;
- border-width: 1px 0;*/
- border: solid 1px #3A3A3A;
- background: #000000 url('../../images/layout/content-back.gif') repeat-x;
-}
-
-#content {
- float: left;
- width: 530px;
- min-height: 400px;
- color: #FFFFFF;
-}
-
-/** Sidebar **/
-
-#sidebar {
- margin-left: 535px;
- padding: 0 10px;
- font-size: 10px;
- color: #FFFFFF;
-}
-
-#sidebar h2 {
- margin-top: 0;
- font-size: 12px;
-}
-
-#sidebar .blockContent {
- margin-bottom: 10px;
- padding: 0 5px;
- line-height: 120%;
-}
-
-#sidebar .listWithDetails li {
- padding-bottom: 5px;
-}
-
-/** Page actions **/
-
-#page_actions {
- margin-bottom: 10px;
-}
-
-#page_actions ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#page_actions ul li {
- padding-right: 3px;
- display: inline;
- font-weight: bolder;
- font-size: 10px;
-}
-
-#page_actions ul li a {
- border: 0;
- padding: 0 15px 0 0;
- color: #FFF;
- text-decoration: underline;
- background: url('../../images/icons/more_down.gif') no-repeat right bottom;
-}
-
-#page_actions ul li a:hover {
- color: black;
-}
-
-/** Footer **/
-
-#footer {
- clear: both;
- margin: 10px auto;
- padding: 0 10px 10px 10px;
- width: 760px;
- text-align: left;
- color: #999;
- line-height: 130%;
- font-size: 9px;
-}
-
-#copy {
- float: left;
-}
-
-#productSignature {
- text-align: right;
-}
-
-#listOfRssFeeds {
- list-style: none;
- padding: 0 0 0 4px;
-}
-
-#listOfRssFeeds li {
- padding-left: 16px;
- background: url('../../images/icons/feed.gif') no-repeat;
- line-height: 12px;
- margin: 2px 0;
-}
-
-/** Helper classes **/
-
-.clear {
- clear: both;
- height: 1px;
- overflow: hidden;
-}
-
-#error, #success {
- margin: 10px 0;
- padding: 5px 10px;
- border: 1px solid #ccc;
- clear: both;
- cursor: pointer;
- text-align: left;
-}
-
-#error {
- background: #FFB0B0;
- border-color: red;
-}
-
-#success {
- background: #90DC90;
- border-color: green;
-}
-
-/** User card **/
-
-div.card {
- padding: 10px;
- border: 1px solid #ccc;
-}
-
-* html div.card {
- padding-top: 5px;
-}
-
-div.card div.cardIcon {
- float: left;
- width: 50px;
-}
-
-div.card div.cardData {
- margin-left: 60px;
-}
-
-div.card div.cardData h2 {
- margin-top: 0;
-}
-
-div.card div.cardBlock {
- margin-bottom: 25px;
- padding-left: 10px;
-}
-
-div.card div.cardBlock span {
- font-size: 90%;
- font-weight: bolder;
- color: #CCC;
-}
-
-div.card table {
- margin-top: 10px;
-}
-
-div.card table, div.card table tr, div.card table td {
- border: 0;
-}
-
-div.card table tr, div.card table td {
- padding: 2px;
-}
-
-/** / user card **/
-
-/** Advanced pagination **/
-
-div.advancedPagination {
- margin: 10px;
- text-align: right;
-}
-
-div.advancedPagination span {
- line-height: 20px;
-}
-
-div.advancedPagination select {
- padding: 0;
-}
-
-/** /Advanced pagination **/
-
-/** Private **/
-
-div.private {
- float: right;
- height: 9px;
- width: 37px;
- overflow: hidden;
- background: url('../../images/icons/private.gif') no-repeat;
-}
-
-div.private span {
- display: none;
-}
+body {
+ text-align: left;
+}
+
+#wrapper {
+ text-align: center;
+ background-color: #111111;
+}
+
+#headerWrapper {
+ /*background-color: #111111; */
+}
+
+#header {
+ width: 780px;
+ margin: 0 auto;
+ padding-top: 10px;
+ text-align: left;
+ background: url('../../images/appLogo.png') no-repeat;
+}
+
+#header h1 {
+ float: left;
+ margin: 0;
+ padding: 10px 0 10px 56px;
+ border: 0;
+}
+
+#header h1 a {
+ font-weight: normal;
+ border: 0;
+ font-size: 24px;
+ color: #FFF;
+}
+
+#header h1 a:hover {
+ border: 0;
+ color: #FFF;
+ background: transparent;
+ text-decoration: underline;
+}
+
+#systemNoticesWrapper {
+ background: red;
+ color: white;
+ text-align: center;
+}
+
+#systemNotices {
+ margin: 0 auto;
+ padding: 10px 0;
+ width: 760px;
+ text-align: left;
+}
+
+#systemNotices ul {
+ margin: 0;
+ padding: 0 0 0 15px;
+}
+
+#systemNotices a, #systemNotices a:hover {
+ border: 0;
+ color: white;
+ text-decoration: underline;
+}
+
+#userboxWrapper {
+ margin-left: 500px;
+ color: #FFF;
+ font-size: 10px;
+}
+
+#userboxWrapper {
+ padding: 5px 8px;
+ background: #111111;
+ color: #666;
+ font-size: 11px;
+ font-size: 13px;
+ width: 297px;
+ z-index: 250;
+ margin-top: 30px;
+}
+
+#userbox {
+ padding: 0 5px;
+}
+
+#userbox p{
+ float: right;
+ margin: 0;
+ padding: 5px;
+}
+
+/*-------------------- general userbox links---------------------*/
+#account_more_menu {
+ float: right;
+ list-style: none;
+ margin: 0px 0 0 0;
+ padding: 0;
+ margin-bottom: 30px;
+}
+
+#account_more_menu li{
+ float: left;
+ list-style: none;
+ margin:0pt 6pt 0pt 2px;
+ padding: 0;
+}
+
+#account_more_menu li a{
+ display: block;
+ padding: 0px 10px 0px 6px
+}
+
+/*-------------------- submenus---------------------*/
+#account_more_menu ul {
+ background-color: #fff;
+ border: 1px solid #cccccc;
+ clear: left;
+ font-weight: normal; /* height: auto;*/
+ left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
+ line-height: 120%;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ width: 12em;
+ z-index: 1000 !important;
+}
+
+#account_more_menu ul li {
+ background-image: none !important;
+ border: none;
+ float: none;
+ font-size: 12px;
+ list-style: none;
+ list-style-image: none !important;
+ margin: 0;
+ padding: 0;
+}
+
+* html #account_more_menu ul li, * html #account_more_menu ul li a {
+ height: 1%;
+}
+
+#account_more_menu h6 {
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #8dbbce;
+ color: #333;
+ font-size: 12px;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a {
+ background-image: none !important;
+ border: none;
+ border-bottom: 1px solid #d8d8d8;
+ font-size: 12px;
+ font-weight: normal;
+ height: auto;
+ line-height: 1.2em;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+#account_more_menu ul li a:hover {
+ background-color: #e9f2f7;
+ color: #0079AF;
+ text-decoration: none;
+}
+
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{
+ left: -999em;
+}
+
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{
+ left: auto; /* lists nested under hovered list items */
+}
+
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{
+ background-color: #fff; /* position: relative;
+ z-index: 2500;*/
+ color: #0079af;
+}
+
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{
+ background-color: transparent;
+ color: #0079af;
+}
+
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{
+ background-color: #eef6ff;
+ color: #0079af;
+}
+
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{
+}
+
+* html>body #account_more_menu li{
+ text-align: center;
+ white-space: nowrap;
+ width: 60px;
+}
+
+* html>body #account_more_menu li li{
+ text-align: left;
+ white-space: nowrap;
+ width: 125px;
+}
+
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{
+ left: 110px;
+}
+
+/** Tabs **/
+
+#tabsWrapper {
+ width: 780px;
+ margin: 5px auto 0 auto;
+ text-align: left;
+}
+
+#tabs {
+ float: left;
+ width: 670px;
+}
+
+#tabs ul {
+ margin: 0;
+ padding: 0 10px;
+ list-style: none;
+}
+
+#tabs ul li {
+ margin: 0 1px;
+ float: left;
+ /*background: url('../../images/layout/tab_right.gif') no-repeat top right;*/
+}
+
+#tabs ul li a {
+ border: solid 1px #3A3A3A;
+ display: block;
+ padding: 0 10px;
+ /*background: url('../../images/layout/tab_left.gif') no-repeat top left;*/
+ background-color:#333333;
+ text-align: center;
+ color: #FFF;
+ font-size: 10px;
+ /*font-weight: bolder;*/
+ line-height: 18px;
+ text-decoration: none;
+}
+
+#tabs ul li a:hover {
+ border: solid 1px #006699;
+ color: #FFF;
+ /*text-decoration: underline;*/
+}
+
+#tabs ul li.active {
+ /*background: url('../../images/layout/tab_active_right.gif') no-repeat top right;*/
+}
+
+#tabs ul li.active a {
+ /* padding: 0.1em 0.6em; */
+ padding: 0 10px;
+ /*background: url('../../images/layout/tab_active_left.gif') no-repeat top left;*/
+ background-color:#000000;
+ color: #527FCA;
+}
+
+#tabs ul li.active a:hover {
+ color: white;
+ text-decoration: none;
+}
+
+/** Crumbs **/
+
+#crumbsWrapper {
+ clear: both;
+ background: #111;
+ margin: 0 auto;
+ float: left;
+ width: 100%;
+}
+
+#crumbsBlock {
+ margin: 0 auto;
+ padding: 0 10px;
+ width: 760px;
+ line-height: 20px;
+ text-align: left;
+}
+
+#crumbs {
+ float: left;
+}
+
+#crumbs ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#crumbs ul li {
+ display: inline;
+ line-height: 22px;
+ color: white;
+ font-size: 10px;
+ font-weight: bolder;
+}
+
+#crumbs ul li span {
+ font-weight: normal;
+}
+
+#crumbs ul li a {
+ margin: 0 3px;
+ border: 0;
+ color: white;
+ font-weight: bolder;
+ text-decoration: none;
+}
+
+#crumbs ul li a:hover {
+ text-decoration: underline;
+ background: transparent;
+}
+
+#searchBox {
+ padding: 1px 0;
+ text-align: right;
+}
+
+#searchBox input {
+ border: 1px solid #3A3A3A;
+ font-size: 10px;
+ padding: 1px;
+ width: 100px;
+ background: #e8e8e8;
+}
+
+#searchBox input:focus {
+ background: #f8f8f8;
+}
+
+#searchBox button {
+ margin: 0 0 0 2px;
+ border: #3A3A3A;
+ padding: 0;
+ font-size: 10px;
+ color: #ccc;
+ background: #222;
+ height: 16px;
+}
+
+/** Content **/
+
+#outerContentWrapper {
+ clear: both;
+ background-color: #111111;
+ /*background: url('../../images/layout/content-back.gif') repeat-x;*/
+}
+
+#innerContentWrapper {
+ margin: 0 auto;
+ padding: 10px;
+ width: 760px;
+ text-align: left;
+}
+
+#pageTitle {
+ margin-bottom: 8px;
+ color: #FFFFFF;
+ font-weight: normal;
+ font-size: 10pt;
+ text-align: center;
+ background-color: #000000;
+ padding-top: 4px;
+ border: 1px solid #262626;
+}
+
+#pageContent {
+ padding: 5px 10px;
+ /*border: 1px solid #ccc;
+ border-width: 1px 0;*/
+ border: solid 1px #3A3A3A;
+ background: #000000 url('../../images/layout/content-back.gif') repeat-x;
+}
+
+#content {
+ float: left;
+ width: 530px;
+ min-height: 400px;
+ color: #FFFFFF;
+}
+
+/** Sidebar **/
+
+#sidebar {
+ margin-left: 535px;
+ padding: 0 10px;
+ font-size: 10px;
+ color: #FFFFFF;
+}
+
+#sidebar h2 {
+ margin-top: 0;
+ font-size: 12px;
+}
+
+#sidebar .blockContent {
+ margin-bottom: 10px;
+ padding: 0 5px;
+ line-height: 120%;
+}
+
+#sidebar .listWithDetails li {
+ padding-bottom: 5px;
+}
+
+/** Page actions **/
+
+#page_actions {
+ margin-bottom: 10px;
+}
+
+#page_actions ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#page_actions ul li {
+ padding-right: 3px;
+ display: inline;
+ font-weight: bolder;
+ font-size: 10px;
+}
+
+#page_actions ul li a {
+ border: 0;
+ padding: 0 15px 0 0;
+ color: #FFF;
+ text-decoration: underline;
+ background: url('../../images/icons/more_down.gif') no-repeat right bottom;
+}
+
+#page_actions ul li a:hover {
+ color: black;
+}
+
+/** Footer **/
+
+#footer {
+ clear: both;
+ margin: 10px auto;
+ padding: 0 10px 10px 10px;
+ width: 760px;
+ text-align: left;
+ color: #999;
+ line-height: 130%;
+ font-size: 9px;
+}
+
+#copy {
+ float: left;
+}
+
+#productSignature {
+ text-align: right;
+}
+
+#listOfRssFeeds {
+ list-style: none;
+ padding: 0 0 0 4px;
+}
+
+#listOfRssFeeds li {
+ padding-left: 16px;
+ background: url('../../images/icons/feed.gif') no-repeat;
+ line-height: 12px;
+ margin: 2px 0;
+}
+
+/** Helper classes **/
+
+.clear {
+ clear: both;
+ height: 1px;
+ overflow: hidden;
+}
+
+#error, #success {
+ margin: 10px 0;
+ padding: 5px 10px;
+ border: 1px solid #ccc;
+ clear: both;
+ cursor: pointer;
+ text-align: left;
+}
+
+#error {
+ background: #FFB0B0;
+ border-color: red;
+}
+
+#success {
+ background: #90DC90;
+ border-color: green;
+}
+
+/** User card **/
+
+div.card {
+ padding: 10px;
+ border: 1px solid #ccc;
+}
+
+* html div.card {
+ padding-top: 5px;
+}
+
+div.card div.cardIcon {
+ float: left;
+ width: 50px;
+}
+
+div.card div.cardData {
+ margin-left: 60px;
+}
+
+div.card div.cardData h2 {
+ margin-top: 0;
+}
+
+div.card div.cardBlock {
+ margin-bottom: 25px;
+ padding-left: 10px;
+}
+
+div.card div.cardBlock span {
+ font-size: 90%;
+ font-weight: bolder;
+ color: #CCC;
+}
+
+div.card table {
+ margin-top: 10px;
+}
+
+div.card table, div.card table tr, div.card table td {
+ border: 0;
+}
+
+div.card table tr, div.card table td {
+ padding: 2px;
+}
+
+/** / user card **/
+
+/** Advanced pagination **/
+
+div.advancedPagination {
+ margin: 10px;
+ text-align: right;
+}
+
+div.advancedPagination span {
+ line-height: 20px;
+}
+
+div.advancedPagination select {
+ padding: 0;
+}
+
+/** /Advanced pagination **/
+
+/** Private **/
+
+div.private {
+ float: right;
+ height: 9px;
+ width: 37px;
+ overflow: hidden;
+ background: url('../../images/icons/private.gif') no-repeat;
+}
+
+div.private span {
+ display: none;
+}
diff -urN projectpier-0.8.0.2/public/assets/themes/goCollab/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/goCollab/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/goCollab/stylesheets/general/construction.css 2007-07-01 20:31:12.000000000 -0700
+++ projectpier-0.8.0.2_patched/public/assets/themes/goCollab/stylesheets/general/construction.css 2008-05-21 13:14:34.000000000 -0700
@@ -1,542 +1,617 @@
-body {
- text-align: left;
-}
-
-#wrapper {
- text-align: center;
-}
-
-#squidLogo {
- float: left;
- margin: -10px 0 0 0;
-}
-
-#squidLogo[id] {
- float: left;
- margin: 0;
-}
-
-#header {
- width: 780px;
- margin: 0 auto;
- padding-top: 10px;
- text-align: left;
-}
-
-#header h1 {
- float: left;
- margin: 0;
- padding: 13px 0 10px 10px;
- border: 0;
-}
-
-#header h1 a {
- font-weight: normal;
- font-size: 85% !important;
- border: 0;
- font-size: 24px;
- color: white;
-}
-
-#header h1 a:hover {
- border: 0;
- color: #fff;
- background: transparent;
- border-bottom: 1px dotted #eee;
- border-top: 1px dotted #ccc;
-}
-
-#systemNoticesWrapper {
- background: red;
- color: white;
- text-align: center;
-}
-
-#systemNotices {
- margin: 0 auto;
- padding: 10px 0;
- width: 760px;
- text-align: left;
-}
-
-#systemNotices ul {
- margin: 0;
- padding: 0 0 0 15px;
-}
-
-#systemNotices a, #systemNotices a:hover {
- border: 0;
- color: white;
- text-decoration: underline;
-}
-
-#userboxWrapper {
- margin-left: 450px;
- color: #e68216;
- font-size: 10px;
-}
-
-#userbox {
- padding: 5px 8px;
- border: 0px solid #ccc;
- background: #000 url('../../images/layout/bg_userBox.gif') repeat-x;
-}
-
-#userbox a {
- color: #e68216;
- text-decoration: none;
- border-bottom: 0px dotted #e68216;
-}
-
-#userbox a:hover {
- color: #fff;
- background: none;
-}
-
-#userbox ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#userbox ul li {
- display: inline;
- margin-right: 10px;
-font-size: 115%;
-
-}
-#userbox li img {
- padding: 0 3px;
-
- }
-#userbox ul li a {
- color: #F19F49;
- text-decoration: none;
- border-bottom: 0px dotted #e68216;
-}
-
-#userbox ul li a:hover {
- color: #F19F49;
- background: none;
- border-bottom: 1px dotted #F19F49;
-}
-
-#userbox .PopupMenuWidgetDiv {
- position: absolute;
- background: #000 url('../../images/layout/bg_userBox.gif') repeat-x;
- padding: 10px 10px 15px 10px;
- width: 140px;
- border: none;
- color: #686868;
-}
-
-#userbox .PopupMenuWidgetDiv p {
- margin: 0;
- font-weight: bolder;
-}
-
-#userbox .PopupMenuWidgetDiv ul {
- margin-left: 12px;
- padding-left: 5px;
-}
-
-#userbox .PopupMenuWidgetDiv ul li {
- display: list-item;
- font-weight: normal;
- list-style: square;
-}
-
-/** Tabs **/
-
-#tabsWrapper {
- width: 780px;
- margin: 3px auto 0 auto;
- text-align: left;
-}
-
-#tabs {
- float: left;
-}
-
-#tabs ul {
- margin: 0;
- padding: 0 10px;
- list-style: none;
-}
-
-#tabs ul li {
- margin: 0 1px;
- float: left;
- background: black;
-}
-
-#tabs ul li a {
- border: 0;
- display: block;
- padding: 4px 10px 0 10px;
- margin-bottom: 3px;
- background: black;
- text-align: center;
- color: #6aa94e;
- font-size: 13px;
- font-weight: bolder;
- line-height: 18px;
- text-decoration: none;
- font-weight: normal;
- text-transform: lowercase;
-}
-
-#tabs ul li a:hover {
- font-weight: normal;
- border: 0;
- color: #fff;
- text-decoration: none;
-}
-
-#tabs ul li.active {
- background: url('../../images/layout/tab_active_right.gif') no-repeat top right;
-}
-
-#tabs ul li.active a {
- /* padding: 0.1em 0.6em; */
- padding: 4px 10px 0 10px;
- background: url('../../images/layout/tab_active_left.gif') no-repeat top left;
- color: white;
- font-weight: bolder;
-}
-
-#tabs ul li.active a:hover {
- color: white;
- text-decoration: none;
- font-weight: bolder;
-}
-
-/** Crumbs **/
-
-#crumbsWrapper {
- clear: both;
- background: #99cc66 url('../../images/layout/gb_crumbLine.gif') repeat-x;
- margin: 0 auto;
- float: left;
- width: 100%;
-}
-
-#crumbsBlock {
- margin: 0 auto;
- margin-top: 0px;
- padding: 0 10px;
- width: 760px;
- line-height: 20px;
- text-align: left;
-}
-
-#crumbs {
- float: left;
-}
-
-#crumbs ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#crumbs ul li {
- display: inline;
- line-height: 22px;
- color: #3c622c;
- font-size: 11px;
-}
-
-#crumbs ul li span {
- font-weight: bolder;
-}
-
-#crumbs ul li a {
- margin: 0 3px;
- border: 0;
- color: #3c622c;
- text-decoration: none;
-}
-
-#crumbs ul li a:hover {
- color: #f4f19f;
- text-decoration: none;
- background: transparent;
-}
-
-#searchBox {
- padding: 1px 0;
- text-align: right;
-}
-
-#searchBox input {
- border: 1px solid #6aa94e;
- font-size: 10px;
- padding: 1px 1px 1px 4px;
- width: 100px;
- background: #99cc66;
- color: #3c622c;
-}
-
-#searchBox input:focus {
- background: #f4f19f;
-}
-
-#searchBox button {
- margin: 0 0 0 3px;
- border: 1px solid #3c622c;
- padding: 0;
- font-size: 10px;
- color: #ccc;
- background: #3c622c;
- height: 16px;
-}
-
-/** Content **/
-
-#outerContentWrapper {
- clear: both;
- background: #7ccc5c url('../../images/layout/bg_page.png') repeat-x;
- padding-top: 25px;
-}
-
-#innerContentWrapper {
- margin: 0 auto;
- padding: 0px 0 0 0;
- width: 760px;
- text-align: left;
- border: 1px solid #6aa94e;
- border-width: 0 1px 1px 1px;
-}
-
-#pageTitle {
- font-size: 20px;
- padding: 10px 0 10px 10px;
- margin: 0;
- color: #333;
- font-weight: normal;
- border-top: 1px solid #6aa94e;
- background: #eee url('../../images/layout/pg_pageTitle.png') repeat-x ;
-}
-
-#pageContent {
- padding: 5px 10px 10px 10px;
- border: 1px solid #999;
- border-width: 1px 0;
- background: white;
-}
-
-#content {
- float: left;
- width: 530px;
- min-height: 400px;
-}
-
-/** Sidebar **/
-
-#sidebar {
- margin-left: 535px;
- margin-top: 45px;
- padding: 0 0 0 20px;
- font-size: 10px;
-}
-
-#sidebar h2 {
- margin: 10px 0 2px 0;
- font-size: 12px;
-}
-
-#sidebar .blockContent {
- margin-bottom: 10px;
- padding: 0 5px;
- line-height: 170%;
-}
-
-#sidebar ul {
- list-style-image: disc;
- margin-left: 5px;
- }
-
-#sidebar .listWithDetails li {
- padding-bottom: 5px;
-}
-
-/** Page actions **/
-
-#page_actions {
- margin: 5px 0px 20px 0px;
-}
-
-#page_actions ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#page_actions ul li {
- padding-right: 3px;
- display: inline;
- font-weight: bolder;
- font-size: 10px;
-}
-
-#page_actions ul li a {
- border: 0;
- padding: 0 15px 0 0;
- color: #637277;
- text-decoration: none;
- background: url('../../images/icons/more_down.gif') no-repeat right bottom;
-}
-
-#page_actions ul li a:hover {
- color: black;
-}
-
-/** Footer **/
-
-#footer {
- clear: both;
- margin: 10px auto;
- padding: 0 10px 10px 10px;
- width: 760px;
- text-align: left;
- color: #3c622c;
- line-height: 130%;
- font-size: 9px;
-}
-
-#copy {
- float: left;
-}
-
-#productSignature {
- text-align: right;
- display: none;
-}
-
-#listOfRssFeeds {
- list-style: none;
- padding: 0 0 0 4px;
-}
-
-#listOfRssFeeds li {
- padding-left: 16px;
- background: url('../../images/icons/feed.gif') no-repeat;
- line-height: 12px;
- margin: 2px 0;
-}
-
-/** Helper classes **/
-
-.clear {
- clear: both;
- height: 1px;
- overflow: hidden;
-}
-
-#error, #success {
- margin: 10px 0;
- padding: 10px ;
- font-size: 120%; 0
- border: 1px solid ;
- clear: both;
- color: white;
- font-weight: bold;
- cursor: pointer;
- text-align: center;
-}
-
-#error {
- background: #FFB0B0;
- border-color: red;
-}
-
-#success {
- background: #bffd81;
- border-color: #6aae4f;
- color: #3C622C;
-
-}
-
-/** User card **/
-
-div.card {
- padding: 10px;
- border: 1px solid #ccc;
-}
-
-* html div.card {
- padding-top: 5px;
-}
-
-div.card div.cardIcon {
- float: left;
- width: 50px;
-}
-
-div.card div.cardData {
- margin-left: 60px;
-}
-
-div.card div.cardData h2 {
- margin-top: 0;
-}
-
-div.card div.cardBlock {
- margin-bottom: 25px;
- padding-left: 10px;
-}
-
-div.card div.cardBlock span {
- font-size: 90%;
- font-weight: bolder;
- color: #333;
-}
-
-div.card table {
- margin-top: 10px;
-}
-
-div.card table, div.card table tr, div.card table td {
- border: 0;
-}
-
-div.card table tr, div.card table td {
- padding: 2px;
-}
-
-/** / user card **/
-
-/** Advanced pagination **/
-
-div.advancedPagination {
- margin: 10px;
- text-align: right;
-}
-
-div.advancedPagination span {
- line-height: 20px;
- font-size: 9px;
- color: #666;
- text-transform: uppercase;
-}
-
-div.advancedPagination select {
- padding: 0;
-}
-
-/** /Advanced pagination **/
-
-/** Private **/
-
-div.private {
- float: right;
- height: 9px;
- width: 37px;
- overflow: hidden;
- background: url('../../images/icons/private.gif') no-repeat;
-}
-
-div.private span {
- display: none;
-}
+body {
+ text-align: left;
+}
+
+#wrapper {
+ text-align: center;
+}
+
+#squidLogo {
+ float: left;
+ margin: -10px 0 0 0;
+}
+
+#squidLogo[id] {
+ float: left;
+ margin: 0;
+}
+
+#header {
+ width: 780px;
+ margin: 0 auto;
+ padding-top: 1px;
+ text-align: left;
+}
+
+#header h1 {
+ float: left;
+ margin: 0;
+ padding: 13px 0 10px 10px;
+ border: 0;
+}
+
+#header h1 a {
+ font-weight: normal;
+ font-size: 85% !important;
+ border: 0;
+ font-size: 24px;
+ color: white;
+}
+
+#header h1 a:hover {
+ border: 0;
+ color: #fff;
+ background: transparent;
+ border-bottom: 1px dotted #eee;
+ border-top: 1px dotted #ccc;
+}
+
+#systemNoticesWrapper {
+ background: red;
+ color: white;
+ text-align: center;
+}
+
+#systemNotices {
+ margin: 0 auto;
+ padding: 10px 0;
+ width: 760px;
+ text-align: left;
+}
+
+#systemNotices ul {
+ margin: 0;
+ padding: 0 0 0 15px;
+}
+
+#systemNotices a, #systemNotices a:hover {
+ border: 0;
+ color: white;
+ text-decoration: underline;
+}
+
+#userboxWrapper {
+ padding: 5px 8px;
+ border: 0px solid #ccc;
+ background: #000 url('../../images/layout/bg_userBox.gif') repeat-x;
+ color: #666;
+ float: right;
+ font-size: 11px;
+ font-size: 13px;
+ margin-bottom: 11px;
+ width: 530px;
+ z-index: 250;
+}
+
+#userbox {
+ padding: 0 5px;
+}
+
+#userbox p{
+ float: right;
+ margin: 0;
+ padding: 5px;
+}
+
+/*-------------------- general userbox links---------------------*/
+#account_more_menu {
+ float: right;
+ list-style: none;
+ margin: 5px 0 0 0;
+ padding: 0;
+}
+
+#account_more_menu li{
+ float: left;
+ list-style: none;
+ margin:0pt 6pt 0pt 2px;
+ padding: 0;
+}
+
+#account_more_menu li a{
+ border: none;
+ display: block;
+ padding: 0px 10px 0px 6px
+}
+
+/*-------------------- submenus---------------------*/
+#account_more_menu ul {
+ background-color: #fff;
+ border: 1px solid #cccccc;
+ clear: left;
+ font-weight: normal; /* height: auto;*/
+ left: -999em;
+ line-height: 120%;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ width: 12em;
+ z-index: 1000 !important;
+}
+
+#account_more_menu ul li {
+ background-image: none !important;
+ border: none;
+ float: none;
+ font-size: 12px;
+ list-style: none;
+ list-style-image: none !important;
+ margin: 0;
+ padding: 0;
+}
+
+* html #account_more_menu ul li, * html #account_more_menu ul li a {
+ height: 1%;
+}
+
+#account_more_menu h6 {
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #8dbbce;
+ color: #333;
+ font-size: 12px;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a {
+ background-image: none !important;
+ border: none;
+ border-bottom: 1px solid #d8d8d8;
+ font-size: 12px;
+ font-weight: normal;
+ height: auto;
+ line-height: 1.2em;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+#account_more_menu ul li a:hover {
+ background-color: #e9f2f7;
+ color: #0079AF;
+ text-decoration: none;
+}
+
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{
+ left: -999em;
+}
+
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{
+ left: auto; /* lists nested under hovered list items */
+}
+
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{
+ background-color: #fff; /* position: relative;
+ z-index: 2500;*/
+ color: #0079af;
+}
+
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{
+ background-color: transparent;
+ color: #0079af;
+}
+
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{
+ background-color: #eef6ff;
+ color: #0079af;
+}
+
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{
+}
+
+* html>body #account_more_menu li{
+ text-align: center;
+ white-space: nowrap;
+ width: 60px;
+}
+
+* html>body #account_more_menu li li{
+ text-align: left;
+ white-space: nowrap;
+ width: 125px;
+}
+
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{
+ left: 110px;
+}
+
+/** Tabs **/
+
+#tabsWrapper {
+ width: 780px;
+ margin: 3px auto 0 auto;
+ text-align: left;
+}
+
+#tabs {
+ float: left;
+}
+
+#tabs ul {
+ margin: 0;
+ padding: 0 10px;
+ list-style: none;
+}
+
+#tabs ul li {
+ margin: 0 1px;
+ float: left;
+ background: black;
+}
+
+#tabs ul li a {
+ border: 0;
+ display: block;
+ padding: 4px 10px 0 10px;
+ margin-bottom: 3px;
+ background: black;
+ text-align: center;
+ color: #6aa94e;
+ font-size: 13px;
+ font-weight: bolder;
+ line-height: 18px;
+ text-decoration: none;
+ font-weight: normal;
+ text-transform: lowercase;
+}
+
+#tabs ul li a:hover {
+ font-weight: normal;
+ border: 0;
+ color: #fff;
+ text-decoration: none;
+}
+
+#tabs ul li.active {
+ background: url('../../images/layout/tab_active_right.gif') no-repeat top right;
+}
+
+#tabs ul li.active a {
+ /* padding: 0.1em 0.6em; */
+ padding: 4px 10px 0 10px;
+ background: url('../../images/layout/tab_active_left.gif') no-repeat top left;
+ color: white;
+ font-weight: bolder;
+}
+
+#tabs ul li.active a:hover {
+ color: white;
+ text-decoration: none;
+ font-weight: bolder;
+}
+
+/** Crumbs **/
+
+#crumbsWrapper {
+ clear: both;
+ background: #99cc66 url('../../images/layout/gb_crumbLine.gif') repeat-x;
+ margin: 0 auto;
+ float: left;
+ width: 100%;
+}
+
+#crumbsBlock {
+ margin: 0 auto;
+ margin-top: 0px;
+ padding: 0 10px;
+ width: 760px;
+ line-height: 20px;
+ text-align: left;
+}
+
+#crumbs {
+ float: left;
+}
+
+#crumbs ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#crumbs ul li {
+ display: inline;
+ line-height: 22px;
+ color: #3c622c;
+ font-size: 11px;
+}
+
+#crumbs ul li span {
+ font-weight: bolder;
+}
+
+#crumbs ul li a {
+ margin: 0 3px;
+ border: 0;
+ color: #3c622c;
+ text-decoration: none;
+}
+
+#crumbs ul li a:hover {
+ color: #f4f19f;
+ text-decoration: none;
+ background: transparent;
+}
+
+#searchBox {
+ padding: 1px 0;
+ text-align: right;
+}
+
+#searchBox input {
+ border: 1px solid #6aa94e;
+ font-size: 10px;
+ padding: 1px 1px 1px 4px;
+ width: 100px;
+ background: #99cc66;
+ color: #3c622c;
+}
+
+#searchBox input:focus {
+ background: #f4f19f;
+}
+
+#searchBox button {
+ margin: 0 0 0 3px;
+ border: 1px solid #3c622c;
+ padding: 0;
+ font-size: 10px;
+ color: #ccc;
+ background: #3c622c;
+ height: 16px;
+}
+
+/** Content **/
+
+#outerContentWrapper {
+ clear: both;
+ background: #7ccc5c url('../../images/layout/bg_page.png') repeat-x;
+ padding-top: 25px;
+}
+
+#innerContentWrapper {
+ margin: 0 auto;
+ padding: 0px 0 0 0;
+ width: 760px;
+ text-align: left;
+ border: 1px solid #6aa94e;
+ border-width: 0 1px 1px 1px;
+}
+
+#pageTitle {
+ font-size: 20px;
+ padding: 10px 0 10px 10px;
+ margin: 0;
+ color: #333;
+ font-weight: normal;
+ border-top: 1px solid #6aa94e;
+ background: #eee url('../../images/layout/pg_pageTitle.png') repeat-x ;
+}
+
+#pageContent {
+ padding: 5px 10px 10px 10px;
+ border: 1px solid #999;
+ border-width: 1px 0;
+ background: white;
+}
+
+#content {
+ float: left;
+ width: 530px;
+ min-height: 400px;
+}
+
+/** Sidebar **/
+
+#sidebar {
+ margin-left: 535px;
+ margin-top: 45px;
+ padding: 0 0 0 20px;
+ font-size: 10px;
+}
+
+#sidebar h2 {
+ margin: 10px 0 2px 0;
+ font-size: 12px;
+}
+
+#sidebar .blockContent {
+ margin-bottom: 10px;
+ padding: 0 5px;
+ line-height: 170%;
+}
+
+#sidebar ul {
+ list-style-image: disc;
+ margin-left: 5px;
+}
+
+#sidebar .listWithDetails li {
+ padding-bottom: 5px;
+}
+
+/** Page actions **/
+
+#page_actions {
+ margin: 5px 0px 20px 0px;
+}
+
+#page_actions ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#page_actions ul li {
+ padding-right: 3px;
+ display: inline;
+ font-weight: bolder;
+ font-size: 10px;
+}
+
+#page_actions ul li a {
+ border: 0;
+ padding: 0 15px 0 0;
+ color: #637277;
+ text-decoration: none;
+ background: url('../../images/icons/more_down.gif') no-repeat right bottom;
+}
+
+#page_actions ul li a:hover {
+ color: black;
+}
+
+/** Footer **/
+
+#footer {
+ clear: both;
+ margin: 10px auto;
+ padding: 0 10px 10px 10px;
+ width: 760px;
+ text-align: left;
+ color: #3c622c;
+ line-height: 130%;
+ font-size: 9px;
+}
+
+#copy {
+ float: left;
+}
+
+#productSignature {
+ text-align: right;
+ display: none;
+}
+
+#listOfRssFeeds {
+ list-style: none;
+ padding: 0 0 0 4px;
+}
+
+#listOfRssFeeds li {
+ padding-left: 16px;
+ background: url('../../images/icons/feed.gif') no-repeat;
+ line-height: 12px;
+ margin: 2px 0;
+}
+
+/** Helper classes **/
+
+.clear {
+ clear: both;
+ height: 1px;
+ overflow: hidden;
+}
+
+#error, #success {
+ margin: 10px 0;
+ padding: 10px ;
+ font-size: 120%; 0
+ border: 1px solid ;
+ clear: both;
+ color: white;
+ font-weight: bold;
+ cursor: pointer;
+ text-align: center;
+}
+
+#error {
+ background: #FFB0B0;
+ border-color: red;
+}
+
+#success {
+ background: #bffd81;
+ border-color: #6aae4f;
+ color: #3C622C;
+
+}
+
+/** User card **/
+
+div.card {
+ padding: 10px;
+ border: 1px solid #ccc;
+}
+
+* html div.card {
+ padding-top: 5px;
+}
+
+div.card div.cardIcon {
+ float: left;
+ width: 50px;
+}
+
+div.card div.cardData {
+ margin-left: 60px;
+}
+
+div.card div.cardData h2 {
+ margin-top: 0;
+}
+
+div.card div.cardBlock {
+ margin-bottom: 25px;
+ padding-left: 10px;
+}
+
+div.card div.cardBlock span {
+ font-size: 90%;
+ font-weight: bolder;
+ color: #333;
+}
+
+div.card table {
+ margin-top: 10px;
+}
+
+div.card table, div.card table tr, div.card table td {
+ border: 0;
+}
+
+div.card table tr, div.card table td {
+ padding: 2px;
+}
+
+/** / user card **/
+
+/** Advanced pagination **/
+
+div.advancedPagination {
+ margin: 10px;
+ text-align: right;
+}
+
+div.advancedPagination span {
+ line-height: 20px;
+ font-size: 9px;
+ color: #666;
+ text-transform: uppercase;
+}
+
+div.advancedPagination select {
+ padding: 0;
+}
+
+/** /Advanced pagination **/
+
+/** Private **/
+
+div.private {
+ float: right;
+ height: 9px;
+ width: 37px;
+ overflow: hidden;
+ background: url('../../images/icons/private.gif') no-repeat;
+}
+
+div.private span {
+ display: none;
+}
diff -urN projectpier-0.8.0.2/public/assets/themes/goCollab_Monochrome/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/goCollab_Monochrome/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/goCollab_Monochrome/stylesheets/general/construction.css 2007-09-02 12:45:26.000000000 -0700
+++ projectpier-0.8.0.2_patched/public/assets/themes/goCollab_Monochrome/stylesheets/general/construction.css 2008-05-21 13:14:34.000000000 -0700
@@ -1,555 +1,625 @@
-body {
- text-align: left;
-}
-
-#wrapper {
- text-align: center;
-}
-
-#squidLogo {
- float: left;
- margin: -10px 0 0 0;
-}
-
-#squidLogo[id] {
- float: left;
- margin: 0;
-}
-
-#header {
- width: 780px;
- margin: 0 auto;
- padding-top: 10px;
- text-align: left;
-}
-
-#header h1 {
- float: left;
- margin: 0;
- padding: 13px 0 10px 10px;
- border: 0;
-}
-
-#header h1 a {
- font-weight: normal;
- font-size: 85% !important;
- border: 0;
- font-size: 24px;
- color: white;
-}
-
-#header h1 a:hover {
- border: 0;
- color: #fff;
- background: transparent;
- border-bottom: 1px dotted #eee;
- border-top: 1px dotted #ccc;
-}
-
-#systemNoticesWrapper {
- background: red;
- color: white;
- text-align: center;
-}
-
-#systemNotices {
- margin: 0 auto;
- padding: 10px 0;
- width: 760px;
- text-align: left;
-}
-
-#systemNotices ul {
- margin: 0;
- padding: 0 0 0 15px;
-}
-
-#systemNotices a, #systemNotices a:hover {
- border: 0;
- color: white;
- text-decoration: underline;
-}
-
-#userboxWrapper {
- margin-left: 450px;
-/** ORIGINAL color: #e68216;**/
- color: #666666;
- font-size: 10px;
-}
-
-#userbox {
- padding: 5px 8px;
- border: 0px solid #ccc;
- background: #000 url('../../images/layout/bg_userBox.gif') repeat-x;
-}
-
-#userbox a {
-/** ORIGINAL color: #e68216;**/
- color: #666666;
- text-decoration: none;
-/** ORIGINAL border-bottom: 0px dotted #e68216;**/
- border-bottom: 0px dotted #666666;
-}
-
-#userbox a:hover {
- color: #fff;
- background: none;
-}
-
-#userbox ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#userbox ul li {
- display: inline;
- margin-right: 10px;
-font-size: 115%;
-
-}
-#userbox li img {
- padding: 0 3px;
-
- }
-#userbox ul li a {
-/** ORIGINAL color: #F19F49; **/
- color: #999999;
- text-decoration: none;
-/** ORIGINAL border-bottom: 0px dotted #e68216;**/
- border-bottom: 0px dotted #666666;
-}
-
-#userbox ul li a:hover {
- color: #F19F49;
- background: none;
- border-bottom: 1px dotted #F19F49;
-}
-
-#userbox .PopupMenuWidgetDiv {
- position: absolute;
- background: #000 url('../../images/layout/bg_userBox.gif') repeat-x;
- padding: 10px 10px 15px 10px;
- width: 140px;
- border: none;
- color: #686868;
-}
-
-#userbox .PopupMenuWidgetDiv p {
- margin: 0;
- font-weight: bolder;
-}
-
-#userbox .PopupMenuWidgetDiv ul {
- margin-left: 12px;
- padding-left: 5px;
-}
-
-#userbox .PopupMenuWidgetDiv ul li {
- display: list-item;
- font-weight: normal;
- list-style: square;
-}
-
-/** Tabs **/
-
-#tabsWrapper {
- width: 780px;
- margin: 3px auto 0 auto;
- text-align: left;
-}
-
-#tabs {
- float: left;
-}
-
-#tabs ul {
- margin: 0;
- padding: 0 10px;
- list-style: none;
-}
-
-#tabs ul li {
- margin: 0 1px;
- float: left;
- background: black;
-}
-
-#tabs ul li a {
- border: 0;
- display: block;
- padding: 4px 10px 0 10px;
- margin-bottom: 3px;
- background: black;
- text-align: center;
-/** ORIGINAL color: #6aa94e; **/
- color: #C0C0C0;
- font-size: 13px;
- font-weight: bolder;
- line-height: 18px;
- text-decoration: none;
- font-weight: normal;
- text-transform: lowercase;
-}
-
-#tabs ul li a:hover {
- font-weight: normal;
- border: 0;
- color: #fff;
- text-decoration: none;
-}
-
-#tabs ul li.active {
- background: url('../../images/layout/tab_active_right.gif') no-repeat top right;
-}
-
-#tabs ul li.active a {
- /* padding: 0.1em 0.6em; */
- padding: 4px 10px 0 10px;
- background: url('../../images/layout/tab_active_left.gif') no-repeat top left;
- color: white;
- font-weight: bolder;
-}
-
-#tabs ul li.active a:hover {
- color: white;
- text-decoration: none;
- font-weight: bolder;
-}
-
-/** Crumbs **/
-
-#crumbsWrapper {
- clear: both;
-/** ORIGINAL background: #99cc66 url('../../images/layout/gb_crumbLine.gif') repeat-x; **/
- background: #C0C0C0 url('../../images/layout/gb_crumbLine.gif') repeat-x;
- margin: 0 auto;
- float: left;
- width: 100%;
-}
-
-#crumbsBlock {
- margin: 0 auto;
- margin-top: 0px;
- padding: 0 10px;
- width: 760px;
- line-height: 20px;
- text-align: left;
-}
-
-#crumbs {
- float: left;
-}
-
-#crumbs ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#crumbs ul li {
- display: inline;
- line-height: 22px;
- color: #333333; /** ORIGINAL 3C622C **/
- font-size: 11px;
-}
-
-#crumbs ul li span {
- font-weight: bolder;
-}
-
-#crumbs ul li a {
- margin: 0 3px;
- border: 0;
- color: #333333; /** ORIGINAL 3C622C **/
- text-decoration: none;
-}
-
-#crumbs ul li a:hover {
-/** ORIGINAL color: #f4f19f;**/
- color: #FFFFFF;
- text-decoration: none;
- background: transparent;
-}
-
-#searchBox {
- padding: 1px 0;
- text-align: right;
-}
-
-#searchBox input {
-/** ORIGINAL border: 1px solid #6aa94e; **/
- border: 1px solid #C0C0C0;
- font-size: 10px;
- padding: 1px 1px 1px 4px;
- width: 100px;
-/** ORIGINAL background: #99cc66; **/
- background: #E0E0E0;
- color: #333333; /** ORIGINAL 3C622C **/
-}
-
-#searchBox input:focus {
- background: #f4f19f;
-}
-
-#searchBox button {
- margin: 0 0 0 3px;
- border: 1px solid #333333; /** ORIGINAL 3C622C **/
- padding: 0;
- font-size: 10px;
- color: #ccc;
- background: #333333; /** ORIGINAL 3C622C **/
- height: 16px;
-}
-
-/** Content **/
-
-#outerContentWrapper {
- clear: both;
-/** ORIGINAL background: #7ccc5c url('../../images/layout/bg_page.png') repeat-x; **/
- background: #949494 url('../../images/layout/bg_page.png') repeat-x;
- padding-top: 25px;
-}
-
-#innerContentWrapper {
- margin: 0 auto;
- padding: 0px 0 0 0;
- width: 760px;
- text-align: left;
-/** ORIGINAL border: 1px solid #6aa94e; **/
- border: 1px solid #C0C0C0;
- border-width: 0 1px 1px 1px;
-}
-
-#pageTitle {
- font-size: 20px;
- padding: 10px 0 10px 10px;
- margin: 0;
- color: #333;
- font-weight: normal;
-/** ORIGINAL border-top: 1px solid #6aa94e; **/
- border-top: 1px solid #C0C0C0;
- background: #eee url('../../images/layout/pg_pageTitle.png') repeat-x ;
-}
-
-#pageContent {
- padding: 5px 10px 10px 10px;
- border: 1px solid #999;
- border-width: 1px 0;
- background: white;
-}
-
-#content {
- float: left;
- width: 530px;
- min-height: 400px;
-}
-
-/** Sidebar **/
-
-#sidebar {
- margin-left: 535px;
- margin-top: 45px;
- padding: 0 0 0 20px;
- font-size: 10px;
-}
-
-#sidebar h2 {
- margin: 10px 0 2px 0;
- font-size: 12px;
-}
-
-#sidebar .blockContent {
- margin-bottom: 10px;
- padding: 0 5px;
- line-height: 170%;
-}
-
-#sidebar ul {
- list-style-image: disc;
- margin-left: 5px;
- }
-
-#sidebar .listWithDetails li {
- padding-bottom: 5px;
-}
-
-/** Page actions **/
-
-#page_actions {
- margin: 5px 0px 20px 0px;
-}
-
-#page_actions ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-#page_actions ul li {
- padding-right: 3px;
- display: inline;
- font-weight: bolder;
- font-size: 10px;
-}
-
-#page_actions ul li a {
- border: 0;
- padding: 0 15px 0 0;
- color: #637277;
- text-decoration: none;
- background: url('../../images/icons/more_down.gif') no-repeat right bottom;
-}
-
-#page_actions ul li a:hover {
- color: black;
-}
-
-/** Footer **/
-
-#footer {
- clear: both;
- margin: 10px auto;
- padding: 0 10px 10px 10px;
- width: 760px;
- text-align: left;
- color: #333333; /** ORIGINAL 3C622C **/
- line-height: 130%;
- font-size: 9px;
-}
-
-#copy {
- float: left;
-}
-
-#productSignature {
- text-align: right;
- display: none;
-}
-
-#listOfRssFeeds {
- list-style: none;
- padding: 0 0 0 4px;
-}
-
-#listOfRssFeeds li {
- padding-left: 16px;
- background: url('../../images/icons/feed.gif') no-repeat;
- line-height: 12px;
- margin: 2px 0;
-}
-
-/** Helper classes **/
-
-.clear {
- clear: both;
- height: 1px;
- overflow: hidden;
-}
-
-#error, #success {
- margin: 10px 0;
- padding: 10px ;
- font-size: 120%; 0
- border: 1px solid ;
- clear: both;
- color: white;
- font-weight: bold;
- cursor: pointer;
- text-align: center;
-}
-
-#error {
- background: #FFB0B0;
- border-color: red;
-}
-
-#success {
- background: #ffe37e; /** ORIGINAL bffd81 **/
- border-color: #6aae4f;
- color: #333333; /** ORIGINAL 3C622C **/
-
-}
-
-/** User card **/
-
-div.card {
- padding: 10px;
- border: 1px solid #ccc;
-}
-
-* html div.card {
- padding-top: 5px;
-}
-
-div.card div.cardIcon {
- float: left;
- width: 50px;
-}
-
-div.card div.cardData {
- margin-left: 60px;
-}
-
-div.card div.cardData h2 {
- margin-top: 0;
-}
-
-div.card div.cardBlock {
- margin-bottom: 25px;
- padding-left: 10px;
-}
-
-div.card div.cardBlock span {
- font-size: 90%;
- font-weight: bolder;
- color: #333;
-}
-
-div.card table {
- margin-top: 10px;
-}
-
-div.card table, div.card table tr, div.card table td {
- border: 0;
-}
-
-div.card table tr, div.card table td {
- padding: 2px;
-}
-
-/** / user card **/
-
-/** Advanced pagination **/
-
-div.advancedPagination {
- margin: 10px;
- text-align: right;
-}
-
-div.advancedPagination span {
- line-height: 20px;
- font-size: 9px;
- color: #666;
- text-transform: uppercase;
-}
-
-div.advancedPagination select {
- padding: 0;
-}
-
-/** /Advanced pagination **/
-
-/** Private **/
-
-div.private {
- float: right;
- height: 9px;
- width: 37px;
- overflow: hidden;
- background: url('../../images/icons/private.gif') no-repeat;
-}
-
-div.private span {
- display: none;
-}
+body {
+ text-align: left;
+}
+
+#wrapper {
+ text-align: center;
+}
+
+#squidLogo {
+ float: left;
+ margin: -10px 0 0 0;
+}
+
+#squidLogo[id] {
+ float: left;
+ margin: 0;
+}
+
+#header {
+ width: 780px;
+ margin: 0 auto;
+ padding-top: 10px;
+ text-align: left;
+}
+
+#header h1 {
+ float: left;
+ margin: 0;
+ padding: 13px 0 10px 10px;
+ border: 0;
+}
+
+#header h1 a {
+ font-weight: normal;
+ font-size: 85% !important;
+ border: 0;
+ font-size: 24px;
+ color: white;
+}
+
+#header h1 a:hover {
+ border: 0;
+ color: #fff;
+ background: transparent;
+ border-bottom: 1px dotted #eee;
+ border-top: 1px dotted #ccc;
+}
+
+#systemNoticesWrapper {
+ background: red;
+ color: white;
+ text-align: center;
+}
+
+#systemNotices {
+ margin: 0 auto;
+ padding: 10px 0;
+ width: 760px;
+ text-align: left;
+}
+
+#systemNotices ul {
+ margin: 0;
+ padding: 0 0 0 15px;
+}
+
+#systemNotices a, #systemNotices a:hover {
+ border: 0;
+ color: white;
+ text-decoration: underline;
+}
+
+#userboxWrapper {
+ padding: 5px 8px;
+ border: 0px solid #ccc;
+ background: #000 url('../../images/layout/bg_userBox.gif') repeat-x;
+ color: #666;
+ float: right;
+ font-size: 11px;
+ font-size: 13px;
+ margin-bottom: 11px;
+ width: 500px;
+ z-index: 250;
+}
+
+#userbox {
+ padding: 0 5px;
+}
+
+#userbox p{
+ float: right;
+ margin: 0;
+ padding: 5px;
+}
+
+/*-------------------- general userbox links---------------------*/
+#account_more_menu {
+ float: right;
+ list-style: none;
+ margin: 5px 0 0 0;
+ padding: 0;
+}
+
+#account_more_menu li{
+ float: left;
+ list-style: none;
+ margin:0pt 6pt 0pt 2px;
+ padding: 0;
+}
+
+#account_more_menu li a{
+ border: none;
+ display: block;
+ padding: 0px 10px 0px 6px
+}
+
+/*-------------------- submenus---------------------*/
+#account_more_menu ul {
+ background-color: #fff;
+ border: 1px solid #cccccc;
+ clear: left;
+ font-weight: normal; /* height: auto;*/
+ left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
+ line-height: 120%;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ width: 12em;
+ z-index: 1000 !important;
+}
+
+#account_more_menu ul li {
+ background-image: none !important;
+ border: none;
+ float: none;
+ font-size: 12px;
+ list-style: none;
+ list-style-image: none !important;
+ margin: 0;
+ padding: 0;
+}
+
+* html #account_more_menu ul li, * html #account_more_menu ul li a {
+ height: 1%;
+}
+
+#account_more_menu h6 {
+ background-color: #f0f0f0;
+ border-bottom: 1px solid #8dbbce;
+ color: #333;
+ font-size: 12px;
+ font-weight: bold;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a {
+ background-image: none !important;
+ border: none;
+ border-bottom: 1px solid #d8d8d8;
+ font-size: 12px;
+ font-weight: normal;
+ height: auto;
+ line-height: 1.2em;
+ margin: 0;
+ padding: 3px 10px !important;
+}
+
+#account_more_menu ul li a:hover {
+ background-color: #e9f2f7;
+ color: #0079AF;
+ text-decoration: none;
+}
+
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{
+ left: -999em;
+}
+
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{
+ left: auto; /* lists nested under hovered list items */
+}
+
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{
+ background-color: #fff; /* position: relative;
+ z-index: 2500;*/
+ color: #0079af;
+}
+
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{
+ background-color: transparent;
+ color: #0079af;
+}
+
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{
+ background-color: #eef6ff;
+ color: #0079af;
+}
+
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{
+}
+
+* html>body #account_more_menu li{
+ text-align: center;
+ white-space: nowrap;
+ width: 60px;
+}
+
+* html>body #account_more_menu li li{
+ text-align: left;
+ white-space: nowrap;
+ width: 125px;
+}
+
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{
+ left: 110px;
+}
+
+/** Tabs **/
+
+#tabsWrapper {
+ width: 780px;
+ margin: 3px auto 0 auto;
+ text-align: left;
+}
+
+#tabs {
+ float: left;
+}
+
+#tabs ul {
+ margin: 0;
+ padding: 0 10px;
+ list-style: none;
+}
+
+#tabs ul li {
+ margin: 0 1px;
+ float: left;
+ background: black;
+}
+
+#tabs ul li a {
+ border: 0;
+ display: block;
+ padding: 4px 10px 0 10px;
+ margin-bottom: 3px;
+ background: black;
+ text-align: center;
+/** ORIGINAL color: #6aa94e; **/
+ color: #C0C0C0;
+ font-size: 13px;
+ font-weight: bolder;
+ line-height: 18px;
+ text-decoration: none;
+ font-weight: normal;
+ text-transform: lowercase;
+}
+
+#tabs ul li a:hover {
+ font-weight: normal;
+ border: 0;
+ color: #fff;
+ text-decoration: none;
+}
+
+#tabs ul li.active {
+ background: url('../../images/layout/tab_active_right.gif') no-repeat top right;
+}
+
+#tabs ul li.active a {
+ /* padding: 0.1em 0.6em; */
+ padding: 4px 10px 0 10px;
+ background: url('../../images/layout/tab_active_left.gif') no-repeat top left;
+ color: white;
+ font-weight: bolder;
+}
+
+#tabs ul li.active a:hover {
+ color: white;
+ text-decoration: none;
+ font-weight: bolder;
+}
+
+/** Crumbs **/
+
+#crumbsWrapper {
+ clear: both;
+/** ORIGINAL background: #99cc66 url('../../images/layout/gb_crumbLine.gif') repeat-x; **/
+ background: #C0C0C0 url('../../images/layout/gb_crumbLine.gif') repeat-x;
+ margin: 0 auto;
+ float: left;
+ width: 100%;
+}
+
+#crumbsBlock {
+ margin: 0 auto;
+ margin-top: 0px;
+ padding: 0 10px;
+ width: 760px;
+ line-height: 20px;
+ text-align: left;
+}
+
+#crumbs {
+ float: left;
+}
+
+#crumbs ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#crumbs ul li {
+ display: inline;
+ line-height: 22px;
+ color: #333333; /** ORIGINAL 3C622C **/
+ font-size: 11px;
+}
+
+#crumbs ul li span {
+ font-weight: bolder;
+}
+
+#crumbs ul li a {
+ margin: 0 3px;
+ border: 0;
+ color: #333333; /** ORIGINAL 3C622C **/
+ text-decoration: none;
+}
+
+#crumbs ul li a:hover {
+/** ORIGINAL color: #f4f19f;**/
+ color: #FFFFFF;
+ text-decoration: none;
+ background: transparent;
+}
+
+#searchBox {
+ padding: 1px 0;
+ text-align: right;
+}
+
+#searchBox input {
+/** ORIGINAL border: 1px solid #6aa94e; **/
+ border: 1px solid #C0C0C0;
+ font-size: 10px;
+ padding: 1px 1px 1px 4px;
+ width: 100px;
+/** ORIGINAL background: #99cc66; **/
+ background: #E0E0E0;
+ color: #333333; /** ORIGINAL 3C622C **/
+}
+
+#searchBox input:focus {
+ background: #f4f19f;
+}
+
+#searchBox button {
+ margin: 0 0 0 3px;
+ border: 1px solid #333333; /** ORIGINAL 3C622C **/
+ padding: 0;
+ font-size: 10px;
+ color: #ccc;
+ background: #333333; /** ORIGINAL 3C622C **/
+ height: 16px;
+}
+
+/** Content **/
+
+#outerContentWrapper {
+ clear: both;
+/** ORIGINAL background: #7ccc5c url('../../images/layout/bg_page.png') repeat-x; **/
+ background: #949494 url('../../images/layout/bg_page.png') repeat-x;
+ padding-top: 25px;
+}
+
+#innerContentWrapper {
+ margin: 0 auto;
+ padding: 0px 0 0 0;
+ width: 760px;
+ text-align: left;
+/** ORIGINAL border: 1px solid #6aa94e; **/
+ border: 1px solid #C0C0C0;
+ border-width: 0 1px 1px 1px;
+}
+
+#pageTitle {
+ font-size: 20px;
+ padding: 10px 0 10px 10px;
+ margin: 0;
+ color: #333;
+ font-weight: normal;
+/** ORIGINAL border-top: 1px solid #6aa94e; **/
+ border-top: 1px solid #C0C0C0;
+ background: #eee url('../../images/layout/pg_pageTitle.png') repeat-x ;
+}
+
+#pageContent {
+ padding: 5px 10px 10px 10px;
+ border: 1px solid #999;
+ border-width: 1px 0;
+ background: white;
+}
+
+#content {
+ float: left;
+ width: 530px;
+ min-height: 400px;
+}
+
+/** Sidebar **/
+
+#sidebar {
+ margin-left: 535px;
+ margin-top: 45px;
+ padding: 0 0 0 20px;
+ font-size: 10px;
+}
+
+#sidebar h2 {
+ margin: 10px 0 2px 0;
+ font-size: 12px;
+}
+
+#sidebar .blockContent {
+ margin-bottom: 10px;
+ padding: 0 5px;
+ line-height: 170%;
+}
+
+#sidebar ul {
+ list-style-image: disc;
+ margin-left: 5px;
+ }
+
+#sidebar .listWithDetails li {
+ padding-bottom: 5px;
+}
+
+/** Page actions **/
+
+#page_actions {
+ margin: 5px 0px 20px 0px;
+}
+
+#page_actions ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#page_actions ul li {
+ padding-right: 3px;
+ display: inline;
+ font-weight: bolder;
+ font-size: 10px;
+}
+
+#page_actions ul li a {
+ border: 0;
+ padding: 0 15px 0 0;
+ color: #637277;
+ text-decoration: none;
+ background: url('../../images/icons/more_down.gif') no-repeat right bottom;
+}
+
+#page_actions ul li a:hover {
+ color: black;
+}
+
+/** Footer **/
+
+#footer {
+ clear: both;
+ margin: 10px auto;
+ padding: 0 10px 10px 10px;
+ width: 760px;
+ text-align: left;
+ color: #333333; /** ORIGINAL 3C622C **/
+ line-height: 130%;
+ font-size: 9px;
+}
+
+#copy {
+ float: left;
+}
+
+#productSignature {
+ text-align: right;
+ display: none;
+}
+
+#listOfRssFeeds {
+ list-style: none;
+ padding: 0 0 0 4px;
+}
+
+#listOfRssFeeds li {
+ padding-left: 16px;
+ background: url('../../images/icons/feed.gif') no-repeat;
+ line-height: 12px;
+ margin: 2px 0;
+}
+
+/** Helper classes **/
+
+.clear {
+ clear: both;
+ height: 1px;
+ overflow: hidden;
+}
+
+#error, #success {
+ margin: 10px 0;
+ padding: 10px ;
+ font-size: 120%; 0
+ border: 1px solid ;
+ clear: both;
+ color: white;
+ font-weight: bold;
+ cursor: pointer;
+ text-align: center;
+}
+
+#error {
+ background: #FFB0B0;
+ border-color: red;
+}
+
+#success {
+ background: #ffe37e; /** ORIGINAL bffd81 **/
+ border-color: #6aae4f;
+ color: #333333; /** ORIGINAL 3C622C **/
+
+}
+
+/** User card **/
+
+div.card {
+ padding: 10px;
+ border: 1px solid #ccc;
+}
+
+* html div.card {
+ padding-top: 5px;
+}
+
+div.card div.cardIcon {
+ float: left;
+ width: 50px;
+}
+
+div.card div.cardData {
+ margin-left: 60px;
+}
+
+div.card div.cardData h2 {
+ margin-top: 0;
+}
+
+div.card div.cardBlock {
+ margin-bottom: 25px;
+ padding-left: 10px;
+}
+
+div.card div.cardBlock span {
+ font-size: 90%;
+ font-weight: bolder;
+ color: #333;
+}
+
+div.card table {
+ margin-top: 10px;
+}
+
+div.card table, div.card table tr, div.card table td {
+ border: 0;
+}
+
+div.card table tr, div.card table td {
+ padding: 2px;
+}
+
+/** / user card **/
+
+/** Advanced pagination **/
+
+div.advancedPagination {
+ margin: 10px;
+ text-align: right;
+}
+
+div.advancedPagination span {
+ line-height: 20px;
+ font-size: 9px;
+ color: #666;
+ text-transform: uppercase;
+}
+
+div.advancedPagination select {
+ padding: 0;
+}
+
+/** /Advanced pagination **/
+
+/** Private **/
+
+div.private {
+ float: right;
+ height: 9px;
+ width: 37px;
+ overflow: hidden;
+ background: url('../../images/icons/private.gif') no-repeat;
+}
+
+div.private span {
+ display: none;
+}
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/avatar.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/avatar.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/ai.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/ai.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/archive.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/archive.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/audio.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/audio.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/doc.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/doc.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/font.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/font.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/gif.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/gif.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/image.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/image.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/jpg.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/jpg.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/mov.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/mov.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/pdf.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/pdf.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/ppt.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/ppt.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/psd.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/psd.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/rar.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/rar.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/rm.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/rm.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/svg.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/svg.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/swf.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/swf.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/unknown.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/unknown.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/video.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/video.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/filetypes/xls.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/filetypes/xls.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/0105_ico-arrow.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/0105_ico-arrow.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/0105_ico-arrow.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/0105_ico-arrow.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/bullet_drop_down.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/bullet_drop_down.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/cancel_gray.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/cancel_gray.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/checked.jpg and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/checked.jpg differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/edit.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/edit.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/feed.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/feed.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/go_gray.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/go_gray.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/icalendar.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/icalendar.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/more_down.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/more_down.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/not-checked.jpg and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/not-checked.jpg differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/ok.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/ok.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/icons/private.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/icons/private.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/im/aim.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/im/aim.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/im/icq.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/im/icq.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/im/jabber.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/im/jabber.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/im/msn.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/im/msn.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/im/skype.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/im/skype.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/im/yahoo.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/im/yahoo.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/add.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/add.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_alert.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_alert.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_block.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_block.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_btn_reset.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_btn_reset.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_crumbs.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_crumbs.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_dropdown_arrow.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_dropdown_arrow.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_dropdown.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_dropdown.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_footer.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_footer.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_header.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_header.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_innercontent.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_innercontent.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_inputs.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_inputs.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_pageactions.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_pageactions.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_success.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_success.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_tab_on.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_tab_on.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_tab.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_tab.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/bg_userbox.png and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/bg_userbox.png differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/companybg.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/companybg.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/layout/yellow-gradient.jpg and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/layout/yellow-gradient.jpg differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logo.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logo.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/bg_th.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/bg_th.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/comments.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/comments.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/companies.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/companies.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/old.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/old.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/projectfilerevisions.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/projectfilerevisions.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/projectfiles.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/projectfiles.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/projectfolders.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/projectfolders.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/projectforms.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/projectforms.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/projectmessages.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/projectmessages.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/projectmilestones.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/projectmilestones.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/projects.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/projects.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/projecttasklists.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/projecttasklists.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/projecttasks.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/projecttasks.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/today.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/today.gif differ
Binary files projectpier-0.8.0.2/public/assets/themes/marine/images/logtypes/yesterday.gif and projectpier-0.8.0.2_patched/public/assets/themes/marine/images/logtypes/yesterday.gif differ
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/license.txt projectpier-0.8.0.2_patched/public/assets/themes/marine/license.txt
--- projectpier-0.8.0.2/public/assets/themes/marine/license.txt 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/license.txt 2007-10-19 15:02:32.000000000 -0700
@@ -0,0 +1,232 @@
+Honest Public License (HPL)
+Version 1, August 2006
+
+This license is a modified version of the GNU General Public License copyright (C)
+1989, 1991 Free Software Foundation, Inc. but has not been made with their
+permission. Section 2(d) has been added to cover use of software over a computer
+network.
+
+Everyone is permitted to copy and distribute verbatim copies of this license
+document, but changing it is not allowed.
+
+The precise terms and conditions for copying, distribution and modification follow.
+
+TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+0. This License applies to any program or other work which contains a notice placed
+by the copyright holder saying it may be distributed under the terms of this Honest
+Public License. The "Program", below, refers to any such program or work, and a
+"work based on the Program" means either the Program or any derivative work under
+copyright law: that is to say, a work containing the Program or a portion of it, either
+verbatim or with modifications and/or translated into another language. (Hereinafter,
+translation is included without limitation in the term "modification".) Each licensee is
+addressed as "you".
+Activities other than copying, distribution, communication to the public and
+modification are not covered by this License; they are outside its scope. The act of
+running the Program is not restricted for your use, and the output from the Program is
+covered only if its contents constitute a work based on the Program (independent of
+having been made by running the Program). Whether that is true depends on what
+the Program does.
+
+1. You may copy and distribute verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and appropriately publish
+on each copy an appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any warranty; and give
+any other recipients of the Program a copy of this License along with the Program.
+You may charge a fee for the physical act of transferring a copy, and you may at your
+option offer warranty protection in exchange for a fee.
+
+2. You may modify your copy or copies of the Program or any portion of it, thus
+forming a work based on the Program, and copy and distribute such modifications or
+work under the terms of Section 1 above, provided that you also meet all of these
+conditions:
+a) You must cause the modified files to carry prominent notices stating that you
+changed the files and the date of any change.
+b) You must cause any work that you distribute, communicate to the public or
+publish, that in whole or in part contains or is derived from the Program or any part
+thereof, to be licensed as a whole at no charge to all third parties under the terms of
+this License.
+c) If the modified program normally reads commands interactively when run, you
+must cause it, when started running for such interactive use in the most ordinary way,
+to print or display an announcement including an appropriate copyright notice and a
+notice that there is no warranty (or else, saying that you provide a warranty) and that
+users may redistribute the program under these conditions, and telling the user how
+to view a copy of this License. (Exception: if the Program itself is interactive but does
+not normally print such an announcement, your work based on the Program is not
+required to print an announcement.)
+These requirements apply to the modified work as a whole. If identifiable sections of
+that work are not derived from the Program, and can be reasonably considered
+independent and separate works in themselves, then this License, and its terms, do
+not apply to those sections when you distribute them as separate works. But when
+you distribute the same sections as part of a whole which is a work based on the
+Program, the distribution of the whole must be on the terms of this License, whose
+permissions for other licensees extend to the entire whole, and thus to each and
+every part regardless of who wrote it.
+Thus, it is not the intent of this section to claim rights or contest your rights to work
+written entirely by you; rather, the intent is to exercise the right to control the
+distribution of derivative or collective works based on the Program.
+In addition, mere aggregation of another work not based on the Program with the
+Program (or with a work based on the Program) on a volume of a storage or
+distribution medium does not bring the other work under the scope of this License.
+d) For the purposes of determining the right to obtain copies of the source code (as
+well as the right to modify and distribute such source code and object code), the
+term distribution shall include the communication of the Program or work based on
+the Program which is intended to interact with third party users (meaning anyone
+other than you or if you are an entity such as a corporation and not an individual, that
+corporation), through a computer network and the user shall have the right to obtain
+the source code of the Program or work based on the Program. This provision is an
+express condition for the grants of license hereunder and any such communication
+shall be considered a distribution under Section 1, 2 and 3.
+
+3. You may copy and distribute the Program (or a work based on it, under Section 2)
+in object code or executable form under the terms of Sections 1 and 2 above
+provided that you also do one of the following:
+a) Accompany it with the complete corresponding machine-readable source code,
+which must be distributed under the terms of Sections 1 and 2 above on a medium
+customarily used for software interchange; or,
+b) Accompany it with a written offer, valid for at least three years, to give any third
+party, for a charge no more than your cost of physically performing source
+distribution, a complete machine-readable copy of the corresponding source code, to
+be distributed under the terms of Sections 1 and 2 above on a medium customarily
+used for software interchange; or,
+c) Accompany it with the information you received as to the offer to distribute
+corresponding source code. (This alternative is allowed only for noncommercial
+distribution and only if you received the program in object code or executable form
+with such an offer, in accord with Subsection b above.)
+The source code for a work means the preferred form of the work for making
+modifications to it. For an executable work, complete source code means all the
+source code for all modules it contains, plus any associated interface definition files,
+plus the scripts used to control compilation and installation of the executable.
+However, as a special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on which the
+executable runs, unless that component itself accompanies the executable.
+If distribution of executable or object code is made by offering access to copy from a
+designated place, then offering equivalent access to copy the source code from the
+same place counts as distribution of the source code, even though third parties are
+not compelled to copy the source along with the object code.
+
+4. You may not copy, modify, sublicense, make available to the public or distribute
+the Program except as expressly provided under this License. Any attempt otherwise
+to copy, modify, sublicense, make available to the public or distribute the Program is
+void, and will automatically terminate your rights under this License. However, parties
+who have received copies, or rights, from you under this License will not have their
+licenses terminated so long as such parties remain in full compliance.
+
+5. You are not required to accept this License, since you have not signed it. However,
+nothing else grants you permission to modify or distribute the Program or its
+derivative works. These actions are prohibited by law if you do not accept this
+License. Therefore, by modifying or distributing the Program (or any work based on
+the Program), you indicate your acceptance of this License to do so, and all its terms
+and conditions for copying, distributing or modifying the Program or works based on
+it.
+
+6. Each time you redistribute the Program (or any work based on the Program), the
+recipient automatically receives a license from the original licensor to copy, distribute
+or modify the Program subject to these terms and conditions. You may not impose
+any further restrictions on the recipients' exercise of the rights granted herein. You
+are not responsible for enforcing compliance by third parties to this License.
+
+7. If, as a consequence of a court judgment or allegation of patent infringement or for
+any other reason (not limited to patent issues), conditions are imposed on you
+(whether by court order, agreement or otherwise) that contradict the conditions of this
+License, they do not excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this License and any
+other pertinent obligations, then as a consequence you may not distribute the
+Program at all. For example, if a patent license would not permit royalty-free
+redistribution of the Program by all those who receive copies directly or indirectly
+through you, then the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+If any portion of this section is held invalid or unenforceable under any particular
+circumstance, the balance of the section is intended to apply and the section as a
+whole is intended to apply in other circumstances.
+It is not the purpose of this section to induce you to infringe any patents or other
+property right claims or to contest validity of any such claims; this section has the
+sole purpose of protecting the integrity of the free software distribution system, which
+is implemented by public license practices. Many people have made generous
+contributions to the wide range of software distributed through that system in reliance
+on consistent application of that system; it is up to the author/donor to decide if he or
+she is willing to distribute software through any other system and a licensee cannot
+impose that choice.
+This section is intended to make thoroughly clear what is believed to be a
+consequence of the rest of this License.
+
+8. If the distribution and/or use of the Program is restricted in certain countries either
+by patents or by copyrighted interfaces, the original copyright holder who places the
+Program under this License may add an explicit geographical distribution limitation
+excluding those countries, so that distribution is permitted only in or among countries
+not thus excluded. In such case, this License incorporates the limitation as if written
+in the body of this License.
+
+9. Funambol may publish revised and/or new versions of the New Public License
+from time to time. Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+Each version is given a distinguishing version number. If the Program specifies a
+version number of this License which applies to it and "any later version", you have
+the option of following the terms and conditions either of that version or of any later
+version published by Funambol. If the Program does not specify a version number of
+this License, you may choose any version ever published by Funambol.
+
+10. If you wish to incorporate parts of the Program into other free programs whose
+distribution conditions are different, write to the author to ask for permission. For
+software which is copyrighted by Funambol., write to us; we sometimes make
+exceptions for this. Our decision will be guided by the two goals of preserving the free
+status of all derivatives of our free software and of promoting the sharing and reuse
+of software generally.
+
+NO WARRANTY
+
+11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE
+COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM
+"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
+ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS
+WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE
+COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY
+MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE
+LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
+INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
+INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE
+WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY
+HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+END OF TERMS AND CONDITIONS
+
+
+How to Apply These Terms to Your New Programs
+
+If you develop a new program, and you want it to be of the greatest possible use to
+the public, the best way to achieve this is to make it free software which everyone
+can redistribute and change under these terms.
+To do so, attach the following notices to the program. It is safest to attach them to the
+start of each source file to most effectively convey the exclusion of warranty; and
+each file should have at least the "copyright" line and a pointer to where the full
+notice is found.
+One line to give the program's name and a brief idea of what it does.
+Copyright (C)
+This program is free software; you can redistribute it and/or modify it under the terms
+of the New Public License.
+This program is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the New Public License for more details.
+You should have received a copy of the New Public License along with this program;
+if not, write to Funambol, 643 Bair Island Road, Suite 305 Redwood City, CA 94063.
+Also add information on how to contact you by electronic and paper mail.
+If the program is interactive, make it output a short notice like this when it starts in an
+interactive mode:
+Gnomovision version 69, Copyright (C) year name of author Gnomovision comes
+with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software,
+and you are welcome to redistribute it under certain conditions; type `show c' for
+details.
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the New Public License. Of course, the commands you use may be called
+something other than `show w' and `show c'; they could even be mouse-clicks or
+menu items--whatever suits your program.
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/README.txt projectpier-0.8.0.2_patched/public/assets/themes/marine/README.txt
--- projectpier-0.8.0.2/public/assets/themes/marine/README.txt 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/README.txt 2008-04-22 09:44:16.000000000 -0700
@@ -0,0 +1,60 @@
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ Marine Theme for ProjectPier
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Revision: 1.1 (April 2008)
+Compatibility: Projectpier 0.8.0- 0.8.2 (patch required)
+Author: Kemie Guaida (http://www,monolinea.com)
+License: HPL (Honest Public License http://www.projectpier.org/about/honest-public-license-hpl)
+Theme Home: http://www.projectpier.org/project/Marine/
+file type icons based on "Sky & fun" icon set by neo014 (http://neo014.deviantart.com/art/Sky-And-Fun-Files-16037319)
+
+
+A new theme for project pier focusing on usability and clarity.
+~~~~~~~~~~~~
+What's New
+~~~~~~~~~~~~
+This is a mainly bugfix release, that fixes issues in ie6 and opera 8, and adds small layout and color inconsistencies.
+
+~~~~~~~~~~~~
+IMPORTANT
+~~~~~~~~~~~~
+In order to use this theme with project pier you will need to change the core files of your project pier installation, at least if using Project Pier v. 0.8.2 and below.
+Instructions are included here, but be aware that it may cause compatibility issues in the future.
+
+~~~~~~~~~~~~~~~~~~~~
+Theme Installation
+~~~~~~~~~~~~~~~~~~~~
+1. Download theme files from the ProjectPier website - http://www.projectpier.org/.
+2. Unpack the files to a temporary space on your hard drive
+3. Upload the files to your web server in the directory
+ /projectroot/public/assets/themes/ where projectroot is the root
+ directory of your ProjectPier or activeCollab installation.
+4. Log into your ProjectPier or activeCollab installation and select:
+ Administration > Configuration > General
+ Select your new theme from the drop-down menu and click the "Save" button
+
+~~~~~~~~~~~~~~~~~~~~
+Patch Installation
+~~~~~~~~~~~~~~~~~~~~
+
+Download the patch here
+http://www.projectpier.org/node/494
+upload to the root of your projectpier intallation
+Follow these instructions:
+http://www.projectpier.org/node/390
+
+~~~~~~~~~~~~~~~~~
+About ProjectPier
+~~~~~~~~~~~~~~~~~
+ProjectPier is an Open Source project management and collaboration
+tool that you can install on your own server. It is released under the
+terms of the Honest Public License - HPL (see license.txt for details).
+It is built upon the source code of the activeCollab software version 0.7.1
+which is also licensed under the HPL
+
+: http://www.projectpier.org
+
+
+
+
+
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/admin/config.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/admin/config.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/admin/config.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/admin/config.css 2008-04-08 10:05:06.000000000 -0700
@@ -0,0 +1,5 @@
+#configCategoryOptions .configCategoryOtpion { margin: 8px 0; padding: 5px; }
+#configCategoryOptions label { margin: 0; padding: 0; }
+#configCategoryOptions .configOptionInfo { float: left; width: 200px; }
+#configCategoryOptions .configOptionControl { margin-left: 210px; }
+#configCategoryOptions textarea { width: 300px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/admin/massmailer.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/admin/massmailer.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/admin/massmailer.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/admin/massmailer.css 2008-04-08 10:05:20.000000000 -0700
@@ -0,0 +1,3 @@
+#massMailer div.massmailercompanyLogo { float: right; }
+#massMailer div.massmailercompanyLogo img { border: 1px solid #cccccc; }
+#massMailer div.massmailerRecipeints { padding-left: 10px; padding-top: 5px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/admin/user_list.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/admin/user_list.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/admin/user_list.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/admin/user_list.css 2008-04-08 10:57:06.000000000 -0700
@@ -0,0 +1,9 @@
+#usersList div.listedUser { margin: 5px 0; padding: 10px; border-bottom:1px solid #BFD9E4; }
+#usersList .odd { border-top:1px solid #BFD9E4; }
+#usersList div.userAvatar { float: left; margin-right: 10px; text-align: center; width: 50px; }
+#usersList div.userAvatar img { background: #ffffff; border: 1px solid #e0e0e0; float: left; margin-right: 5px; padding: 5px; }
+#usersList div.userDetails { margin-left: 70px; }
+#usersList div.userName { font-weight: bold; margin-bottom: 10px; }
+#usersList div.userIsAdmin, #usersList div.userAutoAssign { }
+#usersList div.userIsAdmin span, #usersList div.userAutoAssign span { color: #333333; font-weight: bold; }
+#usersList div.userAutoAssign { margin-bottom: 10px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/admin/user_permissions.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/admin/user_permissions.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/admin/user_permissions.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/admin/user_permissions.css 2008-04-08 10:05:40.000000000 -0700
@@ -0,0 +1,2 @@
+#userPermissions table { width: 500px; }
+#userPermissions td.projectName { width: 150px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/application_logs.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/application_logs.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/application_logs.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/application_logs.css 2008-04-08 10:24:40.000000000 -0700
@@ -0,0 +1,16 @@
+table.applicationLogs { font-size: 13px; width: 640px; }
+table.applicationLogs th { background: #d8d8d8; background-image: url(../images/logtypes/bg_th.gif); background-repeat: repeat-x; border: 1px solid #cccccc; padding: 2px 4px; }
+/* IE7 TABLE ROW BG FIX */
+table.applicationLogs tr.logToday, table.applicationLogs tr.logToday td.logDetails, table.applicationLogs tr.logToday td.logProject,
+table.applicationLogs tr.logToday td.logTakenOnBy { background: url('../images/logtypes/today.gif') #edf5d6 repeat-x top right; border: 1px solid #d7e5b2; }
+table.applicationLogs tr.logToday td.logTypeIcon { background: url('../images/logtypes/today.gif') #edf5d6 repeat-x top right; border: 1px solid #d7e5b2; }
+ table.applicationLogs tr.logYesterday, table.applicationLogs tr.logYesterday td.logDetails, table.applicationLogs tr.logYesterday td.logProject, table.applicationLogs tr.logYesterday td.logTakenOnBy { background: url('../images/logtypes/yesterday.gif') #EBF2F6 repeat-x top right; border: 1px solid #d0e3eb; }
+table.applicationLogs tr.logYesterday td.logTypeIcon { border-top: 1px solid #c9eaa9; }
+table.applicationLogs tr.logOlder td.logDetails, table.applicationLogs tr.logOlder td.logProject, table.applicationLogs tr.logOlder td.logTakenOnBy { background: url('../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; }
+table.applicationLogs tr.logOlder td.logTypeIcon { background: url('../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; }
+/* END FIX*/
+table.applicationLogs td { font-size: 12px; padding: 2px 4px; }
+table.applicationLogs td.logTypeIcon { padding: 2px 6px; text-align: right; width: 50px; }
+table.applicationLogs .logProject, table.applicationLogs .logTakenOnBy { text-align: right; }
+table.applicationLogs .logProject { width: 220px; }
+table.applicationLogs .logTakenOnBy { width: 360px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/company_website.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/company_website.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/company_website.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/company_website.css 2007-10-19 09:02:32.000000000 -0700
@@ -0,0 +1,3 @@
+@import 'general/rewrites.css';
+@import 'general/forms.css';
+@import 'general/construction.css';
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/dashboard/my_tasks.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/dashboard/my_tasks.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/dashboard/my_tasks.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/dashboard/my_tasks.css 2008-04-08 10:38:34.000000000 -0700
@@ -0,0 +1,5 @@
+#myTasks div.content p { font-weight: bold; }
+td.milestoneCheckbox, td.taskCheckbox { padding-top: 4px; width: 20px;}
+td.milestoneText { padding-left: 5px; }
+td.milestoneText span { font-size: 90%; }
+td.taskText { padding-left: 5px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/dialog.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/dialog.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/dialog.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/dialog.css 2008-04-08 10:23:04.000000000 -0700
@@ -0,0 +1,259 @@
+* {
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ font-family: Calibri, verdana, arial, helvetica, sans-serif;
+ color: #333;
+ font-size: 12px;
+ background-color: #f0f0f0;
+ text-align: center;
+ line-height: 150%;
+}
+
+a {
+ color: #444;
+ text-decoration: none;
+ border-bottom: 1px dotted #999;
+ outline:none;
+}
+
+a:hover {
+ border-bottom: 1px solid #666;
+ color: #222;
+}
+
+h1 {
+ margin: 0 0 5px 0;
+ padding: 0 0 5px 0;
+ color: #263356;
+ font-size: 20px;
+
+}
+
+h2 {
+ margin: 10px 0;
+ color: #263356;
+ font-size: 16px;
+}
+
+p, ul, pre {
+ margin: 8px 0;
+}
+
+ul {
+ padding-left: 20px;
+ list-style: square;
+}
+
+code {
+ padding: 0 2px;
+ font-size: 1.2em;
+ background: #e8e8e8;
+}
+
+pre {
+ border: 1px solid #263356;
+ padding: 0 8px;
+ font-size: 1.2em;
+ background: #e8e8e8;
+}
+
+acronym {
+ border-bottom: 1px dotted #ccc;
+ cursor: help;
+}
+
+/** Form **/
+
+label {
+ margin: 3px 0;
+ font-size: 90%;
+ font-weight: bold;
+ display: block;
+}
+
+label.checkbox {
+ font-weight: normal;
+ display: inline;
+}
+
+label span.label_required {
+ color: #bf5940;;
+ font-size: 90%;
+}
+
+input, textarea, select {
+ border: 1px solid #515151;
+ padding: 4px;
+ font-family: verdana, arial, helvetica, sans-serif;
+ font-size: 11px;
+ background: white;
+}
+
+input:hover, textarea:hover, select:hover {
+ border: 1px solid #515151;
+}
+
+input:focus, textarea:focus, select:focus {
+ border: 1px solid #515151;
+}
+
+fieldset {
+ margin: 10px 0;
+ padding: 10px;
+ padding-top: 5px;
+ border: 1px solid #ccc;
+}
+
+fieldset legend {
+ font-size: 90%;
+ font-weight: bold;
+}
+
+input { width: 200px; }
+input.short { width: 50px; }
+input.medium { width: 150px; }
+input.long { width: 320px; }
+
+input.checkbox {
+ border: 0;
+ width: auto;
+background:transparent;
+}
+
+textarea {
+ width: 400px;
+ height: 150px;
+}
+
+textarea.short {
+ height: 70px;
+}
+input, textarea, select{
+ border: 1px solid #ccc;
+ background-image: url(../images/layout/bg_inputs.png);
+ background-repeat: no-repeat;
+ padding: 2px 5px;
+ font-family: calibri, tahoma,verdana, arial, helvetica, sans-serif;
+ font-size: 12px;
+ background-color: #FFF;
+}
+
+button, button.submit, input[type=submit], button[type=submit], .submit
+{
+background-image: url(../images/layout/bg_crumbs.png);
+background-repeat: repeat-x;
+ background-color: #599db7;
+ color: white;
+ border:1px solid #4887a0;
+ font-size: 12px;
+ font-weight: bold;
+ padding:4px 6px;
+ letter-spacing: 1px;
+ margin-top:10px;
+}
+button:hover, button.submit:hover, input[type=submit]:hover, button[type=submit]:hover, .submit:hover
+{
+ color: #2b586a;
+ border:1px solid #2b586a;
+}
+
+span.required {
+ color: red;
+ font-size: 90%;
+}
+
+#formErrors {
+ border: 1px solid #efcab8;
+ background-color: #f9ece6;
+ background-image: url(../images/layout/bg_alert.png);
+ background-repeat: repeat-x;
+ padding:5px;
+}
+
+#success {
+margin-bottom: 10px;
+ padding: 5px;
+ border:1px solid #f2eeb7;
+ background:#faf9e4 url(../images/layout/bg_success.png) repeat-x top center;
+}
+
+/** Classes **/
+
+.desc {
+ font-size: 90%;
+ color: #666;
+ font-style: italic;
+}
+
+.bold {
+ font-weight: bold;
+}
+
+.note {
+ border: 1px solid #263356;
+ padding: 0 8px;
+ background: #e8e8e8;
+}
+
+/** Construction **/
+
+#dialog {
+ margin: 150px auto;
+ background: #f5f5f5 url('../images/logtypes/old.gif') repeat-x top right;
+ border:1px solid #e0e0e0;
+ padding: 25px;
+ width: 352px;
+font-size:12px;
+ text-align: left;
+}
+
+ #dialog h1 {
+padding-right:60px;
+}
+#loginSubmit{
+ text-align: right;
+}
+
+
+
+
+
+
+
+/** Login dialog **/
+
+#loginUsernameDiv, #loginPasswordDiv {
+ padding-top: 3px;
+}
+
+#loginUsernameDiv {
+ float: left;
+ width: 170px;
+
+}
+
+* html #loginUsernameDiv {
+ margin-top: 1px;
+}
+
+#loginPasswordDiv {
+ width: 170px;
+margin-left:170px;
+
+}
+.checkbox {
+background-color:none;
+}
+
+#loginSubmit span, #forgotPasswordSubmit span {
+ padding-left: 6px;
+ font-size: 11px;
+}
+
+* html #loginSubmit span, * html #forgotPasswordSubmit span {
+ position: relative;
+ top: -4px;
+}
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/general/construction.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/general/construction.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/general/construction.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/general/construction.css 2008-04-08 10:06:54.000000000 -0700
@@ -0,0 +1,117 @@
+body { background-color: #f0f0f0; color: #666666; margin: 0; padding: 0; }
+#wrapper { background-image: url(../../images/layout/bg_header.png); background-repeat: repeat-x; }
+* html #wrapper{ height: 1%; }
+#header { margin: 0 auto; padding-top: 5px; text-align: left; width: 890px; }
+#headerWrapper{ }
+#header h1 { border: 0; float: left; margin: 0; padding: 10px 0 10px 10px; }
+#header h1 a { border: 0; font-weight: normal; }
+#systemNotices { margin: 0 auto; padding: 10px 0; text-align: left; width: 890px; }
+#systemNotices ul { margin: 0; padding: 0 0 0 15px; }
+#systemNotices a, #systemNotices a:hover { border: 0; text-decoration: underline; }
+/*-------------------- top user nav ---------------------*/
+#userboxWrapper { background-color: #d8d8d8; background-image: url(../../images/layout/bg_userbox.png); background-repeat: repeat-x; border: 1px solid #c1c1c1; color: #666666; float: right; font-size: 11px; font-size: 13px; margin-bottom: 20px; margin-right: 10px; width: 540px; z-index: 250; }
+#userbox { padding: 0 5px; }
+#userbox p{ float: left; margin: 0; padding: 5px; }
+/*-------------------- general userbox links---------------------*/
+#account_more_menu { float: right; list-style: none; margin: 5px 0 0 0; padding: 0; }
+#account_more_menu li{ background-color: #d8d8d8; background-image: url(../../images/layout/bg_dropdown.png); background-repeat: repeat-x; border: 1px solid #c1c1c1; float: left; list-style: none; margin: 0; margin-left: 2px; padding: 0; }
+#account_more_menu li a{ background-image: url(../../images/layout/bg_dropdown_arrow.png); background-position: top right; background-repeat: no-repeat; border: none; color: #444444; display: block; padding: 0px 32px 0px 6px; }
+/*-------------------- submenus---------------------*/
+#account_more_menu ul { background-color: #ffffff; border: 1px solid #cccccc; clear: left; font-weight: normal; /* height: auto;*/ left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */ line-height: 120%; list-style: none; margin: 0; padding: 0; position: absolute; width: 12em; z-index: 1000 !important; }
+#account_more_menu ul li { background-image: none !important; border: none; float: none; font-size: 12px; list-style: none; list-style-image: none !important; margin: 0; padding: 0; }
+* html #account_more_menu ul li, * html #account_more_menu ul li a { height: 1%; }
+#account_more_menu h6 { background-color: #f5f5f5; border-bottom: 1px solid #8dbbce; color: #333333; font-size: 12px; font-weight: bold; margin: 0; padding: 3px 10px !important; }
+/*-------------------- second level links ---------------------*/
+#account_more_menu ul li a { background-image: none !important; border: none; border-bottom: 1px solid #d8d8d8; font-size: 12px; font-weight: normal; height: auto; line-height: 1.2em; margin: 0; padding: 3px 10px !important; }
+#account_more_menu ul li a:hover { background-color: #e9f2f7; color: #0079af; text-decoration: none; }
+#account_more_menu li:hover ul ul, #account_more_menu li:hover ul ul ul, #account_more_menu li.sfhover ul ul, #account_more_menu li.sfhover ul ul ul{ left: -999em; }
+#account_more_menu li:hover ul, #account_more_menu li li:hover ul, #account_more_menu li li li:hover ul, #account_more_menu li.sfhover ul, #account_more_menu li li.sfhover ul, #account_more_menu li li li.sfhover ul{ left: auto; /* lists nested under hovered list items */ }
+/*-------------------- 1st level hover---------------------*/
+#account_more_menu li:hover a, #account_more_menu li.sfhover a{ background-color: #ffffff; color: #0079af; }
+/*-------------------- second level on hover---------------------*/
+#account_more_menu li li:hover a, #account_more_menu li li.sfhover a{ background-color: transparent; color: #0079af; }
+#account_more_menu li:hover li a:hover, #account_more_menu li.sfhover li a:hover{ background-color: #eef6ff; color: #0079af; }
+/*-------------------- ie mac fixes ---------------------*/
+/* only IE mac will see this */
+* html>body #account_more_menu li a{ }
+* html>body #account_more_menu li{ text-align: center; white-space: nowrap; width: 60px; }
+* html>body #account_more_menu li li{ text-align: left; white-space: nowrap; width: 125px; }
+* html>body #account_more_menu li li:hover ul,#account_more_menu li li.sfhover ul{ left: 110px; }
+/* ======================================== Main Menu Tabs============================================*/
+#tabsWrapper { clear: both; margin: 10px auto 0 auto; padding: 0; width: 860px; }
+#tabs { float: left; margin: 0; padding: 0; text-align: left; }
+#tabs ul { list-style: none; list-style-image: none; margin: 0; padding: 0 5px; }
+#tabs ul li { background: url('../../images/layout/bg_tab.png') #c5c5c5 repeat-x; border: 1px solid #a6a6a6; border-bottom: 0; float: left; list-style: none; margin: 0 5px 0 0; }
+#tabs ul li a { background-repeat: no-repeat; border: 0; color: #666666; display: block; font-size: 14px; line-height: 28px; padding: 0 15px; text-decoration: none; }
+#tabs ul li a:hover { color: #000000; text-decoration: none; }
+#tabs ul li.active { background: url(../../images/layout/bg_tab_on.png) #8dbbce repeat-x top right; border: 1px solid #4987a0; border-bottom: 1px solid #8dbbce !important; font-weight: bold; margin-bottom: -1px; position: relative; }
+#tabs ul li.active a { color: #ffffff; font-weight: bold; }
+#tabs ul li.active a:hover { color: #ffffff; text-decoration: none; }
+/** Crumbs **/
+#crumbsWrapper { background-color: #559ab6; background-image: url(../../images/layout/bg_crumbs.png); background-repeat: repeat-x; border-bottom: 1px solid #4887a0; border-top: 1px solid #4887a0; clear: both; float: left; height: 28px; margin: 0 auto; width: 100%; }
+#crumbsBlock { font-size: 13px; line-height: 28px; margin: 0 auto; padding: 0 10px; text-align: left; width: 890px; }
+* html #crumbsBlock { padding: 3px 10px; }
+#crumbs { float: left; }
+#crumbs ul { list-style: none; margin: 0; padding: 0; }
+#crumbs ul li { color: #ffffff; display: inline; font-size: 13px; font-weight: bold; line-height: 22px; }
+#crumbs ul li span { font-weight: normal; }
+#crumbs ul li a { border: 0; color: #ffffff; font-weight: bold; margin: 0 3px; text-decoration: none; }
+#crumbs ul li a:hover { background: transparent; text-decoration: underline; }
+#searchBox { padding: 0 10px; text-align: right; }
+#searchBox input { background-color: #ffffff; background-image: url(../../images/layout/bg_inputs.png); background-repeat: no-repeat; border: 1px solid #999999; font-family: calibri, tahoma,verdana, arial, helvetica, sans-serif; font-size: 12px; padding: 2px 5px; width: 150px; }
+#searchBox input:focus { background: #f8f8f8; border: 1px solid #666666; }
+#searchBox button { display: none; font-size: 11px; }
+/** Content **/
+#outerContentWrapper { clear: both; }
+/*-------------------- main content wrapper---------------------*/
+#innerContentWrapper { background-image: url(../../images/layout/bg_innercontent.png); background-repeat: repeat-y; margin: 0 auto; padding: 10px 15px; text-align: left; width: 880px; }
+#pageTitle { color: #000000; font-size: 18px; font-weight: bold; margin-left: 15px; width: 640px; }
+#pageContent { }
+#content { float: left; min-height: 300px; padding: 5px 15px; width: 640px; }
+/*-------------------- Sidebar ---------------------*/
+#sidebar { font-size: 12px; margin-left: 680px; padding: 10px 15px; }
+#sidebar h2 { font-size: 13px; margin-top: 0; }
+#sidebar li { padding: 2px 0; }
+#sidebar .blockContent { line-height: 120%; margin-bottom: 10px; padding: 0 5px; }
+#sidebar .listWithDetails li { padding-bottom: 5px; }
+/*-------------------- Page actions ---------------------*/
+#page_actions { background-color: #eef6ff; background-color: #b5cd73; background-image: url(../../images/layout/bg_pageactions.png); background-repeat: repeat-x; border: 1px solid #9bb15a; margin-bottom: 10px; padding: 0 10px; }
+/*clearing hacks*/
+#page_actions { _height: 1%; overflow: hidden; }
+#page_actions ul { list-style: none; margin: 0; padding: 0 10px; }
+#page_actions ul li { float: left; font-size: 12px; font-weight: bold; margin: 0; padding: 0; }
+#page_actions ul li a { border: 0; border-left: 1px solid #dae6b5; border-right: 1px solid #9bb15a; color: #5c6c2d; display: block; padding: 5px 10px; text-decoration: none; }
+#page_actions ul li a:hover { color: #000000; }
+/*-------------------- Footer ---------------------*/
+#footer { background-image: url(../../images/layout/bg_footer.png); background-repeat: no-repeat; clear: both; color: #999999; font-size: 10px; margin: 0 auto; padding: 15px; text-align: left; width: 880px; }
+#footer a{ border-bottom-color: #cccccc; color: #999999; }
+#copy { float: left; }
+#productSignature { text-align: right; }
+#listOfRssFeeds { list-style: none; list-style-image: none; padding: 0 0 0 4px; }
+#listOfRssFeeds li { background: url('../../images/icons/feed.gif') no-repeat; line-height: 12px; list-style-image: none; margin: 2px 0; padding-left: 16px; }
+/** Helper classes **/
+.clear { clear: both; height: 1px; overflow: hidden; }
+#error, #success { border: 1px solid #cccccc; clear: both; cursor: pointer; font-weight: bold; margin: 10px 15px; padding: 5px 10px; text-align: left; }
+#error { background-color: #f8e9e0; background-image: url(../../images/layout/bg_alert.png); background-repeat: repeat-x; border: 1px solid #efcab9; padding: 5px; }
+#success { background: url(../../images/layout/bg_success.png) repeat-x top center; background-color: #faf9e4; border: 1px solid #f2eeb7; margin-bottom: 10px; padding: 5px; }
+#innerContentWrapper #success, #innerContentWrapper #error{ float: left; width: 640px; }
+/** User card **/
+div.card { background: url('../../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; padding: 10px; }
+* html div.card { padding-top: 5px; }
+div.card div.cardIcon { background: url('../../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; float: left; margin: 5px; padding: 5px; }
+div.card div.cardData { margin-left: 80px; }
+div.card div.cardData h2 { margin-top: 0; }
+div.card div.cardBlock { margin-bottom: 25px; padding-left: 10px; }
+div.card div.cardBlock span { color: #333333; font-weight: bold; }
+div.card table { margin-top: 10px; }
+div.card table, div.card table tr, div.card table td { border: 0; }
+div.card table tr, div.card table td { padding: 2px; }
+/** / user card **/
+/** Advanced pagination **/
+div.advancedPagination { margin: 10px; text-align: right; }
+div.advancedPagination span { line-height: 20px; }
+div.advancedPagination select { padding: 0; }
+/** /Advanced pagination **/
+/** Private **/
+div.private { background: url('../../images/icons/private.gif') no-repeat; float: right; height: 9px; overflow: hidden; width: 37px; }
+div.private span { display: none; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/general/forms.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/general/forms.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/general/forms.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/general/forms.css 2008-04-08 11:12:30.000000000 -0700
@@ -0,0 +1,39 @@
+label { display: block; font-size: 12px; font-weight: bold; margin: 3px 0; }
+label.checkbox, label.yes_no { display: inline; position: relative; top: -2px; }
+* html label.checkbox, * html label.yes_no { top: 1px; }
+label.yes_no { font-weight: normal; }
+label span.label_required { color: #bf5940; }
+input, textarea, select{ background-color: #ffffff; background-image: url(../../images/layout/bg_inputs.png); background-repeat: no-repeat; border: 1px solid #cccccc; font-family: calibri, tahoma,verdana, arial, helvetica, sans-serif; font-size: 12px; padding: 2px 5px; }
+select { padding: 1px; }
+input:hover, textarea:hover, select:hover { border: 1px solid #aaaaaa; }
+input:focus, textarea:focus, select:focus { border: 1px solid #8dbbce; }
+fieldset { border: 1px solid #cccccc; background-color: #f6f8f9margin: 10px 0; padding: 10px; padding-top: 5px; }
+fieldset legend { font-size: 12px; font-weight: bold; }
+input { width: 200px; }
+input.short { width: 50px; }
+input.medium { width: 150px; }
+input.long { width: 400px; }
+input.title { width: 530px; }
+input.checkbox, input.yes_no { background: transparent; border: 0; width: auto; }
+legend label.checkbox { font-weight: bold; }
+textarea, textarea.long { height: 150px; width: 400px; }
+textarea.short { height: 70px; width: 365px; }
+textarea.comment { height: 150px; width: 488px; }
+textarea.editor { height: 300px; width: 530px; }
+button, button.submit, input[type=submit], button[type=submit], .submit { background-color: #599db7; background-image: url(../../images/layout/bg_crumbs.png); background-repeat: repeat-x; border: 1px solid #4887a0; color: #ffffff; font-size: 12px; font-weight: bold; letter-spacing: 1px; margin-top: 10px; padding: 4px 12px; }
+button:hover, button.submit:hover, input[type=submit]:hover, button[type=submit]:hover, .submit:hover { border: 1px solid #2b586a; color: #2b586a; }
+button, .submit, .reset{ float: right; margin-left: 5px; overflow: visible; vertical-align: middle; }
+button[type=reset],input[type=reset]{ background-color: #a9a9a9; background-image: url(../../images/layout/bg_btn_reset.png); border: 1px solid #9a9a9a; margin-top: -.70em; }
+button.reset,* html button{ background-color: #a9a9a9; background-image: url(../../images/layout/bg_btn_reset.png); border: 1px solid #9a9a9a; color: #ffffff; font-size: 12px; font-weight: bold; letter-spacing: 1px; margin-top: -.70em; padding: 4px 12px; }
+* html .submit { background-color: #599db7; background-image: url(../../images/layout/bg_crumbs.png); background-repeat: repeat-x; border: 1px solid #4887a0; margin-top: 10px; }
+/*-------------------- hack opera---------------------*/
+html:first-child button[type=reset],input[type=reset]{ margin-top: .8em; }
+span.required { color: #bf5940; }
+form div.formBlock label { margin-top: 0; padding-top: 0; }
+#formErrors { background-color: #f9ece6; background-image: url(../../images/layout/bg_alert.png); background-repeat: repeat-x; border: 1px solid #efcab8; padding: 5px; }
+/** Options block, best to put it into fieldset **/
+.objectOption { margin-top: 5px; }
+.objectOption .optionLabel { display: block; float: left; width: 140px; }
+.objectOption .optionLabel label { margin: 0; padding: 0; }
+.objectOption div.optionControl { margin-left: 140px; }
+.objectOption div.optionDesc { clear: left; color: #333333; font-size: 11px; padding: 0 5px 5px 5px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/general/rewrites.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/general/rewrites.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/general/rewrites.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/general/rewrites.css 2008-04-08 10:59:40.000000000 -0700
@@ -0,0 +1,71 @@
+/** Reset **/
+body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td { margin: 0; padding: 0; }
+table { border-collapse: collapse; border-spacing: 0; }
+fieldset, img{ border: 0; }
+ol, ul { list-style: none; }
+caption, th { text-align: left; }
+q:before, q:after { content: ''; }
+body { color: #333333; font-family: calibri,candara, tahoma, arial, helvetica, sans-serif; font-size: 12px; line-height: 150%; }
+input, th,td, textarea, option,select{ font-family: calibri,candara, tahoma, arial, helvetica, sans-serif; font-size: 1em; }
+a { border-bottom: 1px dotted #ababab; color: #444444; outline: none; text-decoration: none; }
+a:hover { border-bottom: 1px solid #666666; color: #222222; }
+a img{ border: 0; vertical-align: text-bottom; }
+em { font-style: italic; }
+strong { font-weight: bold; }
+h1, h2, h3, h4 { margin: 10px 0; }
+h1 { font-size: 20px; padding: 0; }
+h2 { font-size: 16px; }
+h3 { font-size: 14px; text-decoration: underline; }
+p, ul, pre, dl { margin: 5px 0; }
+ul { list-style-image: url(../../images/icons/0105_ico-arrow.gif); padding-left: 20px; }
+ol { list-style: decimal; padding-left: 25px; }
+dt { font-weight: bold; }
+dd { padding: 5px; }
+code { background: #e8e8e8; font-size: 14px; overflow: auto; padding: 0 2px; }
+pre { background: #f1f1f1; border: 1px solid #e5e5e5; font-size: 14px; overflow: auto; padding: 10px; }
+acronym { border-bottom: 1px dotted #cccccc; cursor: help; }
+table { border: 1px solid #cccccc; border-collapse: collapse; width: 100%;}
+th, td { border: 1px solid #e5e5e5; padding: 4px; vertical-align: top; }
+th { font-weight: bold;background-color: #f1f1f1;background-image: url(../../images/logtypes/bg_th.gif); font-size: 12px; padding: 2px 5px; background-position: bottom; background-repeat: repeat-x }
+table.blank{ width: 100%; border:0; }
+table.blank th, table.blank td { padding: 4px !important; }
+table.blank td { border:0;}
+/** Classes **/
+.desc, .desc a { color: #666666; font-size: 12px; font-style: italic; font-weight: normal; }
+.help { border-bottom: 1px dotted #cccccc; cursor: help; }
+.short { width: 30px; }
+.medium { width: 100px; }
+.long { width: 350px; }
+.left { text-align: left; }
+.center { text-align: center; }
+.right { text-align: right; }
+.top { vertical-align: top; }
+.middle { vertical-align: middle; }
+.bottom { vertical-align: bottom; }
+.bold { font-weight: bold; }
+.italic { font-style: italic; }
+.normal { font-style: normal; font-weight: normal; }
+.error { color: #bf5940; }
+.even { background-color: transparent; border-bottom: 1px solid #e8e8e8; }
+.odd { background-color: #f6f8f9; border-bottom: 1px solid #bfd9e4; }
+div.odd{ margin-top: -8px !important; padding-top: 10px; }
+.blockHeader { border-bottom: 1px solid #333333; font-size: 120%; margin-bottom: 5px; padding: 5px 10px; }
+.blockHeader h2 { font-size: 18px; font-weight: normal; margin: 5px 0; }
+.note { background: #e8e8e8; border: 1px solid #cccccc; padding: 0 8px; }
+.hint, .important, .success{ border: 1px solid #cccccc; font-size: 12px; margin: 10px 0; padding: 5px 10px; }
+.header { font-weight: bold; padding: 2px 5px 4px 5px; }
+.block .content, .hint .content, .important .content, .success .content { line-height: 150%; padding: 5px; }
+.header h2 { font-size: 16px; font-weight: bold; margin: 0 0 5px 0; padding: 0; }
+.block { background: #f5f5f5 url('../../images/logtypes/old.gif') repeat-x top right;
+ border:1px solid #e0e0e0; margin-bottom: 10px; padding: 5px; }
+.block .header { border-bottom: 1px solid #cccccc; }
+.important { background-color: #f9ece6; background-image: url(../../images/layout/bg_alert.png); background-repeat: repeat-x; border-color: #efcab8; padding: 5px; }
+.important .header { border-bottom: 1px solid #efcab8; }
+.success, .hint, #innerContentWrapper #success { background: url(../../images/layout/bg_success.png) repeat-x top center; background-color: #faf9e4; border: 1px solid #f2eeb7; margin-bottom: 10px; padding: 5px; }
+.success .header, .hint .header { border-bottom: 1px solid #f2eeb7; }
+a.blank, a.blank:hover { background: transparent; border: 0; margin: 0; padding: 0; }
+a.checkboxLink, a.checkboxLink:hover { background: transparent; border: 0; height: 12px; margin: 0; padding: 0; width: 12px; }
+a.checkboxLink img { border: 0; }
+.assignedTo { font-weight: bold; color: #666; font-size:12px !important; }
+a.selected { background: #e9f1f5; }
+a.iCalSubscribe { background: url('../../images/icons/icalendar.png') no-repeat; padding: 4px 0 0 20px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/attach_document.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/attach_document.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/attach_document.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/attach_document.css 2008-04-08 10:07:24.000000000 -0700
@@ -0,0 +1 @@
+#attachFormExistingFileControls, #attachFormNewFileControls { margin: 5px 0; border: 1px solid #ccc; padding: 5px 10px 10px 10px; }
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/attach_files.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/attach_files.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/attach_files.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/attach_files.css 2008-04-08 10:07:48.000000000 -0700
@@ -0,0 +1,10 @@
+.attachFiles button.add_button { margin-top: 5px; }
+.attachFiles button.remove_button { font-size: 11px; }
+* html .attachFiles button.remove_button { margin-left: 3px; }
+#attachFormExistingFileControls, #attachFormNewFileControls { padding: 5px 20px; }
+#attachFormExistingFileControls fieldset, #attachFormNewFileControls fieldset { margin: 0 0 10px 0; }
+/** Attached files **/
+div.objectFiles { font-size: 11px; }
+div.objectFiles ul li a span { font-weight: bold; }
+div.objectFiles div.objectFilesTitle { font-size: 11px; }
+div.objectFiles div.objectFilesTitle span { color: #333333; font-weight: bold; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/comments.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/comments.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/comments.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/comments.css 2008-04-08 10:07:58.000000000 -0700
@@ -0,0 +1,5 @@
+#objectComments div.comment { margin: 8px 0; padding: 10px; }
+#objectComments .commentHead { color: #666666; font-size: 11px; }
+#objectComments .commentHead a { font-weight: bold; }
+#objectComments .commentBody { background: url('../../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; padding: 0 10px; }
+#objectComments .commentUserAvatar { background: url('../../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; float: left; margin: 5px; padding: 5px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/files.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/files.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/files.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/files.css 2008-04-08 10:08:32.000000000 -0700
@@ -0,0 +1,29 @@
+div.filesOrderAndPagination { background: url('../../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; font-size: 11px; min-height: 20px; padding: 2px 5px; }
+div.filesOrder { float: left; line-height: 20px; }
+div.filesOrder span { font-weight: bold; }
+div.filesOrderAndPagination div.advancedPagination { margin: 0; }
+/** File info **/
+div.listedFile { clear: left; margin: 8px 0; padding: 8px; }
+div.listedFile div.fileIcon { float: left; text-align: center; width: 100px; }
+div.listedFile div.fileInfo { margin-left: 115px; }
+div.listedFile div.fileName { font-size: 120%; font-weight: bold; padding-bottom: 4px; }
+div.listedFile div.fileDescription p, div.listedFile div.fileDescription ul, div.listedFile div.fileDescription ol { margin: 3px 0; }
+div.listedFile div.fileLastRevision, div.listedFile div.fileDetails, div.listedFile div.fileTags { color: #666666; font-size: 11px; }
+div.listedFile div.fileOptions { margin-top: 5px; }
+/** Add / edit file **/
+#selectFileControl { float: left; width: 250px; }
+#selectFolderControl { margin-left: 250px; }
+#selectFileControl label, #selectFolderControl label { margin-top: 0; }
+#revisionControls { margin-top: 10px; }
+#revisionControls label { font-weight: bold; }
+/** File details page **/
+#fileIcon { float: left; padding: 5px 5px 0 5px; text-align: center; width: 100px; }
+#fileInfo { margin-left: 115px; }
+#fileInfo div span.propertyName { color: #555555; font-weight: bold; }
+div.revision { background: url('../../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; padding: 5px 10px; }
+div.lastRevision { background: url(../../images/layout/bg_success.png) repeat-x top center; background-color: #faf9e4; border: 1px solid #f2eeb7; padding: 5px; }
+div.revisionName { color: #bf5940; font-size: 13px; font-weight: bold; }
+div.revisionName span { color: #333333; font-weight: normal; }
+div.revisionComment { border-bottom: 1px solid #e0e0e0; margin: 5px 0; padding: 0 8px; }
+a.downloadLink { font-weight: bold; }
+a.downloadLink span { font-weight: normal; }
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/forms.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/forms.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/forms.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/forms.css 2008-04-03 12:44:02.000000000 -0700
@@ -0,0 +1,3 @@
+#projectFormAction table td { vertical-align: middle; }
+#projectFormAction table td label { font-size: 11px; font-weight: bold; padding-right: 5px; }
+#projectFormOptions table td label { padding-right: 5px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/messages.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/messages.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/messages.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/messages.css 2008-04-03 12:43:36.000000000 -0700
@@ -0,0 +1,21 @@
+/** Message display **/
+.message .block .header { font-size: 150%; padding-bottom: 5px; }
+.message .messageDetails { background: #f8f8f8; border: 1px solid #e8e8e8; padding: 2px 5px; }
+.message .messageDetails .private { margin-top: 4px; }
+.message h1, .message h2, .message h3 { border-bottom: 1px solid #cccccc; font-weight: normal; }
+.message h1 { font-size: 2em; }
+.message h2 { font-size: 1.5em; }
+.message h3 { font-size: 1.1em; text-decoration: none; }
+.message .messageText { line-height: 150%; padding: 10px; }
+.message .messageSeparator { font-size: 11px; font-weight: bold; text-align: center; }
+.message .objectFilesTitle span, .message .messageCommentCount span, .message .messageTags span { color: #333333; font-weight: bold; }
+.message .messageOptions { margin-top: 10px; }
+.message .messageComment { margin: 10px 10px; }
+.message .messageCommentHead { font-size: 12px; font-weight: bold; }
+.message .messageCommentBody { background: #ffffff; border: 1px solid #cccccc; border-width: 1px 0; padding: 10px; }
+/** Add message form **/
+#emailNotification .companyDetails { border: 1px dotted #cccccc; margin: 10px 0; padding: 5px 10px; }
+#emailNotification .companyName label { font-weight: bold; }
+#emailNotification .companyMembers { padding-top: 5px; }
+#emailNotification .companyMembers ul { list-style: none; margin: 0; padding: 0; }
+#emailNotification .companyMembers ul li { display: inline; padding-right: 5px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/milestones.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/milestones.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/milestones.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/milestones.css 2008-04-08 10:09:06.000000000 -0700
@@ -0,0 +1 @@
+#milestones .milestone .dueDate span { font-weight: bold; }
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/people.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/people.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/people.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/people.css 2008-04-04 12:55:54.000000000 -0700
@@ -0,0 +1,13 @@
+#people div.projectCompany { background: url('../../images/logtypes/old.gif') #f7f7f4 repeat-x top right; border: 1px solid #e0e0e0; margin: 10px 0; min-height: 50px; padding: 10px; }
+ div.projectCompanyInfo, div.projectCompanyUsers{ margin-left: 50px; }
+* html #people div.projectCompany { height: 50px; }
+div.projectCompanyLogo { background: #ffffff; border: 1px solid #e0e0e0; float: left; margin: 5px; padding: 5px; }
+#people div.projectCompanyMeta { margin-left: 60px; }
+#people div.projectCompany a.companyName { font-size: 14px; font-weight: bold; }
+#people div.projectCompanyAddress, #people div.projectUserTitle, #people div.projectUserEmail { color: #666666; font-size: 12px; line-height: 120%; margin-top: 5px; padding-left: 5px; }
+#people div.projectCompanyHomepage { font-size: 12px; line-height: 100%; margin-top: 5px; padding-left: 5px; }
+#people div.projectCompanyOptions { font-size: 11px; margin-top: 5px; }
+#people div.projectCompanyUsers table { background: #ffffff; margin-top: 20px; width: 500px; }
+#people div.projectCompanyUsers table td{padding: 5px;}
+#people .projectUserDisplayName { font-weight: bold; }
+#people div.projectUserTitle, #people div.projectUserEmail { margin: 0; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/permissions.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/permissions.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/permissions.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/permissions.css 2008-04-08 10:09:18.000000000 -0700
@@ -0,0 +1,8 @@
+div.projectCompany { background: url('../../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; margin: 10px 0; min-height: 50px; padding: 10px; }
+* html div.projectCompany { height: 50px; }
+div.projectCompanyLogo { background: url('../../images/logtypes/old.gif') #f5f5f5 repeat-x top right; border: 1px solid #e0e0e0; float: left; margin: 5px; padding: 5px; }
+div.projectCompanyMeta { margin-left: 70px; }
+div.projectCompany .projectCompanyTitle label { font-weight: bold; }
+div.projectCompany div.projectCompanyUsers { margin: 10px 0 0 10px; }
+div.projectCompany div.projectUserPermissions { padding-left: 10px; }
+div.projectCompany tr.user { border: 1px solid #e0e0e0; border-width: 1px 0; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/project_log.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/project_log.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/project_log.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/project_log.css 2008-04-08 10:09:26.000000000 -0700
@@ -0,0 +1,5 @@
+div.projectLog { line-height: 150%; }
+div.projectLog table { width: 530px; }
+div.projectLog a { font-weight: normal; }
+div.projectLog tr { border-bottom: 1px dotted #cccccc; }
+div.projectLog tr td { padding: 5px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/reorder_tasks.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/reorder_tasks.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/reorder_tasks.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/reorder_tasks.css 2008-04-08 10:09:32.000000000 -0700
@@ -0,0 +1,2 @@
+#reorderTasks table td { padding: 5px; }
+#reorderTasks table td input.short { width: 30px; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/search_results.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/search_results.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/search_results.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/search_results.css 2008-04-08 10:09:40.000000000 -0700
@@ -0,0 +1 @@
+#searchForm { border: 1px solid #ccc; background: #e8e8e8; padding: 0 10px 10px 10px; text-align: center; }
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/task_list.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/task_list.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project/task_list.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project/task_list.css 2008-04-08 10:40:02.000000000 -0700
@@ -0,0 +1,11 @@
+div.taskList { font-size: 110%; }
+div.taskList .desc { padding: 5px; padding-bottom: 0; font-size: 12px; color: #666; }
+div.taskList .openTasks, .taskList .completedTasks { margin: 10px; }
+div.taskList td.taskCheckbox { padding-top: 4px; width: 20px;}
+div.taskList .addTask { background: url(../../images/layout/bg_block.png) repeat-x top left; background-color: #e9f1f5; border: 1px solid #bbd7e2; padding: 5px; }
+div.taskList .options { padding: 10px; padding-top: 0; }
+div.taskList .completedTasks { color: #666666; font-size: 12px; }
+div.taskList .completedTasks td { line-height: 16px; padding: 0 2px; }
+div.taskList span.taskCompletedOnBy { color: #333333; font-style: italic; }
+div.taskList .taskListTags { font-size: 12px; margin: 10px; }
+div.taskList .taskListTags span { font-weight: bold; }
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project_website.css projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project_website.css
--- projectpier-0.8.0.2/public/assets/themes/marine/stylesheets/project_website.css 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/stylesheets/project_website.css 2008-04-08 10:23:14.000000000 -0700
@@ -0,0 +1,7 @@
+@import 'general/rewrites.css';
+@import 'general/forms.css';
+@import 'general/construction.css';
+
+select.select_milestone, select.select_task_list, select.select_message { width: 250px; }
+
+.options { margin: 10px 0 0 0; }
\ No newline at end of file
diff -urN projectpier-0.8.0.2/public/assets/themes/marine/theme.xml projectpier-0.8.0.2_patched/public/assets/themes/marine/theme.xml
--- projectpier-0.8.0.2/public/assets/themes/marine/theme.xml 1969-12-31 16:00:00.000000000 -0800
+++ projectpier-0.8.0.2_patched/public/assets/themes/marine/theme.xml 2008-04-08 11:21:08.000000000 -0700
@@ -0,0 +1,10 @@
+
+
+
+ http://projectpier.org/project/Marine
+ Marine 1.1
+
+ 2008-04-08 00:00:00
+ http://projectpier.org/project/Marine
+
+
\ No newline at end of file