summary refs log tree commit diff stats
path: root/theme/css/bubbles.css
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2009-08-09 09:14:58 -0400
committerStarla Insigna <hatkirby@fourisland.com>2009-08-09 09:14:58 -0400
commit893957c41481a0cd5eb624096337762ffa54ff28 (patch)
tree09d2487f8add5a6281e3482a471abf21faa4f819 /theme/css/bubbles.css
parentd27a3784c81f0c582e43655509e806978b7e65e4 (diff)
downloadfourisland-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 &lt; 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/bubbles.css')
-rwxr-xr-xtheme/css/bubbles.css91
1 files changed, 34 insertions, 57 deletions
diff --git a/theme/css/bubbles.css b/theme/css/bubbles.css index 920b917..fb2c6d0 100755 --- a/theme/css/bubbles.css +++ b/theme/css/bubbles.css
@@ -1,27 +1,14 @@
1/* Normal Bubble */ 1.rounded {
2 2 -moz-border-radius: 10px;
3div.bubble { 3 -webkit-border-radius: 10px;
4 width: auto; 4 -khtml-border-radius: 10px;
5 font-size: 0.75em; 5 border-radius: 10px;
6 margin-bottom: 14px; 6 padding: 4px;
7 font: 1em "Lucida Grande", Lucida, Verdana, sans-serif;
8}
9
10div.bubble blockquote {
11 margin: 0px;
12 padding: 0px;
13 border: 1px solid #c9c2c1;
14 background-color: #fff;
15}
16
17div.bubble blockquote div {
18 margin: 10px;
19 padding: 0px;
20} 7}
21 8
22div.bubble cite { 9div.module + cite {
23 position: relative; 10 position: relative;
24 top: 6px; 11 top: -1em;
25 margin: 0; 12 margin: 0;
26 padding: 7px 0px 0px 15px; 13 padding: 7px 0px 0px 15px;
27 background: transparent url(/theme/images/tip.gif) no-repeat 20px 0; 14 background: transparent url(/theme/images/tip.gif) no-repeat 20px 0;
@@ -29,56 +16,46 @@ div.bubble cite {
29 font-size: small; 16 font-size: small;
30} 17}
31 18
32/* Rounded Bubble */ 19div.module.unrounded + cite {
33div.bubble div.rounded { 20 top: -0.9em;
34 margin-bottom: 10px;
35 border: 3px solid #fff;
36 background-color: #b7e0ff;
37}
38
39div.bubble div.rounded blockquote,
40div.bubble div.navbar-rounded blockquote {
41 border: 0;
42 background-color: transparent;
43} 21}
44 22
45div.bubble div.rounded blockquote div { 23div.module.bquote + cite {
46 margin: 0px 10px; 24 top: -0.8em;
47} 25}
48 26
49div.bubble cite.rounded { 27div.module.rounded + cite {
50 margin: 0px; 28 margin: 0px;
51 padding: 19px 0 0 15px;
52 background: transparent url(/theme/images/tip-rounded.gif) no-repeat 15px 0; 29 background: transparent url(/theme/images/tip-rounded.gif) no-repeat 15px 0;
53} 30}
54 31
55/* Pimped Bubble */ 32div.module.pimped {
56
57div.pimped {
58 font-size: 0.9em;
59}
60
61div.pimped div.rounded {
62 color: #fff; 33 color: #fff;
63 border: 3px solid #fff; 34 border: 3px solid #fff;
64 background-color: #111; 35 background-color: #111 !important;
36 padding-top: 5px;
37 padding-bottom: 5px;
65} 38}
66 39
67div.pimped cite.rounded { 40div.module.pimped + cite {
68 background: transparent url(/theme/images/tip-pimped.gif) no-repeat 15px 0; 41 background: transparent url(/theme/images/tip-pimped.gif) no-repeat 20px 0;
69} 42}
70 43
71div.bubble div.bquote blockquote { 44div.module {
72 margin: 0; 45 margin: auto 10px 14px 10px;
73 padding: 4px 0; 46 margin-left: 10px;
74 border: 1px solid #c9c2c1; 47 margin-right: 10px;
75 background-color: #fff; 48 font-size: 0.9em;
49 background-color: #B7E0FF !important;
50 border: 3px solid #FFFFFF;
76} 51}
77 52
78.rounded { 53div.module.unrounded {
79 -moz-border-radius: 10px; 54 background-color: white !important;
80 -webkit-border-radius: 10px; 55 border: 1px solid #c9c2c1 !important;
81 -khtml-border-radius: 10px; 56 padding: 5px;
82 border-radius: 10px; 57}
83 padding: 4px; 58
59div.module.sidebar {
60 width: 250px;
84} 61}