[Scummvm-cvs-logs] SF.net SVN: scummvm:[46506] doxygen

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Wed Dec 23 17:45:30 CET 2009


Revision: 46506
          http://scummvm.svn.sourceforge.net/scummvm/?rev=46506&view=rev
Author:   fingolfin
Date:     2009-12-23 16:45:29 +0000 (Wed, 23 Dec 2009)

Log Message:
-----------
DOXYGEN: Rename tabs.css to scummvm_tabs.css

Modified Paths:
--------------
    doxygen/scummvm.header

Added Paths:
-----------
    doxygen/scummvm_tabs.css

Removed Paths:
-------------
    doxygen/tabs.css

Modified: doxygen/scummvm.header
===================================================================
--- doxygen/scummvm.header	2009-12-23 16:43:24 UTC (rev 46505)
+++ doxygen/scummvm.header	2009-12-23 16:45:29 UTC (rev 46506)
@@ -4,7 +4,7 @@
     <title>ScummVM :: Doxygen</title>
     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
     <link rel="stylesheet" href="$relpath$doxygen.css" type="text/css">
-    <link rel="stylesheet" href="$relpath$tabs.css" type="text/css">
+    <link rel="stylesheet" href="$relpath$scummvm_tabs.css" type="text/css">
     <link rel="stylesheet" href="$relpath$scummvm.css" type="text/css">
   </head>
   <body>

Copied: doxygen/scummvm_tabs.css (from rev 46504, doxygen/tabs.css)
===================================================================
--- doxygen/scummvm_tabs.css	                        (rev 0)
+++ doxygen/scummvm_tabs.css	2009-12-23 16:45:29 UTC (rev 46506)
@@ -0,0 +1,102 @@
+/* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */
+
+DIV.tabs
+{
+   float            : left;
+   width            : 100%;
+   background       : url("images/tab_b.png") repeat-x bottom;
+   margin-bottom    : 4px;
+}
+
+DIV.tabs UL
+{
+   margin           : 0px;
+   padding-left     : 10px;
+   list-style       : none;
+}
+
+DIV.tabs LI, DIV.tabs FORM
+{
+   display          : inline;
+   margin           : 0px;
+   padding          : 0px;
+}
+
+DIV.tabs FORM
+{
+   float            : right;
+}
+
+DIV.tabs A
+{
+   float            : left;
+   background       : url("images/tab_r.png") no-repeat right top;
+   border-bottom    : 1px solid #84B0C7;
+   font-size        : x-small;
+   font-weight      : bold;
+   text-decoration  : none;
+}
+
+DIV.tabs A:hover
+{
+   background-position: 100% -150px;
+}
+
+div.tabs a:link, div.tabs a:visited, 
+div.tabs a:active, div.tabs a:hover 
+{ 
+   color: #fff !important; 
+}
+
+DIV.tabs SPAN
+{
+   float            : left;
+   display          : block;
+   background       : url("images/tab_l.png") no-repeat left top;
+   padding          : 5px 9px;
+   white-space      : nowrap;
+}
+
+DIV.tabs INPUT
+{
+   float            : right;
+   display          : inline;
+   font-size        : 1em;
+}
+
+DIV.tabs TD
+{
+   font-size        : x-small;
+   font-weight      : bold;
+   text-decoration  : none;
+}
+
+
+
+/* Commented Backslash Hack hides rule from IE5-Mac \*/
+DIV.tabs SPAN {float : none;}
+/* End IE5-Mac hack */
+
+DIV.tabs A:hover SPAN
+{
+   background-position: 0% -150px;
+}
+
+DIV.tabs LI.current A
+{
+   background-position: 100% -150px;
+   border-width     : 0px;
+}
+
+DIV.tabs LI.current SPAN
+{
+   background-position: 0% -150px;
+   padding-bottom   : 6px;
+}
+
+DIV.navpath
+{
+   background       : none;
+   border           : none;
+   border-bottom    : 1px solid #84B0C7;
+}

Deleted: doxygen/tabs.css
===================================================================
--- doxygen/tabs.css	2009-12-23 16:43:24 UTC (rev 46505)
+++ doxygen/tabs.css	2009-12-23 16:45:29 UTC (rev 46506)
@@ -1,102 +0,0 @@
-/* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */
-
-DIV.tabs
-{
-   float            : left;
-   width            : 100%;
-   background       : url("images/tab_b.png") repeat-x bottom;
-   margin-bottom    : 4px;
-}
-
-DIV.tabs UL
-{
-   margin           : 0px;
-   padding-left     : 10px;
-   list-style       : none;
-}
-
-DIV.tabs LI, DIV.tabs FORM
-{
-   display          : inline;
-   margin           : 0px;
-   padding          : 0px;
-}
-
-DIV.tabs FORM
-{
-   float            : right;
-}
-
-DIV.tabs A
-{
-   float            : left;
-   background       : url("images/tab_r.png") no-repeat right top;
-   border-bottom    : 1px solid #84B0C7;
-   font-size        : x-small;
-   font-weight      : bold;
-   text-decoration  : none;
-}
-
-DIV.tabs A:hover
-{
-   background-position: 100% -150px;
-}
-
-div.tabs a:link, div.tabs a:visited, 
-div.tabs a:active, div.tabs a:hover 
-{ 
-   color: #fff !important; 
-}
-
-DIV.tabs SPAN
-{
-   float            : left;
-   display          : block;
-   background       : url("images/tab_l.png") no-repeat left top;
-   padding          : 5px 9px;
-   white-space      : nowrap;
-}
-
-DIV.tabs INPUT
-{
-   float            : right;
-   display          : inline;
-   font-size        : 1em;
-}
-
-DIV.tabs TD
-{
-   font-size        : x-small;
-   font-weight      : bold;
-   text-decoration  : none;
-}
-
-
-
-/* Commented Backslash Hack hides rule from IE5-Mac \*/
-DIV.tabs SPAN {float : none;}
-/* End IE5-Mac hack */
-
-DIV.tabs A:hover SPAN
-{
-   background-position: 0% -150px;
-}
-
-DIV.tabs LI.current A
-{
-   background-position: 100% -150px;
-   border-width     : 0px;
-}
-
-DIV.tabs LI.current SPAN
-{
-   background-position: 0% -150px;
-   padding-bottom   : 6px;
-}
-
-DIV.navpath
-{
-   background       : none;
-   border           : none;
-   border-bottom    : 1px solid #84B0C7;
-}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list