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/quotes.css | |
| 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/quotes.css')
| -rw-r--r-- | theme/css/quotes.css | 61 |
1 files changed, 61 insertions, 0 deletions
| diff --git a/theme/css/quotes.css b/theme/css/quotes.css new file mode 100644 index 0000000..72d5189 --- /dev/null +++ b/theme/css/quotes.css | |||
| @@ -0,0 +1,61 @@ | |||
| 1 | ul.quote-list { | ||
| 2 | list-style-type: none; | ||
| 3 | } | ||
| 4 | |||
| 5 | li.quote { | ||
| 6 | margin: 0 0 1em; | ||
| 7 | padding-bottom: 0.1em; | ||
| 8 | background-color: #FCFCFC; | ||
| 9 | } | ||
| 10 | |||
| 11 | h3.quote-header { | ||
| 12 | background-color: #F7F7F7; | ||
| 13 | border: 1px solid #F4F4F4; | ||
| 14 | margin: 0; | ||
| 15 | padding: 0.25em 0.75em; | ||
| 16 | } | ||
| 17 | |||
| 18 | li.quote, h3.quote-header { | ||
| 19 | -moz-border-radius-topleft: 0.5em; | ||
| 20 | -moz-border-radius-topright: 0.5em; | ||
| 21 | -webkit-border-top-left-radius: 0.5em; | ||
| 22 | -webkit-border-top-right-radius: 0.5em; | ||
| 23 | -khtml-border-top-left-radius: 0.5em; | ||
| 24 | -khtml-border-top-right-radius: 0.5em; | ||
| 25 | border-top-left-radius: 0.5em; | ||
| 26 | border-top-right-radius: 0.5em; | ||
| 27 | } | ||
| 28 | |||
| 29 | span.quote-date { | ||
| 30 | font-size: 70%; | ||
| 31 | } | ||
| 32 | |||
| 33 | blockquote.quote-body { | ||
| 34 | font-family: Consolas, Monaco, Courier New, monospace; | ||
| 35 | font-size: 12px; | ||
| 36 | margin: 0.5em 0.75em; | ||
| 37 | padding: 0; | ||
| 38 | position: static; | ||
| 39 | width: 100%; | ||
| 40 | } | ||
| 41 | |||
| 42 | ul.quote-list li:hover { | ||
| 43 | background: #FFFCEC; | ||
| 44 | } | ||
| 45 | |||
| 46 | ul.quote-list li:hover h3.quote-header { | ||
| 47 | background: #FEC; | ||
| 48 | border-color: #FFE9C9; | ||
| 49 | } | ||
| 50 | |||
| 51 | span.quote-action-done { | ||
| 52 | opacity: 0.2; | ||
| 53 | } | ||
| 54 | |||
| 55 | span.quote-update-result { | ||
| 56 | float: right; | ||
| 57 | text-transform: uppercase; | ||
| 58 | font-size: 70%; | ||
| 59 | position: relative; | ||
| 60 | top: -1.2em; | ||
| 61 | } | ||
