mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] changelog2009-05-16 07:31 pm

[dw-free] extra line in site-schemed entry pages

[commit: http://hg.dwscoalition.org/dw-free/rev/434d58c389cc]

http://bugs.dwscoalition.org/show_bug.cgi?id=1203

Change CSS id entry->compose-entry to fix some display issues.

Patch by [personal profile] branchandroot.

Files modified:
  • cgi-bin/weblib.pl
  • htdocs/stc/celerity/celerity.css
  • htdocs/stc/entry.css
--------------------------------------------------------------------------------
diff -r 031bfb0c29b1 -r 434d58c389cc cgi-bin/weblib.pl
--- a/cgi-bin/weblib.pl	Sun May 17 02:32:02 2009 +0800
+++ b/cgi-bin/weblib.pl	Sat May 16 19:31:47 2009 +0000
@@ -1264,7 +1264,7 @@ sub entry_form {
         }
 
         ### Subject
-        $out .= "<div id='entry' class='pkg'>\n";
+        $out .= "<div id='compose-entry' class='pkg'>\n";
 
         if ($opts->{prop_qotdid} && !$opts->{richtext}) {
             my $qotd = LJ::QotD->get_single_question($opts->{prop_qotdid});
diff -r 031bfb0c29b1 -r 434d58c389cc htdocs/stc/celerity/celerity.css
--- a/htdocs/stc/celerity/celerity.css	Sun May 17 02:32:02 2009 +0800
+++ b/htdocs/stc/celerity/celerity.css	Sat May 16 19:31:47 2009 +0000
@@ -1068,15 +1068,15 @@ span.InboxItem_Read:hover a {
 #infobox {
     border-left: 1px solid #000;
 }
-#entry {
+#compose-entry {
     border-bottom: 1px solid #bbb;
 }
-#entry ul li a {
+#compose-entry ul li a {
     background-color: #fff;
     border: 1px solid #bbb;
 	border-bottom: none;
 }
-#entry ul li.on a {
+#compose-entry ul li.on a {
 	border-bottom: 1px solid #fff;
 }
 #draft-container {
diff -r 031bfb0c29b1 -r 434d58c389cc htdocs/stc/entry.css
--- a/htdocs/stc/entry.css	Sun May 17 02:32:02 2009 +0800
+++ b/htdocs/stc/entry.css	Sat May 16 19:31:47 2009 +0000
@@ -152,28 +152,28 @@
 #infobox ul {
     list-style: none;
 }
-#entry {
+#compose-entry {
     clear: both;
     padding: 0px;
     margin: 0px;
     position: relative;
 	border-bottom: 1px solid #ccc;
 }
-#entry p {
+#compose-entry p {
     margin: 0 !important;
 }
-#entry ul {
+#compose-entry ul {
     float: right;
     clear: right;
     list-style: none;
     margin: 0;
     padding: 0;
 }
-#entry ul li {
+#compose-entry ul li {
     float: left;
     margin: 0 4px 0 0;
 }
-#entry ul li a {
+#compose-entry ul li a {
     display: block;
     padding: 8px 10px;
     float: left;
@@ -181,16 +181,16 @@
 	border: 1px solid #ccc;
     border-bottom: none;
 }
-#entry ul li.on {
+#compose-entry ul li.on {
 	
 }
-#entry ul li.on a {
+#compose-entry ul li.on a {
     font-weight: bold;
     padding-bottom: 9px;
 	margin-bottom: -2px;
 	background: #fff;
 }
-#entry ul li.on a {
+#compose-entry ul li.on a {
 	border-bottom: 1px solid #fff;
 }
 #metainfo, #metainfo label, #metainfo input.text, #metainfo strong {
--------------------------------------------------------------------------------