Committing version 0.8.2

This commit is contained in:
kjodle 2017-06-01 20:52:41 -04:00
parent f1bb58101c
commit 5ab73d2ec1
3 changed files with 36 additions and 18 deletions

View File

@ -553,12 +553,12 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_twitter', array( $wp_customize->add_setting( 'atticus_finch_twitter', array(
'type' => 'theme_mod', 'type' => 'theme_mod',
'transport' => 'postMessage', 'transport' => 'postMessage',
'sanitize_callback' => 'html', 'sanitize_callback' => 'atticus_finch_sanitize_url',
) ); ) );
$wp_customize->add_control( 'atticus_finch_twitter', array( $wp_customize->add_control( 'atticus_finch_twitter', array(
'section' => 'atticus_finch_social_media', 'section' => 'atticus_finch_social_media',
'type' => 'text', 'type' => 'url',
'label' => __( 'Enter Twitter URL', 'atticus-finch'), 'label' => __( 'Enter Twitter URL', 'atticus-finch'),
) ); ) );
@ -566,12 +566,12 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_twitter2', array( $wp_customize->add_setting( 'atticus_finch_twitter2', array(
'type' => 'theme_mod', 'type' => 'theme_mod',
'transport' => 'postMessage', 'transport' => 'postMessage',
'sanitize_callback' => 'html', 'sanitize_callback' => 'atticus_finch_sanitize_url',
) ); ) );
$wp_customize->add_control( 'atticus_finch_twitter2', array( $wp_customize->add_control( 'atticus_finch_twitter2', array(
'section' => 'atticus_finch_social_media', 'section' => 'atticus_finch_social_media',
'type' => 'text', 'type' => 'url',
'label' => __( 'Enter second Twitter URL', 'atticus-finch'), 'label' => __( 'Enter second Twitter URL', 'atticus-finch'),
) ); ) );
@ -579,12 +579,12 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_facebook', array( $wp_customize->add_setting( 'atticus_finch_facebook', array(
'type' => 'theme_mod', 'type' => 'theme_mod',
'transport' => 'postMessage', 'transport' => 'postMessage',
'sanitize_callback' => 'html', 'sanitize_callback' => 'atticus_finch_sanitize_url',
) ); ) );
$wp_customize->add_control( 'atticus_finch_facebook', array( $wp_customize->add_control( 'atticus_finch_facebook', array(
'section' => 'atticus_finch_social_media', 'section' => 'atticus_finch_social_media',
'type' => 'text', 'type' => 'url',
'label' => __( 'Enter Facebook URL', 'atticus-finch'), 'label' => __( 'Enter Facebook URL', 'atticus-finch'),
) ); ) );
@ -592,7 +592,7 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_instagram', array( $wp_customize->add_setting( 'atticus_finch_instagram', array(
'type' => 'theme_mod', 'type' => 'theme_mod',
'transport' => 'postMessage', 'transport' => 'postMessage',
'sanitize_callback' => 'html', 'sanitize_callback' => 'atticus_finch_sanitize_url',
) ); ) );
$wp_customize->add_control( 'atticus_finch_instagram', array( $wp_customize->add_control( 'atticus_finch_instagram', array(
@ -605,12 +605,12 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_youtube', array( $wp_customize->add_setting( 'atticus_finch_youtube', array(
'type' => 'theme_mod', 'type' => 'theme_mod',
'transport' => 'postMessage', 'transport' => 'postMessage',
'sanitize_callback' => 'html', 'sanitize_callback' => 'atticus_finch_sanitize_url',
) ); ) );
$wp_customize->add_control( 'atticus_finch_youtube', array( $wp_customize->add_control( 'atticus_finch_youtube', array(
'section' => 'atticus_finch_social_media', 'section' => 'atticus_finch_social_media',
'type' => 'text', 'type' => 'url',
'label' => __( 'Enter YouTube URL', 'atticus-finch'), 'label' => __( 'Enter YouTube URL', 'atticus-finch'),
) ); ) );
@ -618,12 +618,12 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_pinterest', array( $wp_customize->add_setting( 'atticus_finch_pinterest', array(
'type' => 'theme_mod', 'type' => 'theme_mod',
'transport' => 'postMessage', 'transport' => 'postMessage',
'sanitize_callback' => 'html', 'sanitize_callback' => 'atticus_finch_sanitize_url',
) ); ) );
$wp_customize->add_control( 'atticus_finch_pinterest', array( $wp_customize->add_control( 'atticus_finch_pinterest', array(
'section' => 'atticus_finch_social_media', 'section' => 'atticus_finch_social_media',
'type' => 'text', 'type' => 'url',
'label' => __( 'Enter Pinterest Profile URL', 'atticus-finch'), 'label' => __( 'Enter Pinterest Profile URL', 'atticus-finch'),
) ); ) );
@ -631,12 +631,12 @@ $default_copyright = '<a rel="license" href="http://creativecommons.org/licenses
$wp_customize->add_setting( 'atticus_finch_amazon', array( $wp_customize->add_setting( 'atticus_finch_amazon', array(
'type' => 'theme_mod', 'type' => 'theme_mod',
'transport' => 'postMessage', 'transport' => 'postMessage',
'sanitize_callback' => 'html', 'sanitize_callback' => 'atticus_finch_sanitize_url',
) ); ) );
$wp_customize->add_control( 'atticus_finch_amazon', array( $wp_customize->add_control( 'atticus_finch_amazon', array(
'section' => 'atticus_finch_social_media', 'section' => 'atticus_finch_social_media',
'type' => 'text', 'type' => 'url',
'label' => __( 'Enter Amazon Wish List URL', 'atticus-finch'), 'label' => __( 'Enter Amazon Wish List URL', 'atticus-finch'),
) ); ) );
@ -950,6 +950,10 @@ function atticus_finch_sanitize_html( $input ) {
); );
} }
function atticus_finch_sanitize_url( $url ) {
return esc_url_raw( $url );
}
function atticus_finch_sanitize_mobile_menu_type( $input ){ function atticus_finch_sanitize_mobile_menu_type( $input ){
$valid = array( $valid = array(
'select' => 'Select Menu', 'select' => 'Select Menu',

View File

@ -4,7 +4,7 @@ Theme URI: http://wiki.kjodle.net/Category:Atticus_Finch_Theme
Author: kjodle Author: kjodle
Author URI: http://d12webdesign.com/ Author URI: http://d12webdesign.com/
Description: Description Description: Description
Version: 0.8.1 Version: 0.8.2
License: GNU General Public License v2 or later License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, left-sidebar, custom-menu, featured-images, post-formats, theme-options, threaded-comments, translation-ready Tags: two-columns, left-sidebar, custom-menu, featured-images, post-formats, theme-options, threaded-comments, translation-ready
@ -206,7 +206,7 @@ a.top-button {
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
.post a { .post-content a {
text-decoration: none; text-decoration: none;
border-bottom: dotted 1px #222; border-bottom: dotted 1px #222;
color: #222; color: #222;
@ -218,7 +218,7 @@ a.top-button {
-webkit-transition: border-color 1s; -webkit-transition: border-color 1s;
transition: border-color 1s; transition: border-color 1s;
} }
.post a:hover { .post-content a:hover {
border-color: #eee; border-color: #eee;
color: #3437e5; color: #3437e5;
} }
@ -637,6 +637,7 @@ ul#footermenu-ul a:hover {
padding-right: 6px; padding-right: 6px;
vertical-align: text-top; vertical-align: text-top;
transition: color 2s, font-size 2s; transition: color 2s, font-size 2s;
border: none;
} }
#social-media-menu a:hover { #social-media-menu a:hover {
font-size: 48px; font-size: 48px;

17
styles/print.css Normal file → Executable file
View File

@ -2,7 +2,8 @@ body > header,
body > footer, body > footer,
#sidebar, #sidebar,
a.post-edit-link, a.post-edit-link,
#post-series { #post-series,
#respond {
display: none; display: none;
} }
@ -13,11 +14,20 @@ body,
.post, .post,
.page, .page,
.post-content { .post-content {
max-width: 100%; width: 100%;
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
.post li {
margin-bottom: 6pt;
}
.post-content a {
text-decoration: none;
border-bottom: solid 1pt #99f;
}
#content { #content {
border: none; border: none;
} }
@ -63,3 +73,6 @@ body,
display: block; display: block;
margin: 0 auto; margin: 0 auto;
} }
.post-content a:after {
content:" [URL: " attr(href) "] ";