Skip to content

Commit

Permalink
Merge pull request #20 from yithemes/2.1.0-beta
Browse files Browse the repository at this point in the history
2.1.0 beta
  • Loading branch information
francgrasso authored Aug 2, 2024
2 parents 9a8420e + 426be4f commit fab735d
Show file tree
Hide file tree
Showing 18 changed files with 1,059 additions and 527 deletions.
23 changes: 22 additions & 1 deletion assets/css/general-block-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
.wp-block-post-featured-image + .wp-block-group .vertical-overlap {
margin-top: var(--wp--custom--single-post-feature-image-orverlap-vertical-margin);
position: relative;
z-index: 10;
z-index: 1;
}

/* STICKY POSTS FIX */
Expand Down Expand Up @@ -96,6 +96,7 @@ input[type=week],
min-height: var(--wp--custom--input-min-height);
min-width: 80px;
padding: 0.3rem 1rem;
color: var(--wp--preset--color--contrast);
}

.select2-container .select2-selection--single .select2-selection__arrow {
Expand All @@ -111,6 +112,20 @@ select {
padding: 3px;
}

input[type=submit],
button[type=submit] {
background-color: var(--wp--preset--color--primary);
border-radius: var(--wp--custom--button-border-radius);
border-width: 0;
border-style: solid;
color: var(--wp--preset--color--base);
font-weight: 500;
padding-top: 0.5rem;
padding-right: 1rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
}

input[type=submit]:focus, input[type=submit]:hover,
button[type=submit]:focus,
button[type=submit]:hover,
Expand Down Expand Up @@ -191,6 +206,12 @@ input.wpcf7-not-valid {
font-size: 0.8em;
}

/* COMMENT FORM */
form.comment-form textarea {
margin-block: 15px;
border-radius: 15px;
}

/* EDITOR CREATIVE CSS CLASSES */
@media (min-width: 1200px) {
.negative-right-margin {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/general-block-style.css.map

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

2 changes: 1 addition & 1 deletion assets/css/general-block-style.min.css

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

19 changes: 19 additions & 0 deletions assets/css/registered-block-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,22 @@ blockquote.is-style-yith-wonder-quote-with-icon p:first-child {
-o-object-fit: contain;
object-fit: contain;
}

/* Sticky header */
.is-style-yith-wonder-sticky-header {
position: sticky;
top: 0;
z-index: 10;
}

@media (min-width: 600px) {
.admin-bar .is-style-yith-wonder-sticky-header {
top: 32px;
}
}
/* Overlay header */
.is-style-yith-wonder-overlay-header {
position: absolute;
z-index: 10;
width: 100%;
}
2 changes: 1 addition & 1 deletion assets/css/registered-block-styles.css.map

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

Loading

0 comments on commit fab735d

Please sign in to comment.