Skip to content

Commit

Permalink
Version bump to 1.8.6
Browse files Browse the repository at this point in the history
Squashed commit of the following:
commit 5c62c21 (HEAD -> develop, origin/develop)
Author: Lekhnath Pandey <[email protected]>
Date:   Tue Aug 11 21:43:14 2020 +0545

    Version bump to 1.8.6

commit 10d6a19 (HEAD -> develop, origin/develop)
Author: Prajjwal Poudel <[email protected]>
Date:   Tue Aug 11 21:16:28 2020 +0545

    Fix - Profile picture, file upload, mailchimp and smart phone field sync with woocommerce (#257)

commit 7006ff7
Author: Prajjwal Poudel <[email protected]>
Date:   Tue Aug 11 21:09:02 2020 +0545

    Fix - ReCaptcha script loads in lost password page (#253)

commit f4d32ea
Author: Krishna Suwal <[email protected]>
Date:   Tue Aug 11 21:02:27 2020 +0545

    Enhance - Login form customization (#245)

    * Added options to edit labels and input placeholders in login form

    * Added an option to hide field labels in the login form

    * Added options to edit login form messages while trying to login

    * Tweak - WPML Compatibility

commit 53afa66
Author: Lekhnath Pandey <[email protected]>
Date:   Tue Aug 11 20:40:33 2020 +0545

    tweak- wp-5.5 compatibility (#255)

commit f791bd5
Author: Krishna Suwal <[email protected]>
Date:   Tue Aug 11 20:34:23 2020 +0545

    Enhance - Introduce tooltips in Form Builder (#249)

    * Introduced tooltips for field options in form builder

    * Added tooltips in the form settings tab

    * Tweak - Tooltip spacing

    * Improved tooltip messages

    Co-authored-by: Nilan Bhasima <[email protected]>

commit d3075fe
Author: Krishna Suwal <[email protected]>
Date:   Tue Aug 11 20:29:43 2020 +0545

    Fix - Cannot auto scroll while dragging fields in the form builder (#251)

commit 8f6a950
Author: Krishna Suwal <[email protected]>
Date:   Tue Aug 11 16:29:48 2020 +0545

    Fix - Required option and Hide Label option conflict (#243)

commit ab4fe76
Author: Prajjwal Poudel <[email protected]>
Date:   Tue Aug 11 16:13:54 2020 +0545

     Enhance - Copy icon on shortcode column in registration forms list table (#250)

    * Enhance - Copy icon on shortcode column in registration forms list table

    * Tweak - Design customize for shortcode

    * Tweak - Design customize for shortcode

    Co-authored-by: Nilan Bhasima <[email protected]>

commit 213987b
Author: Prajjwal Poudel <[email protected]>
Date:   Tue Aug 11 16:10:02 2020 +0545

    Fix - Reset password for other plugin registered users (#246)

commit 239efae
Author: Krishna Suwal <[email protected]>
Date:   Tue Aug 11 15:57:05 2020 +0545

    Enhance - Option to disable logout confirmation (#244)

    * Added an option to disable logout confirmation

    * Moved the logout confirmation option

commit 871d53a
Author: Nilanzva <[email protected]>
Date:   Thu Aug 6 09:32:04 2020 +0545

    Refactor - SASS files (#247)

    * Refactoring grids

    * Add - Grids and container layout

    * Added - Container variants

    * Tweak - Flex wrap

    * Enhanced - Display utilities

    * Spacing utilities

    * Prefixes for space utilities

    * Classnames related to the space utilities

commit ea86bf6
Author: Nilan Bhasima <[email protected]>
Date:   Fri Jul 31 10:17:15 2020 +0545

    Select2 design
  • Loading branch information
lekhnathpandey committed Aug 11, 2020
1 parent c9668e0 commit 51ef3dd
Show file tree
Hide file tree
Showing 81 changed files with 1,861 additions and 763 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
= 1.8.6 - 11/08/2020
* Enhance - Login form customization
* Enhance - Introduce tooltips in Form Builder
* Enhance - Copy icon on shortcode column in registration forms list table
* Enhance - Option to disable logout confirmation
* Tweak- Wordpress 5.5 Compatibility
* Fix - Profile picture, file upload, mailchimp and smart phone field sync with woocommerce
* Fix - ReCaptcha script loads in lost password page
* Fix - Cannot auto scroll while dragging fields in the form builder
* Fix - Required option and Hide Label option conflict
* Fix - Reset password for other plugin registered users
* Dev - SASS files

= 1.8.5 - 13/07/2020
* Feature- Ajax form submission on edit profile
* Dev - Added OR Logic Gate in conditional logic.
Expand Down
69 changes: 62 additions & 7 deletions assets/css/_display.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,68 @@
.ur-d-flex {
display: flex;
}

.ur-flex-wrap {
flex-wrap: flex-wrap;
/**
* Display Variations
**/
$displays: none, inline, inline-block, block, table, table-row, table-cell, flex, inline-flex;

@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);

@each $value in $displays {
.ur-d#{$infix}-#{$value} { display: $value !important; }
}
}
}

.ur-align-items-center {
align-items: center;
/**
* Flex variation
*
* Custom styles for additional flex alignment options.
**/
@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);

.ur-flex#{$infix}-row { flex-direction: row !important; }
.ur-flex#{$infix}-column { flex-direction: column !important; }
.ur-flex#{$infix}-row-reverse { flex-direction: row-reverse !important; }
.ur-flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }

.ur-flex#{$infix}-wrap { flex-wrap: wrap !important; }
.ur-flex#{$infix}-nowrap { flex-wrap: nowrap !important; }
.ur-flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }
.ur-flex#{$infix}-fill { flex: 1 1 auto !important; }
.ur-flex#{$infix}-grow-0 { flex-grow: 0 !important; }
.ur-flex#{$infix}-grow-1 { flex-grow: 1 !important; }
.ur-flex#{$infix}-shrink-0 { flex-shrink: 0 !important; }
.ur-flex#{$infix}-shrink-1 { flex-shrink: 1 !important; }

.ur-justify-content#{$infix}-start { justify-content: flex-start !important; }
.ur-justify-content#{$infix}-end { justify-content: flex-end !important; }
.ur-justify-content#{$infix}-center { justify-content: center !important; }
.ur-justify-content#{$infix}-between { justify-content: space-between !important; }
.ur-justify-content#{$infix}-around { justify-content: space-around !important; }

.ur-align-items#{$infix}-start { align-items: flex-start !important; }
.ur-align-items#{$infix}-end { align-items: flex-end !important; }
.ur-align-items#{$infix}-center { align-items: center !important; }
.ur-align-items#{$infix}-baseline { align-items: baseline !important; }
.ur-align-items#{$infix}-stretch { align-items: stretch !important; }

.ur-align-content#{$infix}-start { align-content: flex-start !important; }
.ur-align-content#{$infix}-end { align-content: flex-end !important; }
.ur-align-content#{$infix}-center { align-content: center !important; }
.ur-align-content#{$infix}-between { align-content: space-between !important; }
.ur-align-content#{$infix}-around { align-content: space-around !important; }
.ur-align-content#{$infix}-stretch { align-content: stretch !important; }

.ur-align-self#{$infix}-auto { align-self: auto !important; }
.ur-align-self#{$infix}-start { align-self: flex-start !important; }
.ur-align-self#{$infix}-end { align-self: flex-end !important; }
.ur-align-self#{$infix}-center { align-self: center !important; }
.ur-align-self#{$infix}-baseline { align-self: baseline !important; }
.ur-align-self#{$infix}-stretch { align-self: stretch !important; }
}
}

.ur-ml-auto {
Expand Down
1 change: 1 addition & 0 deletions assets/css/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@
margin: 0;
line-height: 1;
min-height: 26px;
height: 32px;
}
}
}
Expand Down
49 changes: 49 additions & 0 deletions assets/css/_grids.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@

/**
* Container
**/
.ur-container,
.ur-container-full {
@include create-container();
}

// Responsive containers that are 100% wide until a breakpoint
@each $breakpoint, $container-max-width in $container-max-widths {
.ur-container-#{$breakpoint} {
@extend .ur-container-full;
}

@include media-breakpoint-up($breakpoint, $grid-breakpoints) {
%responsive-container-#{$breakpoint} {
max-width: $container-max-width;
}

// Extend each breakpoint which is smaller or equal to the current breakpoint
$extend-breakpoint: true;

@each $name, $width in $grid-breakpoints {
@if ($extend-breakpoint) {
.ur-container#{breakpoint-infix($name, $grid-breakpoints)} {
@extend %responsive-container-#{$breakpoint};
}

// Once the current breakpoint is reached, stop extending
@if ($breakpoint == $name) {
$extend-breakpoint: false;
}
}
}
}
}

/**
* Row
**/
.ur-row {
@include create-row();
}

/**
* Columns
**/
@include make-grid-columns();
242 changes: 70 additions & 172 deletions assets/css/_spacing.scss
Original file line number Diff line number Diff line change
@@ -1,173 +1,71 @@
/**
* Margins
**/
.ur-m-0 {
margin: 0 !important;
}

.ur-m-1 {
margin: 8px !important;
}

.ur-m-2 {
margin: 16px !important;
}

.ur-m-3 {
margin: 24px !important;
}

// Margin Bottom
.ur-mb-0, .ur-my-0 {
margin-bottom: 0 !important;
}

.ur-mb-1, .ur-my-1 {
margin-bottom: 8px !important;
}

.ur-mb-2, .ur-my-2 {
margin-bottom: 16px !important;
}

.ur-mb-3, .ur-my-3 {
margin-bottom: 24px !important;
}

// Margin Top
.ur-mt-0, .ur-my-0 {
margin-top: 0 !important;
}

.ur-mt-1, .ur-my-1 {
margin-top: 8px !important;
}

.ur-mt-2, .ur-my-2 {
margin-top: 16px !important;
}

.ur-mt-3, .ur-my-3 {
margin-top: 24px !important;
}

// Margin Left
.ur-ml-0, .ur-mx-0 {
margin-left: 0 !important;
}

.ur-ml-1, .ur-mx-1 {
margin-left: 8px !important;
}

.ur-ml-2, .ur-mx-2 {
margin-left: 16px !important;
}

.ur-ml-3, .ur-mx-3 {
margin-left: 24px !important;
}

// Margin Right
.ur-mr-0, .ur-mx-0 {
margin-right: 0 !important;
}

.ur-mr-1, .ur-mx-1 {
margin-right: 8px !important;
}

.ur-mr-2, .ur-mx-2 {
margin-right: 16px !important;
}

.ur-mr-3, .ur-mx-3 {
margin-right: 24px !important;
}

/**
* Padding
**/
.ur-p-0 {
padding: 0 !important;
}

.ur-p-1 {
padding: 8px !important;
}

.ur-p-2 {
padding: 16px !important;
}

.ur-p-3 {
padding: 24px !important;
}

// Padding Bottom
.ur-pb-0, .ur-py-0 {
padding-bottom: 0 !important;
}

.ur-pb-1, .ur-py-1 {
padding-bottom: 8px !important;
}

.ur-pb-2, .ur-py-2 {
padding-bottom: 16px !important;
}

.ur-pb-3, .ur-py-3 {
padding-bottom: 24px !important;
}

// Padding Top
.ur-pt-0, .ur-py-0 {
padding-top: 0 !important;
}

.ur-pt-1, .ur-py-1 {
padding-top: 8px !important;
}

.ur-pt-2, .ur-py-2 {
padding-top: 16px !important;
}

.ur-pt-3, .ur-py-3 {
padding-top: 24px !important;
}

// Padding Left
.ur-pl-0, .ur-px-0 {
padding-left: 0 !important;
}

.ur-pl-1, .ur-px-1 {
padding-left: 8px !important;
}

.ur-pl-2, .ur-px-2 {
padding-left: 16px !important;
}

.ur-pl-3, .ur-px-3 {
padding-left: 24px !important;
}

// Padding Right
.ur-pr-0, .ur-px-0 {
padding-right: 0 !important;
}

.ur-pr-1, .ur-px-1 {
padding-right: 8px !important;
}

.ur-pr-2, .ur-px-2 {
padding-right: 16px !important;
}

.ur-pr-3, .ur-px-3 {
padding-right: 24px !important;
// Margin and Padding

@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);

@each $prop, $abbrev in (margin: m, padding: p) {
@each $size, $length in $grid-spacers {
.ur-#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
.ur-#{$abbrev}t#{$infix}-#{$size},
.ur-#{$abbrev}y#{$infix}-#{$size} {
#{$prop}-top: $length !important;
}
.ur-#{$abbrev}r#{$infix}-#{$size},
.ur-#{$abbrev}x#{$infix}-#{$size} {
#{$prop}-right: $length !important;
}
.ur-#{$abbrev}b#{$infix}-#{$size},
.ur-#{$abbrev}y#{$infix}-#{$size} {
#{$prop}-bottom: $length !important;
}
.ur-#{$abbrev}l#{$infix}-#{$size},
.ur-#{$abbrev}x#{$infix}-#{$size} {
#{$prop}-left: $length !important;
}
}
}

// Negative margins (e.g., where `.ur-mb-n1` is negative version of `.ur-mb-1`)
@each $size, $length in $grid-spacers {
@if $size != 0 {
.ur-m#{$infix}-n#{$size} { margin: -$length !important; }
.ur-mt#{$infix}-n#{$size},
.ur-my#{$infix}-n#{$size} {
margin-top: -$length !important;
}
.ur-mr#{$infix}-n#{$size},
.ur-mx#{$infix}-n#{$size} {
margin-right: -$length !important;
}
.ur-mb#{$infix}-n#{$size},
.ur-my#{$infix}-n#{$size} {
margin-bottom: -$length !important;
}
.ur-ml#{$infix}-n#{$size},
.ur-mx#{$infix}-n#{$size} {
margin-left: -$length !important;
}
}
}

// Some special margin utils
.ur-m#{$infix}-auto { margin: auto !important; }
.ur-mt#{$infix}-auto,
.ur-my#{$infix}-auto {
margin-top: auto !important;
}
.ur-mr#{$infix}-auto,
.ur-mx#{$infix}-auto {
margin-right: auto !important;
}
.ur-mb#{$infix}-auto,
.ur-my#{$infix}-auto {
margin-bottom: auto !important;
}
.ur-ml#{$infix}-auto,
.ur-mx#{$infix}-auto {
margin-left: auto !important;
}
}
}
Loading

0 comments on commit 51ef3dd

Please sign in to comment.