Removing MooseMountain themepack and cleaning up some stuff

Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
Philip M. Hofer (Frumph) 2009-10-27 04:11:12 -07:00
parent af72c837e8
commit 34725c2e16
33 changed files with 153 additions and 836 deletions

View File

@ -440,7 +440,7 @@ function get_comic_path($folder = 'comic', $override_post = null, $filter = 'def
}
}
echo $comic_pathfinding_errors[] = sprintf(__("Unable to find the file in the <strong>%s</strong> folder that matched the pattern <strong>%s</strong>. Check your WordPress and ComicPress settings.", 'comicpress'), $folder_to_use, $filter_with_date);
$comic_pathfinding_errors[] = sprintf(__("Unable to find the file in the <strong>%s</strong> folder that matched the pattern <strong>%s</strong>. Check your WordPress and ComicPress settings.", 'comicpress'), $folder_to_use, $filter_with_date);
return false;
}
@ -705,8 +705,14 @@ function the_transcript($displaymode = 'raw') {
}
//Insert the comic image into the RSS feed
function comic_feed() { ?>
<p><a href="<?php the_permalink() ?>"><img src="<?php the_comic_rss() ?>" border="0" alt="<?php the_title() ?>" title="<?php the_hovertext() ?>" /></a></p><?php
function comic_feed() {
foreach (array("rss", "archive", "mini", "comic") as $type) {
if (($requested_thumbnail_image = get_comic_url($type, $first_comic_in_category)) !== false) {
$thumbnail_image = $requested_thumbnail_image; break;
}
}
?>
<p><a href="<?php the_permalink() ?>"><img src="<?php echo $thumbnail_image; ?>" border="0" alt="<?php the_title() ?>" title="<?php the_hovertext() ?>" /></a></p><?php
}
function insert_comic_feed($content) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 KiB

View File

@ -1,8 +0,0 @@
<a href="/" id="logo">Moose Mountain</a>
<div id="moosemenubar">
<ul>
<li><a href="/feed/" id="menu-rss">RSS</a></li>
<li><a href="http://www.uptocampink.com " id="menu-shop">Shop</a></li>
<li><a href="mailto:info@uptocampink.com " id="menu-contact">Contact</a></li>
</ul>
</div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -1,134 +0,0 @@
/* COMIC NAVIGATION
Author: Tyler Martin
Style: Default
*/
#comic_navi_wrapper {
padding: 5px 0 10px 0;
}
#comic_navi {
display: table;
border-collapse: collapse;
margin: 0 auto;
}
.navi-comictitle {
text-align: center;
float: left;
display: block;
font-weight: bold;
padding-top: 18px;
max-width: 200px;
}
.navi-comictitle a {
color: #5E6F29;
}
.navi-comictitle a:hover {
color: #5E6F29;
text-decoration: underline;
}
.navi {
width: 50px;
padding: 50px 0 0 0;
/* margin: 0 5px; */
display: block;
float: left;
overflow: hidden;
font-size: 11px;
text-align: center;
color: #555;
}
.navi:hover {
background-position: -50px 0;
}
.navi-first {
margin: 0;
background: url('first.png') no-repeat;
}
.navi-prevchap {
background: url('prevchap.png') no-repeat;
}
.navi-prev {
margin-right: 10px;
background: url('prev.png') no-repeat;
}
.navi-comments, .navi-archive, .navi-random, .navi-buyprint {
margin: 0 5px;
}
.navi-buyprint {
border: none;
cursor: pointer;
background: url('buyprint.png') no-repeat;
}
.navi-buyprint:hover {
color: #f00;
}
.navi-buyprint-form {
width: 76px;
display: block;
float: left;
margin: 0;
padding: 0;
}
.navi-archive {
background: url('archive.png') no-repeat;
}
.navi-random {
background: url('random.png') no-repeat;
}
.navi-comments {
padding: 0;
background: url('comments.png') no-repeat;
}
a.navi-comments span {
width: 50px;
height: 50px;
display: block;
font-size: 16px;
font-weight: bold;
line-height: 50px;
color: #c5c5c5;
}
a.navi-comments span:hover {
color: #860b04;
}
.navi-next {
margin-left: 10px;
background: url('next.png') no-repeat;
}
.navi-nextchap {
background: url('nextchap.png') no-repeat;
}
.navi-last {
margin: 0;
background: url('last.png') no-repeat;
}
.navi-void, .navi-void:hover {
color: #999;
background-position: -100px 0;
}
.comic-left .navi-prev, .comic-right .navi-prev, .comic-left .navi-next, .comic-right .navi-next {
/* margin: 0 5px; */
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View File

@ -1,691 +0,0 @@
/*
ThemePack Name: MooseMountain
ThemePack URI: http://comicpress.org
Description:
Author: Philip M. Hofer (Frumph)
Author URI: http://frumph.net/
Version: 0.1.0
.
The CSS, XHTML and design is released under GPL v3:
http://www.opensource.org/licenses/gpl-3.0.html
.
*/
/* STANDARD TAGS */
body {
margin: 0;
font-family: 'Arial' ,sans-serif;
background: #A28366 url('background.png') top repeat-x;
color: #572B2A;
font-size: 14px;
}
a {
color: #000;
text-decoration: none;
}
a:hover {
color: #5e6f29;
}
a img {
border: none;
}
hr {
height: 1px;
color: #5e6f29;
background-color: #5e6f29;
border: 0px;
}
blockquote {
margin: 10px;
padding: 5px 10px 5px 20px;
border-width: 1px 1px 1px 5px;
border-style: solid;
border-color: #d6e1b4;
}
blockquote cite {
margin: 5px 0 0;
display: block;
}
/* HEADINGS */
h1, h1 a, h1 a:hover {
margin: 0;
padding: 0 0 0 5px;
color: #fff;
font-family: 'Georgia' , serif;
font-size: 50px;
font-weight: normal;
text-align: left;
text-decoration: none;
letter-spacing: -2px;
}
h2, h2 a {
margin: 0;
color: #fff;
font-weight: bold;
font-size: 22px;
text-align: left;
text-decoration: none;
}
h2.pagetitle, h2.pagetitle a {
margin: 20px 0 0 0;
padding: 0 0 5px 0;
color: #fff;
font-family: 'Georgia' , serif;
font-size: 32px;
font-weight: normal;
letter-spacing: -2px;
text-align: left;
}
h3, h3 a {
margin: 30px 10px 0 0;
padding: 0;
color: #fff;
font-size: 18px;
font-weight: bold;
text-align: left;
text-decoration: none;
clear: both;
}
h2 a:hover, h3 a:hover {
color: #fff;
border-bottom: 1px dotted #fff;
}
/* PAGE */
#page-wide {
width: 900px;
}
/* THE HEADER */
#header {
width: 900px;
height: 158px;
background: url('header.png');
}
#logo {
height: 158px;
width: 320px;
padding: 0;
float: left;
display: block;
text-indent: -9999px;
}
#header h1, #header .description {
display: none;
}
#sidebar-header #menu-rss {
height: 40px;
width: 60px;
display: block;
float: left;
margin: 108px 0 0 320px;
text-indent: -9999px;
}
#sidebar-header #menu-rss:hover {
background: url('header.png') -640px -158px;
}
#sidebar-header #menu-shop {
height: 40px;
width: 80px;
display: block;
float: left;
margin: 108px 0 0 0;
text-indent: -9999px;
}
#sidebar-header #menu-shop:hover {
background: url('header.png') -700px -158px;
}
#sidebar-header #menu-contact {
height: 40px;
width: 100px;
display: block;
float: left;
margin: 108px 0 0 0;
text-indent: -9999px;
}
#sidebar-header #menu-contact:hover {
background: url('header.png') -780px -158px;
}
#content-wrapper {
padding: 0;
}
/* Comic */
#comic-head, #comic, #comic-foot {
background: #fff;
border: 0;
}
#comic-foot {
border-bottom: 30px solid #5e6f29;
}
#subcontent-wrapper {
background: #9bae5f;
padding: 5px 0;
}
.narrowcolumn {
width: 470px;
}
#sidebar-undercomic p {
padding: 5px;
background: #d6e1b4;
border: 1px solid #9bae5f;
text-align: center;
margin: 4px 30px;
font-size: 14px;
}
#sidebar-undercomic .entry, #sidebar-undercomic .widget {
margin: 0;
padding: 0;
}
#sidebar-undercomic .widget_comicpress_comic_date {
float: left;
width: 160px;
margin-left: 30px;
}
#sidebar-undercomic .widget_comicpress_comments {
width: 160px;
margin-right: 30px;
float: right;
}
#sidebar-menubar .widget {
margin: 0;
padding: 0;
}
.nav, #sidebar-undercomic .post-text, #sidebar-undercomic .post-extras {
display: none;
}
/* CALENDAR */
#wp-calendar-wrap {
background-color: transparent;
border: 0;
}
#wp-calendar-wrap img {
border: solid 1px #5d2d29;
width: 163px;
}
table#wp-calendar td {
border: 1px solid #5E6F29;
}
#wp-calendar th {
color: #5e6f29;
}
#wp-calendar caption {
color: #5e6f29;
font-size: 20px;
}
#wp-calendar td {
border: 1px solid #5E6F29;
font-size: 12px;
}
#wp-calendar a {
color: #fff;
background: #5e6f29;
}
#wp-calendar a:hover {
color: #fff;
background: #572b2a;
}
/* Sidebar */
.sidebar ul li ul li a {
color: #000;
text-decoration: none;
}
.sidebar ul li ul li a:hover {
color: #000;
background: #d6e1b4;
}
.sidebar-earl a {
width: 192px;
height: 192px;
display: block;
color: #9bae5f;
background: url('earl-extras.jpg') no-repeat;
}
.sidebar-earl a:hover {
color: #9bae5f;
background-position: 0 -192px;
}
.sidebar-extras a {
width: 192px;
height: 154px;
line-height: 154px;
display: block;
color: #9bae5f;
background: url('earl-extras.jpg') 0 -384px no-repeat;
}
.sidebar-extras a:hover {
color: #9bae5f;
background-position: 0 -538px;
}
/* THE FOOTER */
#footer {
width: 900px;
margin: 0px auto;
padding: 20px 0;
color: #9bae5f;
text-align: center;
background: #5e6f29;
}
#footer a {
color: #fff;
text-decoration: none;
border: none;
}
#footer a:hover {
border-bottom: 1px dotted #fff;
}
#footer-ad {
width: 900px;
margin: 0 auto;
padding: 30px 0;
text-align: center;
}
/* CAST PAGE */
.cast {
min-height: 120px;
margin: 10px 0;
padding: 20px;
border: 2px solid #5e6f29;
background: #d0dea1;
}
.cast img {
float: left;
display: block;
}
.cast h2 {
color: #5e6f29;
padding: 0 0 10px 0;
margin: 0 0 0 130px;
}
.cast p {
margin: 0 0 0 130px;
}
/* AUTHOR PAGE */
/*
.author {
min-height: 120px;
margin: 10px 0;
padding: 20px;
border: 2px solid #5e6f29;
background: #d0dea1;
}
.author img {
float: left;
display: block;
}
.author h2 {
color: #5e6f29;
padding: 0 0 10px 0;
margin: 0 0 0 130px;
}
.author p {
margin: 0 0 0 130px;
}
*/
/* PAGE HEADERS */
#header-9 {
width: 900px;
height: 90px;
margin: 0 auto;
background: #9bae5f url('extras_header.jpg') no-repeat;
}
#header-16 {
width: 900px;
height: 90px;
margin: 0 auto;
background: #9bae5f url('advertise_header.jpg') no-repeat;
}
#header-14 {
width: 900px;
height: 90px;
margin: 0 auto;
background: #9bae5f url('banner_header.jpg') no-repeat;
}
#header-13 {
width: 900px;
height: 90px;
margin: 0 auto;
background: #9bae5f url('donate_header.jpg') no-repeat;
}
#header-12 {
width: 900px;
height: 90px;
margin: 0 auto;
background: #9bae5f url('links_header.jpg') no-repeat;
}
#header-10 {
width: 900px;
height: 90px;
margin: 0 auto;
background: #9bae5f url('cast_header.jpg') no-repeat;
}
#header-18 {
width: 900px;
height: 90px;
margin: 0 auto;
background: #9bae5f url('author_header.jpg') no-repeat;
}
/* SIDEBAR */
.sidebar-earl a {
width: 192px;
height: 192px;
display: block;
color: #9bae5f;
background: url('earl-extras.jpg') no-repeat;
}
.sidebar-earl a:hover {
color: #9bae5f;
background-position: 0 -192px;
}
.sidebar-extras a {
width: 192px;
height: 154px;
line-height: 154px;
display: block;
color: #9bae5f;
background: url('earl-extras.jpg') 0 -384px no-repeat;
}
.sidebar-extras a:hover {
color: #9bae5f;
background-position: 0 -538px;
}
/* ARCHIVE */
.comicarchiveframe {
padding: 5px 10px 5px 10px;
border-width: 1px;
border-style: solid;
border-color: #572b2a;
background: #fff;
filter: alpha(opacity=99);
-moz-opacity: 0.99;
opacity: 0.99;
}
.comicarchiveframe h3 {
margin: 0;
color: #5e6f29;
}
.comicarchiveframe small {
display: block;
}
.comicarchiveframe:hover {
filter: alpha(opacity=50);
-moz-opacity: 0.50;
opacity: 0.50;
}
/* COMMENTS */
.comment-wrapper {
padding: 0 20px;
}
.comment-wrapper h3 {
margin: 0;
padding: 20px 0 0 0;
color: #5e6f29;
font-family: 'Georgia' , serif;
font-weight: normal;
font-size: 24px;
letter-spacing: -1px;
clear: both;
}
.bigballoon {
color: #ccc;
font-family: 'Webdings' , fantasy;
font-size: 28px;
}
.comment-wrapper a {
text-decoration: none;
border-bottom: 1px dotted #5e6f29;
}
.comment-wrapper a:hover {
color: #5e6f29;
border-bottom: 1px solid #5e6f29;
}
.comment-wrapper p {
margin: 10px 0 0 0;
}
.avatar {
margin: 0 10px 10px 0;
padding: 5px;
float: left;
border: 1px solid #5e6f29;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
#comment, #author, #email, #url {
padding: 2px;
color: #000;
font-family: 'Verdana' , sans-serif;
font-size: 12px;
background: #d6e1b4;
border: 1px solid #5e6f29;
-moz-border-radius: 6px;
-khtml-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
#comment:hover, #author:hover, #email:hover, #url:hover, #comment:focus, #author:focus, #email:focus, #url:focus {
background: #fff;
}
#comment {
width: 100%;
}
#author, #email, #url {
width: 200px;
}
ol.commentlist {
margin: 0;
padding: 0;
font-size: 11px;
list-style: none;
}
.commentlist li {
padding: 20px 0 0 0;
clear: both;
}
/* THE BLOG HEADER */
#blogheader {
height: 95px;
margin: 0 0 20px 0;
padding: 10px 0 0 20px;
color: #aaa;
font-family: 'Georgia' , serif;
font-size: 36px;
letter-spacing: -3px;
background: url('bloglog.jpg') center center no-repeat;
border: 0px;
}
.button, .button a {
margin: 0 0 20px 0;
padding: 0 5px;
float: right;
color: #fff;
background: #5e6f29;
font-family: 'Verdana' , sans-serif;
font-size: 12px;
border-width: 2px;
border-style: solid;
border-color: #fff;
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
.button:hover {
cursor: pointer;
background: #9bae5f;
}
.userpage-info {
padding-left: 10px;
}
/* COMMENT LINK */
.comment-link {
height: 25px;
line-height: 20px;
font-family: 'Arial', sans-serif;
font-weight: bold;
text-align: right;
}
.comment-balloon {
width: 30px;
height: 25px;
display: block;
margin: 0 0 0 5px;
float: right;
overflow: hidden;
text-align: center;
line-height: 16px;
font-family: 'Georgia', serif;
font-size: 16px;
font-weight: normal;
background: url('comment-balloon.png') no-repeat;
}
.comment-link a .comment-balloon {
color: #000;
}
.comment-link a:hover .comment-balloon {
color: #fff;
background-position: 0 -25px;
}
.comment-balloon-empty {
font-size: 20px;
line-height: 30px;
}
/* WIDGETS */
.archive-dropdown-wrap {
background: url('browse-search.png') no-repeat;
}
.archive-dropdown-wrap:hover {
background-position: 0 -23px;
}
.archive-dropdown {
margin: 0;
padding: 0;
width: 166px;
height: 23px;
font-size: 12px;
font-family: 'Arial' , sans-serif;
border: none;
opacity: 0;
filter: alpha(opacity=0);
cursor: pointer;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,7 @@
<strong>ThemePack</strong>: sandcastle<br />
<strong>Author</strong>: ComicPress Development Team<br />
<strong>Version</strong>: 0.1.0<br />
<br />
<strong>Installation Notes</strong>:<br />
None<br />
<br />

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,137 @@
/*
ThemePack Name: Sandcastle
ThemePack URI: http://comicpress.org
Author: ComicPress Developement Team
Author URI: http://mindfaucet.com/
Version: 0.1.0
*/
/* STANDARD TAGS */
body {
background: #dfc786 url('background.jpg') repeat;
}
#page, #page-wide {
width: auto;
}
.layout-v #page {
width: 780px;
margin: 0 auto;
}
#page #header, #page #menubar, #page #subcontent-wrapper, #page #footer, #page #comic-head, #page #comic-foot {
width: 780px;
margin: 0 auto;
}
.layout-gn #page-wide,
.layout-rgn #page-wide,
.layout-v3c #page-wide,
#page-wide #header,
#page-wide #menubar,
#page-wide #subcontent-wrapper,
#page-wide #footer,
#page-wide #comic-head,
#page-wide #comic-foot {
width: 980px;
margin: 0 auto;
}
#headerpwad {
margin-top: -20px;
}
#subcontent-wrapper, .layout-gn #content-wrapper, .layout-rgn #content-wrapper, .layout-v #content-wrapper,
.layout-v3c #content-wrapper {
background: url('contentbg.jpg') repeat;
border-left: solid 1px #000;
border-right: solid 1px #000;
border-bottom: solid 1px #000;
}
.layout-gn #pagewrap-right, .layout-rgn #pagewrap-right {
padding-top: 5px;
width: 768px;
}
#comic-foot, #comic-head {
background: url('contentbg.jpg') repeat;
border-left: solid 1px #000;
border-right: solid 1px #000;
padding: 0;
}
.layout-gn #subcontent-wrapper, .layout-gn #comic-head, .layout-gn, #comic-foot,
.layout-rgn #subcontent-wrapper, .layout-rgn #comic-head, .layout-rgn, #comic-foot {
border: 0;
}
.layout-gn #page-wide #comic, .layout-gn #page-wide #comic-head, .layout-gn #page-wide #comic-foot {
margin-right: 5px;
}
.layout-gn #page-wide #comic-foot, .layout-gn #page-wide #comic-head,
.layout-rgn #page-wide #comic-foot, .layout-rgn #page-wide #comic-head,
.layout-v #page #comic-foot, .layout-v #page #comic-head {
width: auto;
}
.layout-standard #page #menubar {
width: 782px;
}
.layout-3c #page-wide #menubar, .layout-3c2r #page-wide #menubar {
width: 982px;
}
#comic {
margin: 0 auto;
background: #fff;
padding: 5px;
border: solid 2px #000;
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
.layout-rgn #page-wide #comic, .layout-rgn #page-wide #comic-head, .layout-rgn #page-wide #comic-foot {
margin-left: 5px;
}
.layout-3c #comic, .layout-3c2r #comic {
width: 1010px;
}
.layout-3c #comic-foot, .layout-3c2r #comic-foot,
.layout-3c2r #comic-head, .layout-3c2r #comic-head,
.layout-standard #comic-head, .layout-standard #comic-foot {
border-left: solid 1px #000;
border-right: solid 1px #000;
}
.layout-standard #comic {
width: 820px;
}
.layout-gn .narrowcolumn, .layout-rgn .narrowcolumn {
width: 538px;
}
.layout-v .narrowcolumn {
width: 558px;
padding: 5px;
}
#blogheader {
background: url('blogheader.jpg') top center no-repeat;
height: 250px;
border: 0;
}
button {
float: right;
}