-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9776 from awesomemotive/release/3.3.6.1
Adding 3.3.6.0/1
- Loading branch information
Showing
193 changed files
with
8,371 additions
and
8,756 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.edd__handle-actions-order { | ||
display: flex; | ||
transition: opacity 0.25s ease-in-out; | ||
|
||
button { | ||
padding: 9px; | ||
border: 0; | ||
background: transparent; | ||
|
||
&:disabled .dashicons { | ||
opacity: 0.5; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
.edd-download-editor__sections { | ||
margin-top: 20px; | ||
|
||
.section-content--is-dynamic { | ||
position: relative; | ||
} | ||
|
||
.section-wrap .edd-section-content__fields--standard .edd-form-group { | ||
margin-bottom: 16px; | ||
} | ||
|
||
.section-content .inside { | ||
margin: 0 !important; | ||
padding: 0; | ||
} | ||
} | ||
|
||
.section-title--is-dynamic { | ||
&:hover, | ||
&:focus { | ||
.edd-section-title__handle-actions:not(.edd-hidden) { | ||
opacity: 1; | ||
z-index: 1000; | ||
} | ||
} | ||
|
||
// This CSS is added specifically to help with keyboard navigation accessibility. | ||
.edd-section-title__handle-actions:not(.edd-hidden) { | ||
&:focus-within { | ||
opacity: 1; | ||
z-index: 1000; | ||
} | ||
} | ||
} | ||
|
||
.edd-section-title__handle-actions.edd__handle-actions-order { | ||
position: absolute; | ||
right: -44px; | ||
display: flex; | ||
opacity: 0; | ||
transition: opacity 0.25s ease-in-out; | ||
z-index: -1; | ||
|
||
button { | ||
padding: 9px; | ||
border: 1px solid $gray-200; | ||
background-color: #fcfcfc; | ||
|
||
&:first-of-type { | ||
border-right: 0; | ||
border-left: 0; | ||
} | ||
|
||
&:last-of-type { | ||
border-left: 0; | ||
border-top-right-radius: 4px; | ||
border-bottom-right-radius: 4px; | ||
} | ||
|
||
&:disabled .dashicons { | ||
opacity: 0.5; | ||
} | ||
|
||
&:focus-visible { | ||
outline: none; | ||
box-shadow: inset 0 0 1px 1px var(--wp-admin-theme-color); | ||
} | ||
} | ||
|
||
@media only screen and (max-width: $break-medium) { | ||
right: 0; | ||
left: 100%; | ||
} | ||
} | ||
|
||
body:not(.block-editor-page) { | ||
#edd_product_details .inside { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.edd-download-editor__sections { | ||
border: none; | ||
margin-top: 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.edd-buy-buttons { | ||
display: flex; | ||
flex-wrap: wrap; | ||
gap: 8px; | ||
margin-bottom: 20px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
@import "../variables/variables"; | ||
@import "prices"; | ||
@import "product_settings"; | ||
@import "repeatable_row"; | ||
@import "upload"; | ||
@import "duplicate"; | ||
@import "product-files"; | ||
@import "sections"; | ||
@import "settings"; | ||
@import "actions"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,7 @@ | |
|
||
+label { | ||
display: unset; | ||
font-weight: unset; | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@media screen and (max-width: $break-mobile) { | ||
.regular-text { | ||
width: 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
@import "form-group"; | ||
@import "form-row"; | ||
@import "general"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
.edd-hidden { | ||
display: none; | ||
|
||
&--required { | ||
display: none !important; | ||
} | ||
} | ||
|
||
.edd-clearfix:after { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
.edd-admin--has-grid { | ||
display: grid; | ||
display: -ms-grid; | ||
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); | ||
grid-gap: 20px; | ||
|
||
.postbox { | ||
margin-bottom: 0; | ||
} | ||
|
||
.edd-from-to-wrapper { | ||
display: flex; | ||
margin-bottom: 16px; | ||
width: 100%; | ||
|
||
input { | ||
width: 100%; | ||
} | ||
|
||
span { | ||
flex-grow: 1; | ||
} | ||
} | ||
|
||
form { | ||
display: flex; | ||
flex-direction: column; | ||
flex-wrap: wrap; | ||
position: relative; | ||
} | ||
|
||
.postbox .edd-select { | ||
max-width: 100%; | ||
margin-right: 0; | ||
} | ||
|
||
.button.updating-message:before, | ||
.button.updated-message:before { | ||
vertical-align: text-bottom; | ||
margin: 0 5px 0 0; | ||
} | ||
|
||
@media screen and (max-width: $break-mobile) { | ||
grid-template-columns: 1fr; | ||
} | ||
} |
Oops, something went wrong.