Update of /cvsroot/php-blog/serendipity/templates/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25818
Modified Files:
style.css
Log Message:
Fixes for padding and breakage of surrounding borders when using <p> as
top-level element (can happen when using the WYSIWYG-editor)
Index: style.css
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/style.css,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- style.css 22 Mar 2004 17:17:45 -0000 1.14
+++ style.css 25 Mar 2004 10:07:51 -0000 1.15
@@ -127,7 +127,8 @@
-moz-border-radius: .0em 0em 1em 1em;
font-size: 9.5pt;
font-weight: normal;
- padding-left: 10px ;
+ padding-left: 10px;
+ padding-right: 10px;
display: block;
background-color: #FAFFFF;
}
@@ -296,3 +297,8 @@
padding: 15px;
border: dashed 1px #000000;
}
+
+.serendipity_entry p {
+ margin: 0px;
+ padding-bottom: 10px;
+}
|