You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by es...@apache.org on 2007/06/29 21:23:49 UTC

svn commit: r552006 - /portals/pluto/trunk/pluto-portal/src/main/webapp/pluto.css

Author: esm
Date: Fri Jun 29 12:23:48 2007
New Revision: 552006

URL: http://svn.apache.org/viewvc?view=rev&rev=552006
Log:
[PLUTO-385]: Implement CSS-based tab navigation in Pluto Portal.

Modified:
    portals/pluto/trunk/pluto-portal/src/main/webapp/pluto.css

Modified: portals/pluto/trunk/pluto-portal/src/main/webapp/pluto.css
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal/src/main/webapp/pluto.css?view=diff&rev=552006&r1=552005&r2=552006
==============================================================================
--- portals/pluto/trunk/pluto-portal/src/main/webapp/pluto.css (original)
+++ portals/pluto/trunk/pluto-portal/src/main/webapp/pluto.css Fri Jun 29 12:23:48 2007
@@ -85,56 +85,6 @@
   font-size:smaller;
 }
 
-/** 'navigation' block **/
-/**
-#navigation {
-  clear: both;
-}
-
-#navigation h2 {
-  padding: 5px 10px 5px 10px;
-  margin: 0px;
-  color: #6D97BF;
-  font-family: "Trebuchet MS", Trebuchet, Arial, Helvetica, Sans-serif;
-  font-size: 100%;
-}
-
-#navigation ul {
-  margin: 0px;
-  padding: 5px 10px 5px 10px;
-  list-style: none;
-  position: absolute;
-  background-color: #F0F0F0;
-  border-width: 0px 1px 1px 1px;
-  border-style: solid;
-  border-color: #000000;
-}
-
-#navigation ul li {
-  color: #888888;
-  font-family: "Trebuchet MS", Trebuchet, Arial, Helvetica, Sans-serif;
-  font-size: smaller;
-}
-
-#navigation ul li a {
-  color: #888888;
-  text-decoration: none;
-}
-
-#navigation ul li a:hover {
-  color: #6D97BF;
-  text-decoration: underline;
-}
-
-**/
-
-#navigation .selected, #navigation .selected a {
-  /** color: #6D97BF; **/
-  color: #FFFFFF;
-  font-weight: bold;
-}
-
-
 /** 'content' block **/
 
 #content {
@@ -268,35 +218,41 @@
   border-color: #2E6794;
 }
 
-/* navigation tabs */
+/** navigation block **/
+
+#navigation .selected, #navigation .selected a {
+  /** color: #6D97BF; **/
+  color: #FFFFFF;
+  font-weight: bold;
+}
 
 #navigation {
-    position:relative;
-    float:left;
-    width:100%;
-    padding:0 0 1.75em 1em;
-    margin:0;
-    list-style:none;
-    line-height:1em;
+    position: relative;
+    float: left;
+    width: 100%;
+    padding: 0 0 1.75em 1em;
+    margin: 0;
+    list-style: none;
+    line-height: 1em;
 }
 
 #navigation LI {
-    float:left;
-    margin:0;
-    padding:0;
+    float: left;
+    margin: 0;
+    padding: 0;
 }
 
 #navigation A {
-    display:block;
-    color:#444;
-    text-decoration:none;
-    font-weight:bold;
-    background:#8DB7DF;
-    margin:0;
-    padding:0.25em 1em;
-    border-left:1px solid #fff;
-    border-top:1px solid #fff;
-    border-right:1px solid #aaa;
+    display: block;
+    color: #444;
+    text-decoration: none;
+    font-weight: bold;
+    background: #8DB7DF;
+    margin: 0;
+    padding: 0.25em 1em;
+    border-left: 1px solid #fff;
+    border-top: 1px solid #fff;
+    border-right: 1px solid #aaa;
 }
 
 #navigation A:hover,
@@ -308,6 +264,6 @@
 
 #navigation A.here:link,
 #navigation A.here:visited {
-    position:relative;
-    z-index:102;
+    position: relative;
+    z-index: 102;
 }