diff options
| author | Starla Insigna <hatkirby@fourisland.com> | 2009-08-09 09:14:58 -0400 | 
|---|---|---|
| committer | Starla Insigna <hatkirby@fourisland.com> | 2009-08-09 09:14:58 -0400 | 
| commit | 893957c41481a0cd5eb624096337762ffa54ff28 (patch) | |
| tree | 09d2487f8add5a6281e3482a471abf21faa4f819 /theme/css/blog.php | |
| parent | d27a3784c81f0c582e43655509e806978b7e65e4 (diff) | |
| download | fourisland-893957c41481a0cd5eb624096337762ffa54ff28.tar.gz fourisland-893957c41481a0cd5eb624096337762ffa54ff28.tar.bz2 fourisland-893957c41481a0cd5eb624096337762ffa54ff28.zip  | |
Created layout 7
The following changes were also made in this revision:
* All HTML was changed to XHTML and a !DOCTYPE was included to reflect this
* Rewrote quotes tracking system to be much less complicated and actually working
* Changed quotes rendering to look more like Chirpy than Rash
* Fixed comment textarea bug
* Rewrote a ton of CSS so it's not as bloated
* Added a JavaScript confirmation when deleting a comment
* AJAXified voting on the POTW
* AJAXified voting and flagging quotes
* AJAXified commenting
* AJAXified voting on posts
* Added DateFinder back after it was accidentally deleted in Layout 4.5
The following database changes must be performed as soon as possible:
* Fix title of NO <!DOCTYPE> post (the < is missing the semicolon)
* Restore post Frasty Tha Snaman from a backup
* Reset "flag" field of all rows in "rash_quotes" to 0
* Remove the "vote" and "flag" columns of "rash_tracking"
* Rename the "quote_id" column of "rash_tracking" to "vote"
The following external code changes must also be performed as soon as possible:
* Add the following line to the end of the // Four Island block in The Fourm's functions.php:
  require('/svr/www/hatkirby/fourisland/main/includes/specialdates.php');
Diffstat (limited to 'theme/css/blog.php')
| -rw-r--r-- | theme/css/blog.php | 18 | 
1 files changed, 15 insertions, 3 deletions
| diff --git a/theme/css/blog.php b/theme/css/blog.php index bef21dd..4c69e57 100644 --- a/theme/css/blog.php +++ b/theme/css/blog.php | |||
| @@ -21,6 +21,8 @@ | |||
| 21 | if (!defined('S_INCLUDE_FILE')) {define('S_INCLUDE_FILE',1);} | 21 | if (!defined('S_INCLUDE_FILE')) {define('S_INCLUDE_FILE',1);} | 
| 22 | 22 | ||
| 23 | require('headerproc.php'); | 23 | require('headerproc.php'); | 
| 24 | include_once('../../security/config.php'); | ||
| 25 | include_once('../includes/db.php'); | ||
| 24 | 26 | ||
| 25 | ?> | 27 | ?> | 
| 26 | 28 | ||
| @@ -82,13 +84,14 @@ span.post-day { | |||
| 82 | div.post-title { | 84 | div.post-title { | 
| 83 | float: left; | 85 | float: left; | 
| 84 | margin-left: 10px; | 86 | margin-left: 10px; | 
| 85 | width: 500px; /* 430px */ | 87 | width: 90%; /* 500px */ | 
| 86 | } | 88 | } | 
| 87 | 89 | ||
| 88 | div.entry { | 90 | div.entry { | 
| 89 | clear: both; | 91 | clear: both; | 
| 90 | padding-top: 10px; | 92 | padding-top: 10px; | 
| 91 | font: 75%/150% Arial, "Trebuchet MS", Tahoma; | 93 | /*font-size: 75%; | 
| 94 | line-height: 150%;*/ | ||
| 92 | } | 95 | } | 
| 93 | 96 | ||
| 94 | div.entry ol, | 97 | div.entry ol, | 
| @@ -218,5 +221,14 @@ div.post-date-4 { | |||
| 218 | span.post-vote { | 221 | span.post-vote { | 
| 219 | float: right; | 222 | float: right; | 
| 220 | position: relative; | 223 | position: relative; | 
| 221 | top: -10px; | 224 | top: -2em; | 
| 225 | right: 1em; | ||
| 226 | } | ||
| 227 | |||
| 228 | span.post-rating { | ||
| 229 | font-size: big; | ||
| 230 | } | ||
| 231 | |||
| 232 | span.post-action-done { | ||
| 233 | opacity: 0.2; | ||
| 222 | } | 234 | } | 
