Posted: Thu Jul 19, 2007 8:04 pm
Some random thoughts:
style.css, change each of these to this:Padding doesn't really accomplish what we want it to and the display:inline prevents an IE6 double margin bug.
Index.tpl & iframe_preview.tpl - load the base stylesheet before style.css and the colorsheet. It is, afterall, the one we discourage modifications to, yet in the current order, definitions in base.css override style.css. Need to do the same in commentpopup.tpl *AND* add the colorset line:
Looking at commentpopup for the first time in a LONG time, I can see that our colorsets do not address the background color there, so it inherits the background of body. The id and style in effect for the entire popup are #serendipity_comment_page .s9y_wrap, so we should set one of those to the same background color as entry_body or comment form, or SOMETHING, perhaps even grouping them together so that it is obvious.
Also - click on "comments" for any of your entries. We have a problem, but I do not have time just yet to track it down. Maybe later tonight if one of you do not beat me to it, which I hope you do!!! LOL!
If we do not need text-align: center on body in base.css, then change it to left -or- set text-align: left to .serendipity_Entry_Date in base.css or style.css. This has to do with the entry preview. We still have a slight font descrepancy in preview, but that is because the preview iframe is not constructing all of the containers normally used on the frontend, and a few of the styles in those missing containers are therefore not applying to the preview (unless one of you has time to creatively fix that - and I am not sure it is worthwhile).
I mentioned something to YL about entries.tpl via email, so hopefully he had, or will have, time to quickly fix the entryIcon.
Info.txt.... YL recently added the bp web address. You have s9yDOTbulletproof when it should be DASH.
I'm almost done with all the plugin changes, and will soon get back to the admin styling. While I might show you guys the purple admin I did, I'm thinking I should do something more neutral. Purple is a good choice for BP itself, but probably not if someone wants to use BP as a model for their own and is then stuck with the purple admin or forced to change it, which means even more work for them. Whatcha think?
style.css, change each of these to this:
Code: Select all
#serendipity_credit_line {
float: left;
margin: 5px 0 0 10px;
display: inline;
}
#serendipity_bulletproof_button {
float: right;
margin: 5px 10px 0 0;
display: inline;
}
Index.tpl & iframe_preview.tpl - load the base stylesheet before style.css and the colorsheet. It is, afterall, the one we discourage modifications to, yet in the current order, definitions in base.css override style.css. Need to do the same in commentpopup.tpl *AND* add the colorset line:
Code: Select all
{if $template_option.colorset != 'default'}
<!-- additional colorset stylesheet -->
<link rel="stylesheet" type="text/css" href="{$serendipityHTTPPath}templates/{$template}/
{$template_option.colorset}_style.css" />
{/if} Also - click on "comments" for any of your entries. We have a problem, but I do not have time just yet to track it down. Maybe later tonight if one of you do not beat me to it, which I hope you do!!! LOL!
If we do not need text-align: center on body in base.css, then change it to left -or- set text-align: left to .serendipity_Entry_Date in base.css or style.css. This has to do with the entry preview. We still have a slight font descrepancy in preview, but that is because the preview iframe is not constructing all of the containers normally used on the frontend, and a few of the styles in those missing containers are therefore not applying to the preview (unless one of you has time to creatively fix that - and I am not sure it is worthwhile).
I mentioned something to YL about entries.tpl via email, so hopefully he had, or will have, time to quickly fix the entryIcon.
Info.txt.... YL recently added the bp web address. You have s9yDOTbulletproof when it should be DASH.
I'm almost done with all the plugin changes, and will soon get back to the admin styling. While I might show you guys the purple admin I did, I'm thinking I should do something more neutral. Purple is a good choice for BP itself, but probably not if someone wants to use BP as a model for their own and is then stuck with the purple admin or forced to change it, which means even more work for them. Whatcha think?