Skip to content

Commit

Permalink
Merge branch 'release/1.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Hemberger committed Oct 17, 2017
2 parents 493442c + 6313ea7 commit e937d1a
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 1.2.3 (10/12/17)
* Fixed: Align labels to the left, so Mai Pro sections with centered content won't center labels.

#### 1.2.2 (10/12/17)
* Added: Included updater script.

Expand Down
29 changes: 15 additions & 14 deletions css/wampum-forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

.wampum-form .wampum-field,
.entry-content .wampum-form .wampum-field {
margin-bottom: 15px;
text-align: left;
margin-bottom: 16px;
}

.wampum-form .wampum-field .required {
Expand Down Expand Up @@ -38,13 +39,13 @@
/* Wampum Notices */

.wampum-notice {
background-color: #444;
color: rgba(255, 255, 255, 0.85);
padding: 8px 12px;
margin-left: 0;
margin-bottom: 12px;
background-color: #444;
color: rgba(255, 255, 255, 0.85);
padding: 8px 12px;
margin-left: 0;
margin-bottom: 12px;
border-left: 5px solid #00a0d2;
box-shadow: 0 1px 4px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.2);box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.wampum-notice.success {
Expand Down Expand Up @@ -120,25 +121,25 @@
}

.wampum-loading .wampum-loading-circle {
display: inline-block;
margin: 0 2px;
-webkit-animation: wampum-loading 1.4s ease-in-out 0s infinite both;animation: wampum-loading 1.4s ease-in-out 0s infinite both;
display: inline-block;
margin: 0 2px;
-webkit-animation: wampum-loading 1.4s ease-in-out 0s infinite both;animation: wampum-loading 1.4s ease-in-out 0s infinite both;
}

.wampum-loading .wampum-loading-circle1 {
-webkit-animation-delay: -0.32s;animation-delay: -0.32s;
-webkit-animation-delay: -0.32s;animation-delay: -0.32s;
}

.wampum-loading .wampum-loading-circle2 {
-webkit-animation-delay: -0.16s;animation-delay: -0.16s;
-webkit-animation-delay: -0.16s;animation-delay: -0.16s;
}

@-webkit-keyframes wampum-loading {
0%, 80%, 100% {
-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);
-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);
}
40% {
-webkit-transform: scale(2); -ms-transform: scale(2); transform: scale(2);
-webkit-transform: scale(2); -ms-transform: scale(2); transform: scale(2);
}
}
@keyframes wampum-loading {
Expand Down
2 changes: 1 addition & 1 deletion css/wampum-forms.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions wampum-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*
* Version: 1.2.2
* Version: 1.2.3
*
* GitHub Plugin URI: https://github.com/bizbudding/wampum-forms
* GitHub Branch: master
Expand Down Expand Up @@ -121,7 +121,7 @@ public function __wakeup() {
private function setup_constants() {
// Plugin version.
if ( ! defined( 'WAMPUM_FORMS_VERSION' ) ) {
define( 'WAMPUM_FORMS_VERSION', '1.2.2' );
define( 'WAMPUM_FORMS_VERSION', '1.2.3' );
}
// Plugin Folder Path.
if ( ! defined( 'WAMPUM_FORMS_PLUGIN_DIR' ) ) {
Expand Down Expand Up @@ -171,7 +171,6 @@ private function includes() {
require_once WAMPUM_FORMS_INCLUDES_DIR . 'vendor/plugin-update-checker/plugin-update-checker.php';
}
$updater = Puc_v4_Factory::buildUpdateChecker( 'https://github.com/bizbudding/wampum-forms/', __FILE__, 'wampum-forms' );

}

}
Expand Down

0 comments on commit e937d1a

Please sign in to comment.