Skip to content

Commit

Permalink
modified: README.txt
Browse files Browse the repository at this point in the history
	modified:   changelog.txt
	modified:   lib/csscolor.css.php
	modified:   raindrops.js
	modified:   style.css
  • Loading branch information
tenman committed Dec 4, 2017
1 parent 6c6fc40 commit cc54076
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

Contributors: nobita
Requires at least: WordPress 4.6
Tested up to: WordPress 4.9
Tested up to: WordPress 4.9.1
Stable tag: 1.487
Version: 1.498
Version: 1.499
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-colors, custom-header, custom-background, custom-menu, editor-style, theme-options, threaded-comments, sticky-post, translation-ready, post-formats, featured-images, full-width-template, rtl-language-support, microformats, grid-layout, flexible-header, custom-logo, featured-image-header, footer-widgets
Expand Down
4 changes: 3 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Changelog -----------------------------------
version:1.498
version:1.499

Overview of Changes

Expand Down Expand Up @@ -60,6 +60,8 @@ Overview of Changes

Not yet, audio shortcode

Note:Avoid placing large amounts of video in modal boxes. Iframes are loaded lazily, but the associated scripts are loaded and affect performance.

Modified Raindrops Tab Box

A layout that saves space on the WEB page is easily realized.
Expand Down
10 changes: 9 additions & 1 deletion lib/csscolor.css.php
Original file line number Diff line number Diff line change
Expand Up @@ -2596,7 +2596,7 @@ function raindrops_indv_css_minimal() {
.nav-links .page-numbers:hover{
%c4%;
}
.widget_calendar #today a,
.widget_calendar #today,
.nav-links .current{
%c_2%;
Expand Down Expand Up @@ -3149,6 +3149,14 @@ function raindrops_indv_css_minimal() {
list-style-type:none;
position:relative;
}
.yui-b > .yui-gf .widget_nav_menu .children,
.yui-b > .yui-gd .widget_nav_menu .children,
.yui-b > .yui-g .widget_nav_menu .children,
.yui-b > .yui-gf .widget_nav_menu .sub-menu,
.yui-b > .yui-gd .widget_nav_menu .sub-menu,
.yui-b > .yui-g .widget_nav_menu .sub-menu{
border:1px solid %rgba_border%;
}
.rd-type-minimal .widget_rss li{
border-bottom:1px dotted #aaa;
margin-bottom:1.5em;
Expand Down
14 changes: 14 additions & 0 deletions raindrops.js
Original file line number Diff line number Diff line change
Expand Up @@ -409,4 +409,18 @@ jQuery( function ( $ ) {
$(this).parents('.rd-modal').find('iframe').attr('src', iframe_src);
});

/* load iframe only modal link clicked */
$('.rd-modal iframe').each( function ( index ) {
var renamed_src = $(this).attr('src');
$( this).attr('data-rd-src', renamed_src ).attr('src', 'about:blank');
});

$('.modal-link').click(function(){
$( modal_box_id ).find('iframe').hide();
var modal_box_id = $(this).attr('href');
modal_box_id = modal_box_id.replace(/^[^#]*/,"");
var iframe_src = $( modal_box_id ).find('iframe').attr('data-rd-src');
$( modal_box_id ).find('iframe').attr('src', iframe_src).removeAttr('data-rd-src').show();
});

} );
10 changes: 7 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://www.tenman.info/wp3/raindrops/
Description: This theme can change freely fonts,layout,color scheme and header image for each post,page. The google fonts, you can use freely in the post more than 90percent of the fonts.Color scheme and layout, you can freely change from theme customizer.For more updates, please make sure to open the link of the changelog from the help tab of this theme page.Add new post, so also to help tab of edit post page has been described how to use tips, please visit. Supported languages Japanese - JAPAN (ja) French - FRANCE (fr_FR) Polish - POLAND (PL) (pl_PL) Portuguese - BRAZIL (pt_BR)
Author: Tenman
Author URI: https://www.tenman.info/wp3/
Version: 1.498
Version: 1.499
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-colors, custom-header, custom-background, custom-menu, editor-style, theme-options, threaded-comments, sticky-post, translation-ready, post-formats, featured-images, full-width-template, rtl-language-support, microformats, grid-layout, flexible-header, custom-logo, featured-image-header, footer-widgets
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -2712,6 +2712,7 @@ br.clearfix {
padding-bottom:5%;
height:0;
}

.yui-b > .yui-gf #wp-calendar #prev,
.yui-b > .yui-gd #wp-calendar #prev,
.yui-b > .yui-g #wp-calendar #prev,
Expand Down Expand Up @@ -6519,13 +6520,16 @@ ul.rd-nowrap{
position: fixed;
overflow: hidden;
left: 0px;
top: 0px;
top: 1em;
padding: 0px;
z-index: 99;
z-index: 199999;
text-align: center;
background:rgba(0,0,0,.6);
color:#333;
}
.entry-content .rd-modal{
margin: 0;
}
.rd-modal .body{
background:#fff;
color:#333;
Expand Down

0 comments on commit cc54076

Please sign in to comment.