+Added NPC Comic Navigation Buttons
@@ -3,7 +3,7 @@
|
||||
Plugin Name: Comic Easel
|
||||
Plugin URI: http://comiceasel.com
|
||||
Description: Comic Easel allows you to incorporate a WebComic using the WordPress Media Library functionality with Navigation into almost all WordPress themes. With just a few modifications of adding injection do_action locations into a theme, you can have the theme of your choice display and manage a webcomic.
|
||||
Version: 1.8.1
|
||||
Version: 1.8.2
|
||||
Author: Philip M. Hofer (Frumph)
|
||||
Author URI: http://frumph.net/
|
||||
|
||||
@@ -544,7 +544,7 @@ function ceo_pluginfo($whichinfo = null) {
|
||||
// comic-easel plugin directory/url
|
||||
'plugin_url' => plugin_dir_url(__FILE__),
|
||||
'plugin_path' => plugin_dir_path(__FILE__),
|
||||
'version' => '1.8.1'
|
||||
'version' => '1.8.2'
|
||||
);
|
||||
// Combine em.
|
||||
$ceo_pluginfo = array_merge($ceo_pluginfo, $ceo_addinfo);
|
||||
|
||||
BIN
images/nav/npc/archive.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
images/nav/npc/buycomic.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
images/nav/npc/comments.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
images/nav/npc/first.png
Normal file
|
After Width: | Height: | Size: 783 B |
BIN
images/nav/npc/firstin.png
Normal file
|
After Width: | Height: | Size: 705 B |
BIN
images/nav/npc/last.png
Normal file
|
After Width: | Height: | Size: 816 B |
BIN
images/nav/npc/lastin.png
Normal file
|
After Width: | Height: | Size: 727 B |
132
images/nav/npc/navstyle.css
Normal file
@@ -0,0 +1,132 @@
|
||||
/* COMIC NAVIGATION
|
||||
Author: Mary Varn npccomic.com
|
||||
Style: npc_2014
|
||||
*/
|
||||
|
||||
.comic_navi_wrapper {
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
vertical-align:text-top;
|
||||
}
|
||||
|
||||
.comic_navi {
|
||||
display: inline-block;
|
||||
border-collapse: collapse;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.comic_navi_left, .comic_navi_center, .comic_navi_right {
|
||||
vertical-align: text-top;
|
||||
}
|
||||
|
||||
.navi-comictitle {
|
||||
padding-top: 26px;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.navi-comicchapter{
|
||||
padding-top: 26px;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.navi {
|
||||
width: 44px;
|
||||
padding-top: 44px;
|
||||
margin: 0 0px;
|
||||
font-size: 0.9em;
|
||||
color: #555;
|
||||
display: inline-block;
|
||||
vertical-align:text-top;
|
||||
}
|
||||
|
||||
.navi:hover {
|
||||
background-position: -44px 0;
|
||||
}
|
||||
|
||||
.navi-first {
|
||||
background: url('first.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-first-in {
|
||||
background: url('firstin.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-prev {
|
||||
/*margin-right: 10px;*/
|
||||
background: url('prev.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-prev-in {
|
||||
background: url('prev.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-prev-chap {
|
||||
background: url('prevchap.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-archive, .navi-archives {
|
||||
background: url('archive.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-buycomic {
|
||||
background: url('buycomic.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-random {
|
||||
background: url('random.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-subscribe {
|
||||
background: url('subscribe.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-comments {
|
||||
padding: 0;
|
||||
background: url('comments.png') no-repeat;
|
||||
}
|
||||
|
||||
a.navi-comments span {
|
||||
display: inline-block;
|
||||
width: 44px;
|
||||
height: 39px;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
line-height: 24px;
|
||||
color: #fff;
|
||||
text-indent: 0;
|
||||
margin-top:5px;
|
||||
}
|
||||
|
||||
a.navi-comments span:hover {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.navi-next {
|
||||
/*margin-left: 10px;*/
|
||||
background: url('next.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-next-in {
|
||||
background: url('next.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-next-chap {
|
||||
background: url('nextchap.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-last-in {
|
||||
background: url('lastin.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-last {
|
||||
background: url('last.png') no-repeat;
|
||||
}
|
||||
|
||||
.navi-void, .navi-void:hover {
|
||||
color: #999;
|
||||
background-position: -88px 0;
|
||||
}
|
||||
BIN
images/nav/npc/next-in.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
images/nav/npc/next.png
Normal file
|
After Width: | Height: | Size: 621 B |
BIN
images/nav/npc/nextchap.png
Normal file
|
After Width: | Height: | Size: 694 B |
BIN
images/nav/npc/prev-in.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
images/nav/npc/prev.png
Normal file
|
After Width: | Height: | Size: 653 B |
BIN
images/nav/npc/prevchap.png
Normal file
|
After Width: | Height: | Size: 675 B |
BIN
images/nav/npc/random.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
images/nav/npc/share.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
images/nav/npc/sharebox.png
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
images/nav/npc/subscribe.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
@@ -3,7 +3,7 @@ Contributors: Frumph
|
||||
Tags: comiceasel, easel, webcomic, comic, webcomic
|
||||
Requires at least: 3.2
|
||||
Tested up to: 4.0
|
||||
Stable tag: 1.8.1
|
||||
Stable tag: 1.8.2
|
||||
Donate link: http://frumph.net
|
||||
License: GPLv3 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||