You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by gj...@apache.org on 2012/04/13 19:23:18 UTC

svn commit: r1325854 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css

Author: gjm
Date: Fri Apr 13 17:23:17 2012
New Revision: 1325854

URL: http://svn.apache.org/viewvc?rev=1325854&view=rev
Log:
theme: adding some styles from trac.css to bloodhound.css to clean up some views (trac.css is not currently loaded by the theme)

Modified:
    incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css

Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css?rev=1325854&r1=1325853&r2=1325854&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css Fri Apr 13 17:23:17 2012
@@ -6,3 +6,35 @@
   margin-bottom: 0px;
 }
 
+/* Section folding */
+.foldable :link, .foldable :visited {
+  background: url(../common/expanded.png) 0 50% no-repeat;
+  border: none;
+  padding-left: 16px;
+}
+.collapsed > .foldable :link, .collapsed > .foldable :visited {
+  background-image: url("../common/collapsed.png");
+}
+.collapsed > div, .collapsed > table, .collapsed > ul, .collapsed > dl { display: none }
+
+/* Heading anchors */
+.anchor:link, .anchor:visited {
+  border: none;
+  color: #d7d7d7;
+  font-size: .8em;
+  vertical-align: text-top;
+}
+* > .anchor:link, * > .anchor:visited {
+  visibility: hidden;
+}
+h1:hover .anchor, h2:hover .anchor, h3:hover .anchor,
+h4:hover .anchor, h5:hover .anchor, h6:hover .anchor,
+span:hover .anchor {
+  visibility: visible;
+  text-decoration: none;
+}
+
+h1:target, h2:target, h3:target, h4:target, h5:target, h6:target,
+span:target {
+  background: #ffb;
+}