summary refs log tree commit diff stats
path: root/theme
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2009-10-03 15:24:04 -0400
committerStarla Insigna <hatkirby@fourisland.com>2009-10-03 15:24:04 -0400
commitb0aabd0559eb6ca70af2ffeb35299b63d7edf097 (patch)
treef6b31f7478c540ecb056bc22508fb1450e2735c7 /theme
parentdc0fb9445e8a3ede8bc33d6779fadd89b7ea6893 (diff)
downloadfourisland-b0aabd0559eb6ca70af2ffeb35299b63d7edf097.tar.gz
fourisland-b0aabd0559eb6ca70af2ffeb35299b63d7edf097.tar.bz2
fourisland-b0aabd0559eb6ca70af2ffeb35299b63d7edf097.zip
Fixed voting issue
Because XHTML was accidentally disabled in the previous changeset, a new error was found that, when in HTML mode (required for IE and layouts prior to 7),
voting did not work due to the encoded ampherstand in the query string. This is odd because what works in XHTML should also work in HTML. So, to fix this,
XHTML was re-enabled and now the ampherstand is only encoded when XHTML mode is on.

Also fixed some positioning errors with the tails of bubbles.
Diffstat (limited to 'theme')
-rwxr-xr-xtheme/comments.tpl4
-rwxr-xr-xtheme/css/bubbles.css2
-rw-r--r--theme/layouts/4.5/style.css8
-rw-r--r--theme/layouts/6.2/style.css8
-rw-r--r--theme/layouts/7/style.css7
-rwxr-xr-xtheme/post.tpl6
-rwxr-xr-xtheme/quotes/browse.tpl2
7 files changed, 28 insertions, 9 deletions
diff --git a/theme/comments.tpl b/theme/comments.tpl index 5e1c564..9c86009 100755 --- a/theme/comments.tpl +++ b/theme/comments.tpl
@@ -1,8 +1,6 @@
1<a name="comments" /> 1<a name="comments"></a>
2 2
3<!--BEGIN COMMENTS--> 3<!--BEGIN COMMENTS-->
4<a name="comment-<!--COMMENTS.ID-->" />
5
6<!--BEGIN COMMENTS.EDITOR--> 4<!--BEGIN COMMENTS.EDITOR-->
7<form action="/edit-comment.php?id=<!--COMMENTS.ID-->" method="post"> 5<form action="/edit-comment.php?id=<!--COMMENTS.ID-->" method="post">
8<!--END COMMENTS.EDITOR--> 6<!--END COMMENTS.EDITOR-->
diff --git a/theme/css/bubbles.css b/theme/css/bubbles.css index 68a3cc4..29c9930 100755 --- a/theme/css/bubbles.css +++ b/theme/css/bubbles.css
@@ -8,7 +8,6 @@
8 8
9div.module + cite { 9div.module + cite {
10 position: relative; 10 position: relative;
11 top: -0.15em;
12 left: 0.2em; 11 left: 0.2em;
13 margin: 0; 12 margin: 0;
14 padding: 15px 0px 0px 15px; 13 padding: 15px 0px 0px 15px;
@@ -18,7 +17,6 @@ div.module + cite {
18} 17}
19 18
20div.module.unrounded + cite { 19div.module.unrounded + cite {
21 top: -0.5em;
22 padding-top: 10px; 20 padding-top: 10px;
23} 21}
24 22
diff --git a/theme/layouts/4.5/style.css b/theme/layouts/4.5/style.css index b8afbbb..7e9b574 100644 --- a/theme/layouts/4.5/style.css +++ b/theme/layouts/4.5/style.css
@@ -231,3 +231,11 @@ div#flash {
231* > html div#flash { 231* > html div#flash {
232 position: absolute; 232 position: absolute;
233} 233}
234
235div.module + cite {
236 top: -0.15em;
237}
238
239div.module.unrounded + cite {
240 top: -0.4em;
241}
diff --git a/theme/layouts/6.2/style.css b/theme/layouts/6.2/style.css index 53f3556..e68f7f8 100644 --- a/theme/layouts/6.2/style.css +++ b/theme/layouts/6.2/style.css
@@ -245,3 +245,11 @@ span.post-vote {
245 position: relative; 245 position: relative;
246 top: -20px; 246 top: -20px;
247} 247}
248
249div.module + cite {
250 top: -0.15em;
251}
252
253div.module.unrounded + cite {
254 top: -0.4em;
255}
diff --git a/theme/layouts/7/style.css b/theme/layouts/7/style.css index c16bdfa..e90ee05 100644 --- a/theme/layouts/7/style.css +++ b/theme/layouts/7/style.css
@@ -181,3 +181,10 @@ div#sidebar ul li.active a, div#sidebar ul li a:hover {
181 color: black; 181 color: black;
182} 182}
183 183
184div.module + cite {
185 top: -0.4em;
186}
187
188div.module.unrounded + cite {
189 top: -0.7em;
190}
diff --git a/theme/post.tpl b/theme/post.tpl index 2c65e51..7bf5481 100755 --- a/theme/post.tpl +++ b/theme/post.tpl
@@ -7,13 +7,13 @@
7 7
8function ratePost(id, dir) 8function ratePost(id, dir)
9{ 9{
10 jQuery("#post-"+id+" .post-rating-up").addClass("post-action-done").html("&lt;img src='/theme/images/icons/thumb_up.png' alt='+1' /&gt;"); 10 jQuery("#post-"+id+" .post-rating-up").addClass("post-action-done").html("<!--IFXLT-->img src='/theme/images/icons/thumb_up.png' alt='+1' /<!--IFXGT-->");
11 jQuery("#post-"+id+" .post-rating-down").addClass("post-action-done").html("&lt;img src='/theme/images/icons/thumb_down.png' alt='-1' /&gt;"); 11 jQuery("#post-"+id+" .post-rating-down").addClass("post-action-done").html("<!--IFXLT-->img src='/theme/images/icons/thumb_down.png' alt='-1' /<!--IFXGT-->");
12 jQuery("#flash").text("Processing....").slideDown(); 12 jQuery("#flash").text("Processing....").slideDown();
13 jQuery.ajax({ 13 jQuery.ajax({
14 type: "GET", 14 type: "GET",
15 url: "/vote.php", 15 url: "/vote.php",
16 data: "id="+id+"&amp;dir="+dir, 16 data: "id="+id+"<!--IFXAMP-->dir="+dir,
17 dataType: "text", 17 dataType: "text",
18 success: function(msg) { 18 success: function(msg) {
19 if (msg != "") 19 if (msg != "")
diff --git a/theme/quotes/browse.tpl b/theme/quotes/browse.tpl index d710d3f..24afd14 100755 --- a/theme/quotes/browse.tpl +++ b/theme/quotes/browse.tpl
@@ -10,7 +10,7 @@ function voteQuote(id, dir)
10 jQuery.ajax({ 10 jQuery.ajax({
11 type: "GET", 11 type: "GET",
12 url: "/quotes/vote.php", 12 url: "/quotes/vote.php",
13 data: "id="+id+"&amp;dir="+dir, 13 data: "id="+id+"<!--IFXAMP-->dir="+dir,
14 dataType: "text", 14 dataType: "text",
15 success: function(msg) { 15 success: function(msg) {
16 if (msg != "") 16 if (msg != "")