Update of /cvsroot/php-blog/serendipity/templates/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17507/templates/default
Modified Files:
style.css
Log Message:
- Fix broken display of image comments
- Remove replacement of \n, because:
1) It's not our job, it should be up to the event-plugin
2) JavaScript only replaces the first occurrence, so why even bother?
Index: style.css
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/style.css,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- style.css 11 Aug 2004 20:27:13 -0000 1.29
+++ style.css 11 Aug 2004 20:56:01 -0000 1.30
@@ -311,13 +311,15 @@
.serendipity_imageComment_center,
.serendipity_imageComment_left,
.serendipity_imageComment_right {
- border: 1px solid black;
+ border: 1px solid #DDDDDD;
background-color: #EFEFEF;
margin: 3px;
+ padding: 3px;
+ text-align: center;
}
.serendipity_imageComment_center {
- margin: 0px;
+ margin: auto;
}
.serendipity_imageComment_left {
@@ -332,14 +334,15 @@
.serendipity_imageComment_img img {
margin: 0px;
padding: 0px;
- border: 0px;
text-align: center;
}
.serendipity_imageComment_txt {
+ border-top: 1px solid #DDDDDD;
margin: 0px;
padding: 3px;
- font-size: 9pt;
+ clear: both;
+ font-size: 8pt;
text-align: center;
}
|