Skip to content

Commit

Permalink
modified: README.txt
Browse files Browse the repository at this point in the history
	modified:   changelog.txt
	modified:   style.css
  • Loading branch information
tenman committed Nov 27, 2017
1 parent c03d255 commit eae7a75
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: nobita
Requires at least: WordPress 4.5
Tested up to: WordPress 4.8.3
Stable tag: 1.487
Version: 1.496
Version: 1.497
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
73 changes: 73 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,77 @@
Changelog -----------------------------------
version:1.497

Overview of Changes
Added body CSS Class rd-basefont-[13-20]
This Classes relate Base Font Size in Customize / Presentation / Fonts
Added Added Codemirror editor to Custom CSS For This Entry in post edit window

Modified visual settings

Kerning enabled all languages

for Japanese environment
Kerning enabled with font-feature-settings: "palt";

Changed Default fonts.
When using theme default font, YuGothic, Chrome Browser and Opera Browser are displayed as faint letters in Japanese.
Change Noto Sans JP (japanese) http://www.google.com/fonts/earlyaccess
Other browsers use YuGothic as the default font.
With this change kerning for Japanese has become effective with major browsers including IE 10 or more and edge browser

Basic Form validation styles added

type:[color , date , datetime , datetime-local , email , month , password , number , search , tel , text , time , url , week]

example selectors
:required,
input[type="email" i]:valid:not(:placeholder-shown),
input[type="email" i]:not([placeholder]):valid,
input[type="email" i]:invalid,
input[type="email" i]:disabled,
input[type="email" i]:read-only,
input[type="radio"]:indeterminate + label:before { content:'?';...}

Note:
Even if: valid is blank, since it evaluates to true,
I made a setting to support depending on whether or not a placeholder is displayed.

Known Issue

Must Needs Form Structure

<input type="text" placeholder="hello world" id="xxx" val=""><label for="xxx">hello world</label>

Not Work Structure
<label><input type="text" placeholder="hello world" id="xxx" val="">hello world</label>

IE, Edge not support
Added global vars

Variables to limit the behavior of very old template part files, part-gallery.php, part-blog.php
$raindrops_use_part_gallery_template, $raindrops_use_part_blog_template

Files Modified
modified: css3.css
modified: fonts.css
modified: functions.php
modified: image.php
modified: languages/css/ja.css
modified: languages/scripts/ja.php
modified: lib/csscolor.css.php
modified: lib/hooks.php
modified: lib/vars.php
modified: loop.php
modified: plugins/plugins-presentation.php
modified: raindrops-helper.js
modified: raindrops.js
modified: responsiveness.css
modified: style.css

Description of Code Changes
please see https://themes.trac.wordpress.org/changeset?old_path=raindrops/1.496&new_path=raindrops/1.497
-----------------------------------------------Changelog -----------------------------------
Changelog -----------------------------------
version:1.496

Overview of Changes
Expand Down
20 changes: 10 additions & 10 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.496
Version: 1.497
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 @@ -177,11 +177,11 @@ a.disable{
cursor: default;
text-decoration:none;
}
html .gradient-5 a,
html .gradient-5 a,
html .gradient-4 a, html .gradient-3 a, html .gradient-2 a,
html .gradient-1 a, html .gradient1 a, html .gradient2 a, html .gradient3 a,
html .gradient4 a,
html .gradient5 a,
html .gradient4 a,
html .gradient5 a,
html .color-5 a,
html .color-4 a, html .color-3 a, html .color-2 a, html .color-1 a,
html .color1 a, html .color2 a, html .color3 a, html .color4 a,
Expand Down Expand Up @@ -811,7 +811,7 @@ u{
text-decoration-style: double;
-webkit-text-decoration: underline;
-webkit-text-decoration-style: double;
-webkit-text-decoration-color: #888;
-webkit-text-decoration-color: #888;
text-decoration-color: #888;
}
details summary{
Expand Down Expand Up @@ -1223,7 +1223,7 @@ article input[type="button"],
article input[type="file"],
article input[type="reset"],
article input[type="submit"]{
padding:.3em 1em;
padding:.3em 1em;
}
textarea,
input[type="password"],
Expand Down Expand Up @@ -1370,7 +1370,7 @@ input[type="text" i]:valid:not(:placeholder-shown),
input[type="time" i]:valid:not(:placeholder-shown),
input[type="url" i]:valid:not(:placeholder-shown),
input[type="week" i]:valid:not(:placeholder-shown){
border-bottom: 2px solid rgb(86, 178, 116);
border-bottom: 2px solid rgb(86, 178, 116);
}
/* when not exists placeholder attribute */
textarea:not([placeholder]):valid,
Expand Down Expand Up @@ -1405,7 +1405,7 @@ input[type="text" i]:invalid,
input[type="time" i]:invalid,
input[type="url" i]:invalid,
input[type="week" i]:invalid{
border-bottom: 2px solid rgb(225, 77, 67);
border-bottom: 2px solid rgb(225, 77, 67);
}
textarea:disabled,
input:not([type]):disabled,
Expand Down Expand Up @@ -1460,7 +1460,7 @@ input[type="radio"]:checked + label {
input[type="radio"]:indeterminate + label:before {
content:'?';
margin-right:.3em;
color:rgba(225, 77, 67, 1);
color:rgba(225, 77, 67, 1);
}
/* disable presentation start */
.rd-form-style-disabled input[type="radio"]:indeterminate + label:before {
Expand All @@ -1478,7 +1478,7 @@ input[type="radio"]:indeterminate + label:before {
border-bottom:1px solid rgba(127,127,127,.5);
}
/* disable presentation end */

/* field conditional Stye end */
/**
* Gradient Classes
Expand Down

0 comments on commit eae7a75

Please sign in to comment.