OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-meta Date: 13-Mar-2006 08:47:39
Branch: HEAD Handle: 2006031307473800
Modified files:
openpkg-meta canvas-layout.php canvas-nav-path.php
canvas-style.php
Log:
consequently use lower-case for HTML tags in CSS selectors
Summary:
Revision Changes Path
1.16 +20 -19 openpkg-meta/canvas-layout.php
1.7 +1 -1 openpkg-meta/canvas-nav-path.php
1.11 +25 -25 openpkg-meta/canvas-style.php
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-meta/canvas-layout.php
============================================================================
$ cvs diff -u -r1.15 -r1.16 canvas-layout.php
--- openpkg-meta/canvas-layout.php 12 Mar 2006 19:16:35 -0000 1.15
+++ openpkg-meta/canvas-layout.php 13 Mar 2006 07:47:38 -0000 1.16
@@ -29,7 +29,7 @@
divert("css");
</script>
-BODY {
+body {
left: 0px;
top: 0px;
margin: 0px 0px 0px 0px;
@@ -43,7 +43,7 @@
position: relative;
}
-DIV#canvas {
+div#canvas {
left: 0px;
right: 0px;
<script language="php">if ($opt["stretch"] == "margin") {</script>
@@ -71,14 +71,14 @@
z-index: 1;
}
-DIV#canvas_logo {
+div#canvas_logo {
position: absolute;
right: 0px;
top: 0px;
z-index: 20;
}
-DIV#canvas_head {
+div#canvas_head {
position: absolute;
background-color: #706050;
top: 0px;
@@ -86,13 +86,14 @@
width: 100%;
height: 110px;
}
-DIV#canvas_head IMG {
+
+div#canvas_head img {
position: absolute;
right: 0px;
top: 0px;
}
-DIV#canvas_tabs {
+div#canvas_tabs {
position: absolute;
left: 60px;
top: 90px;
@@ -100,13 +101,13 @@
z-index: 10;
}
-DIV#canvas_title IMG {
+div#canvas_title img {
position: absolute;
left: 60px;
top: 130px;
}
-H1 {
+h1 {
margin: 0px;
position: absolute;
left: 60px;
@@ -115,11 +116,11 @@
<script language="php">if ($opt["pane"] == "1") {</script>
-H1 {
+h1 {
top: 220px;
}
-DIV#canvas_body {
+div#canvas_body {
margin-top: 260px;
margin-left: 60px;
margin-right: 60px;
@@ -127,7 +128,7 @@
z-index: 1;
}
-DIV#canvas_nav {
+div#canvas_nav {
position: absolute;
margin-left: 60px;
margin-right: 60px;
@@ -137,11 +138,11 @@
<script language="php">} else if ($opt["pane"] == "2") {</script>
-H1 {
+h1 {
top: 190px;
}
-DIV#canvas_body {
+div#canvas_body {
margin-top: 230px;
margin-left: 60px;
margin-right: 300px;
@@ -149,7 +150,7 @@
z-index: 1;
}
-DIV#canvas_nav {
+div#canvas_nav {
position: absolute;
right: 40px;
top: 230px;
@@ -158,7 +159,7 @@
<script language="php">}</script>
-DIV#canvas_foot {
+div#canvas_foot {
position: absolute;
left: 0px;
bottom: 0px;
@@ -170,19 +171,19 @@
z-index: 10;
display: none;
}
-DIV#canvas_foot A {
+div#canvas_foot a {
font-weight: normal;
color: #e0d0c0;
}
-DIV#canvas_foot SPAN.sep {
+div#canvas_foot span.sep {
color: #b0a090;
}
-DIV#canvas_foot DIV.canvas_foot_left {
+div#canvas_foot div.canvas_foot_left {
position: absolute;
left: 60px;
bottom: 4px;
}
-DIV#canvas_foot DIV.canvas_foot_right {
+div#canvas_foot div.canvas_foot_right {
position: absolute;
right: 40px;
bottom: 4px;
@@ .
patch -p0 <<'@@ .'
Index: openpkg-meta/canvas-nav-path.php
============================================================================
$ cvs diff -u -r1.6 -r1.7 canvas-nav-path.php
--- openpkg-meta/canvas-nav-path.php 12 Mar 2006 19:16:35 -0000 1.6
+++ openpkg-meta/canvas-nav-path.php 13 Mar 2006 07:47:38 -0000 1.7
@@ -29,7 +29,7 @@
divert("css");
</script>
-SPAN.navpath {
+span.navpath {
font-family: sans-serif,helvetica,lucida,verdana,arial;
font-size: 9pt;
white-space: nowrap;
@@ .
patch -p0 <<'@@ .'
Index: openpkg-meta/canvas-style.php
============================================================================
$ cvs diff -u -r1.10 -r1.11 canvas-style.php
--- openpkg-meta/canvas-style.php 12 Mar 2006 19:16:36 -0000 1.10
+++ openpkg-meta/canvas-style.php 13 Mar 2006 07:47:38 -0000 1.11
@@ -30,58 +30,58 @@
</script>
/* use a sans-serif font family for text */
-BODY,DIV,SPAN,
-TABLE,TR,TD,TH,P,
-FONT,UL,OL,LI
-FORM,INPUT,
-TEXTAREA,
-BLOCKQUOTE,A,I,B,EM {
+body,div,span,
+table,tr,td,th,p,
+font,ul,ol,lI
+form,input,
+textarea,
+blockquote,a,i,b,em {
font-family: helvetica,lucida,arial,sans-serif;
}
/* use teletype font for code */
-TT,CODE,SAMP,PRE {
+tt,code,samp,pre {
font-family: courier,courier-new,terminal,fixed,monospace;
}
/* hyper-links */
-A {
+a {
text-decoration: none;
font-weight: bold;
}
-A:link {
+a:link {
text-decoration: none;
font-weight: bold;
color: #909090;
}
-A:visited {
+a:visited {
text-decoration: none;
font-weight: bold;
color: #909090;
}
-A:hover {
+a:hover {
text-decoration: underline;
font-weight: bold;
color: #909090;
}
/* lists */
-UL {
+ul {
list-style-type: square;
list-style-image: url('<?php echo $cfg["url.base"]
?>canvas/canvas-box.png');
margin-left: 0px;
padding-left: 32px;
margin-top: 4px;
}
-UL LI + LI {
+ul li + li {
margin-top: 2px;
}
-UL.compact LI {
+ul.compact li {
margin-top: 1px;
}
/* pull-quotes */
-SPAN.pullquote-left {
+span.pullquote-left {
text-indent: 0px;
float: left;
width: 12em;
@@ -91,7 +91,7 @@
font-weight: bold;
color: #000000;
}
-SPAN.pullquote-right {
+span.pullquote-right {
text-indent: 0px;
float: right;
width: 12em;
@@ -103,43 +103,43 @@
}
/* paragraph */
-P {
+p {
margin-top: 6px;
}
-P.indent {
+p.indent {
text-indent: 2em;
}
/* headlines */
-H1, H2, H3 {
+h1, h2, h3 {
font-family: tahoma,arial,helvetica,lucida,sans-serif;
font-weight: bold;
color: #807060;
}
-H1 {
+h1 {
font-size: 200% !important;
}
-H2 {
+h2 {
font-size: 140%;
margin-top: 0.50em;
margin-bottom: 0.25em;
}
-H3 {
+h3 {
font-size: 100%;
margin-top: 0.50em;
margin-bottom: 0.25em;
}
/* images */
-A IMG {
+a img {
border: 0px;
}
-IMG.float-right {
+img.float-right {
float: right;
margin-top: 10px;
margin-bottom: 10px;
}
-IMG.portrait-right {
+img.portrait-right {
margin-left: 10px;
border: 1px solid #999999;
float: right;
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]