From 10674db5b02c8fc55b882838993e1f3bb55dbb4b Mon Sep 17 00:00:00 2001 From: Slobodan Date: Thu, 21 Mar 2024 13:59:59 +0100 Subject: [PATCH 01/73] Change the label --- patterns/header-hero-cover-overlap-cta-large-image.php | 2 +- patterns/hero-cover-overlap-cta-large-image.php | 2 +- patterns/section-cover-overlap-bg-img.php | 2 +- patterns/section-cover-overlap-features-top.php | 2 +- patterns/section-cover-overlap-img-grid.php | 2 +- patterns/section-cover-overlap-numbers-bg.php | 2 +- patterns/section-cover-overlap-pricing.php | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/patterns/header-hero-cover-overlap-cta-large-image.php b/patterns/header-hero-cover-overlap-cta-large-image.php index fe955a4..16ab53a 100644 --- a/patterns/header-hero-cover-overlap-cta-large-image.php +++ b/patterns/header-hero-cover-overlap-cta-large-image.php @@ -25,7 +25,7 @@ -

Note: Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

+

Note: Background's Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

diff --git a/patterns/hero-cover-overlap-cta-large-image.php b/patterns/hero-cover-overlap-cta-large-image.php index 62c057f..7658f2d 100644 --- a/patterns/hero-cover-overlap-cta-large-image.php +++ b/patterns/hero-cover-overlap-cta-large-image.php @@ -12,7 +12,7 @@ -

Note: Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

+

Note: Background's Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

diff --git a/patterns/section-cover-overlap-bg-img.php b/patterns/section-cover-overlap-bg-img.php index 100abfa..52ba973 100644 --- a/patterns/section-cover-overlap-bg-img.php +++ b/patterns/section-cover-overlap-bg-img.php @@ -20,7 +20,7 @@
diff --git a/patterns/section-cover-overlap-features-top.php b/patterns/section-cover-overlap-features-top.php index d8580c4..0b89cf2 100644 --- a/patterns/section-cover-overlap-features-top.php +++ b/patterns/section-cover-overlap-features-top.php @@ -17,7 +17,7 @@
-

Note: Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

+

Note: Background's Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

diff --git a/patterns/section-cover-overlap-img-grid.php b/patterns/section-cover-overlap-img-grid.php index 943fb92..4b3effa 100644 --- a/patterns/section-cover-overlap-img-grid.php +++ b/patterns/section-cover-overlap-img-grid.php @@ -10,7 +10,7 @@
-

Note: Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

+

Note: Background's Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

diff --git a/patterns/section-cover-overlap-numbers-bg.php b/patterns/section-cover-overlap-numbers-bg.php index 39ccdcf..80eb58e 100644 --- a/patterns/section-cover-overlap-numbers-bg.php +++ b/patterns/section-cover-overlap-numbers-bg.php @@ -10,7 +10,7 @@
-

Note: Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

+

Note: Background's Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

diff --git a/patterns/section-cover-overlap-pricing.php b/patterns/section-cover-overlap-pricing.php index 40ba9e4..03e759c 100644 --- a/patterns/section-cover-overlap-pricing.php +++ b/patterns/section-cover-overlap-pricing.php @@ -10,7 +10,7 @@
-

Note: Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

+

Note: Background's Overlapping Point Depends on the Content Height. Still, the Overlapping Point Can Be Trimmed by Adjusting the Padding on the Wrapper Cover Block.

From fe9f764d2be965ed0df650c3b87d73ae1132217d Mon Sep 17 00:00:00 2001 From: Slobodan Date: Sat, 30 Mar 2024 17:37:08 +0100 Subject: [PATCH 02/73] Add a comment --- inc/register-block-styles.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/register-block-styles.php b/inc/register-block-styles.php index 82ed0b1..ed7733b 100644 --- a/inc/register-block-styles.php +++ b/inc/register-block-styles.php @@ -66,6 +66,7 @@ function icecubo_register_block_styles() ) ); + // With Cover styles we do not load the css file, instead styling done in the main.css register_block_style( 'core/cover', array( From d6c2050eaf4ea08e47d64f89168666b5abfad05d Mon Sep 17 00:00:00 2001 From: Slobodan Date: Sat, 30 Mar 2024 17:39:16 +0100 Subject: [PATCH 03/73] Add the mob-force declaration --- assets/css/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/css/main.css b/assets/css/main.css index 127eb72..5e912ec 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -273,5 +273,6 @@ body:not([class*="template-boxed"], [class*="template-blank"]) footer { margin-t @media (max-width: 599px) { /* Force behavior on mobile */ .mob-force-flexwrap {flex-wrap: wrap !important;} + .mob-force-flexdir-columns {flex-direction: column !important;} .mob-minheight-no {min-height: unset !important;} } \ No newline at end of file From 71fd78f6fd12c2dc39fe94688478e7b0e234c5ae Mon Sep 17 00:00:00 2001 From: Slobodan Date: Sun, 31 Mar 2024 13:06:06 +0200 Subject: [PATCH 04/73] Add the mob-display-out declaration --- assets/css/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/css/main.css b/assets/css/main.css index 5e912ec..26ea170 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -275,4 +275,5 @@ body:not([class*="template-boxed"], [class*="template-blank"]) footer { margin-t .mob-force-flexwrap {flex-wrap: wrap !important;} .mob-force-flexdir-columns {flex-direction: column !important;} .mob-minheight-no {min-height: unset !important;} + .mob-display-out { display: none !important;} } \ No newline at end of file From 3e0e3f1cf0cd576da2d0f58758207580b181ca43 Mon Sep 17 00:00:00 2001 From: Slobodan Date: Thu, 11 Apr 2024 18:38:11 +0200 Subject: [PATCH 05/73] Set the text-shadow to none on "ice-mark" classes --- assets/css/editor-style.css | 2 +- assets/css/main.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/editor-style.css b/assets/css/editor-style.css index 65547ba..a42e91e 100644 --- a/assets/css/editor-style.css +++ b/assets/css/editor-style.css @@ -86,7 +86,7 @@ .is-style-icecubo-mix-colors-to-light {background: linear-gradient(to right, var(--wp--preset--color--primary), var(--wp--preset--color--primaryish-light));} /* Marking a chunk of text with a UI highlighter and adding a following class */ -[class*="ice-mark"] mark {background-clip: text !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;} +[class*="ice-mark"] mark {background-clip: text !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; text-shadow: none !important;} .ice-mark-mix mark {background: linear-gradient(199deg, var(--wp--preset--color--shade-3) 40%, var(--wp--preset--color--friend-dark) 50%, var(--wp--preset--color--primary) 70%, var(--wp--preset--color--highlight-1) 100%);} .ice-mark-mix-light mark {background: linear-gradient(199deg, var(--wp--preset--color--shade-2) 40%, var(--wp--preset--color--friend-light) 50%, var(--wp--preset--color--primary) 70%, var(--wp--preset--color--highlight-1) 100%);} .ice-mark-to-light mark {background: linear-gradient(to right, var(--wp--preset--color--primary), var(--wp--preset--color--primaryish-light));} diff --git a/assets/css/main.css b/assets/css/main.css index 26ea170..aeeb367 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -166,7 +166,7 @@ body:not([class*="template-boxed"], [class*="template-blank"]) footer { margin-t .is-style-icecubo-mix-colors-to-light {background: linear-gradient(to right, var(--wp--preset--color--primary), var(--wp--preset--color--primaryish-light));} /* Marking a chunk of text with a UI highlighter and adding a following class */ -[class*="ice-mark"] mark {background-clip: text !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;} +[class*="ice-mark"] mark {background-clip: text !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;text-shadow: none !important;} .ice-mark-mix mark {background: linear-gradient(199deg, var(--wp--preset--color--shade-3) 40%, var(--wp--preset--color--friend-dark) 50%, var(--wp--preset--color--primary) 70%, var(--wp--preset--color--highlight-1) 100%);} .ice-mark-mix-light mark {background: linear-gradient(199deg, var(--wp--preset--color--shade-2) 40%, var(--wp--preset--color--friend-light) 50%, var(--wp--preset--color--primary) 70%, var(--wp--preset--color--highlight-1) 100%);} .ice-mark-to-light mark {background: linear-gradient(to right, var(--wp--preset--color--primary), var(--wp--preset--color--primaryish-light));} From 983ecb175cbeab382b58c095e2093f03c2df80c8 Mon Sep 17 00:00:00 2001 From: Slobodan Date: Mon, 22 Apr 2024 14:13:26 +0200 Subject: [PATCH 06/73] opacity for the ice-mark class --- assets/css/editor-style.css | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/assets/css/editor-style.css b/assets/css/editor-style.css index a42e91e..a6d44ec 100644 --- a/assets/css/editor-style.css +++ b/assets/css/editor-style.css @@ -85,13 +85,11 @@ .is-style-icecubo-mix-colors-focus {background: radial-gradient(var(--wp--preset--color--shade-1) 25%, var(--wp--preset--color--darko) 75%);} .is-style-icecubo-mix-colors-to-light {background: linear-gradient(to right, var(--wp--preset--color--primary), var(--wp--preset--color--primaryish-light));} -/* Marking a chunk of text with a UI highlighter and adding a following class */ -[class*="ice-mark"] mark {background-clip: text !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; text-shadow: none !important;} -.ice-mark-mix mark {background: linear-gradient(199deg, var(--wp--preset--color--shade-3) 40%, var(--wp--preset--color--friend-dark) 50%, var(--wp--preset--color--primary) 70%, var(--wp--preset--color--highlight-1) 100%);} -.ice-mark-mix-light mark {background: linear-gradient(199deg, var(--wp--preset--color--shade-2) 40%, var(--wp--preset--color--friend-light) 50%, var(--wp--preset--color--primary) 70%, var(--wp--preset--color--highlight-1) 100%);} -.ice-mark-to-light mark {background: linear-gradient(to right, var(--wp--preset--color--primary), var(--wp--preset--color--primaryish-light));} -.ice-mark-focus mark {background: radial-gradient(var(--wp--preset--color--shade-1) 25%, var(--wp--preset--color--darko) 75%);} -.ice-mark-pick mark {background: radial-gradient(currentColor, var(--wp--preset--color--darko) 75%)} +/** + * Marking a chunk of text with a UI highlighter and adding a following class + * In the Editor just mark it with opacity, it cannot perform the "ice-mark" effect on the highlighter + */ +[class*="ice-mark"] mark {opacity: .5;} /* Search box - border-radius is set for all buttons, but inside the editor it isn't picking the radius on the search box */ .wp-block-search .wp-block-search__button { border-radius: var(--wp--custom--radius-large); } From 7907c73dc76ef71200fa30ffa136f3d59a48f253 Mon Sep 17 00:00:00 2001 From: Slobodan Date: Mon, 22 Apr 2024 14:24:06 +0200 Subject: [PATCH 07/73] Padding for the search button --- assets/css/main.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/css/main.css b/assets/css/main.css index aeeb367..c7f32f0 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -187,6 +187,8 @@ body:not([class*="template-boxed"], [class*="template-blank"]) footer { margin-t border-radius: var(--wp--custom--radius-large); max-width: none; } +/*...Also the padding for the search button is necessary */ +.wp-block-search__button {padding: .75em 1.75em} /** * Group/cover block. From cb591858c40cf061779c33b63515929519bc3abc Mon Sep 17 00:00:00 2001 From: Slobodan Date: Mon, 22 Apr 2024 18:55:47 +0200 Subject: [PATCH 08/73] Padding for the search button --- assets/css/editor-style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/css/editor-style.css b/assets/css/editor-style.css index a6d44ec..36f3762 100644 --- a/assets/css/editor-style.css +++ b/assets/css/editor-style.css @@ -100,6 +100,9 @@ */ .wp-block-search.wp-block-search__button-only .wp-block-search__button { max-width: none; } +/*...Also the padding for the search button is necessary */ +.wp-block-search__button {padding: .75em 1.75em} + /* Preformatted text in the "Classic block" */ .wp-block-freeform.block-library-rich-text__tinymce pre { color: inherit; } From 68da8f1feccfc599c134c9bb0fcbb722db5b7063 Mon Sep 17 00:00:00 2001 From: Slobodan Date: Tue, 23 Apr 2024 13:03:08 +0200 Subject: [PATCH 09/73] Add the min-height for the wrapper group --- templates/search.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/search.html b/templates/search.html index 9af0fd6..bd8cd8c 100644 --- a/templates/search.html +++ b/templates/search.html @@ -1,6 +1,6 @@ - -
+ +
From e387378fcb353551c532cfe2c0324b8feedcf668 Mon Sep 17 00:00:00 2001 From: Slobodan Date: Tue, 23 Apr 2024 13:05:02 +0200 Subject: [PATCH 10/73] Insert the pattern query-part-no-results --- patterns/query-basic-list.php | 1 + 1 file changed, 1 insertion(+) diff --git a/patterns/query-basic-list.php b/patterns/query-basic-list.php index d4dca53..87b8dff 100644 --- a/patterns/query-basic-list.php +++ b/patterns/query-basic-list.php @@ -24,5 +24,6 @@ +
\ No newline at end of file From f82e055c03e08a3aa2deb1d362ee18e38871bea0 Mon Sep 17 00:00:00 2001 From: Slobodan Date: Tue, 23 Apr 2024 13:08:49 +0200 Subject: [PATCH 11/73] Rename the file & add the text 'No results.' --- patterns/{query-no-results.php => query-part-no-results.php} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename patterns/{query-no-results.php => query-part-no-results.php} (94%) diff --git a/patterns/query-no-results.php b/patterns/query-part-no-results.php similarity index 94% rename from patterns/query-no-results.php rename to patterns/query-part-no-results.php index 53d1205..ecd2338 100644 --- a/patterns/query-no-results.php +++ b/patterns/query-part-no-results.php @@ -9,6 +9,6 @@ ?> -

+

No results.

\ No newline at end of file From 2c66a7a9b68b87c568f99763ffd4a27d2c316d41 Mon Sep 17 00:00:00 2001 From: Slobodan Date: Tue, 23 Apr 2024 20:03:50 +0200 Subject: [PATCH 12/73] Set a color at the wrapper group --- patterns/section-group-features-headings-asterisk.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patterns/section-group-features-headings-asterisk.php b/patterns/section-group-features-headings-asterisk.php index b673edc..90108ae 100644 --- a/patterns/section-group-features-headings-asterisk.php +++ b/patterns/section-group-features-headings-asterisk.php @@ -6,8 +6,8 @@ * Categories: icecubo-section */ ?> - -
+ +

Lorem ipsum sit amet, consectetur a adipiscing

From ca2974938e03e87f8fdb4aeac6bed6d31342951f Mon Sep 17 00:00:00 2001 From: Slobodan Date: Tue, 23 Apr 2024 20:09:52 +0200 Subject: [PATCH 13/73] Additional styling for the oval/square byline and terms --- assets/css/main.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/assets/css/main.css b/assets/css/main.css index c7f32f0..4350095 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -209,6 +209,7 @@ body:not([class*="template-boxed"], [class*="template-blank"]) footer { margin-t */ .is-style-icecubo-square-post-byline { background: var(--wp--preset--color--white-ice); + color: var(--wp--preset--color--darko-down-bottom); border-radius: var(--wp--custom--radius-small); padding-left: var(--wp--custom--spacing-s); padding-right: var(--wp--custom--spacing-s); @@ -216,6 +217,7 @@ body:not([class*="template-boxed"], [class*="template-blank"]) footer { margin-t .is-style-icecubo-oval-post-byline { background: var(--wp--preset--color--white-ice); + color: var(--wp--preset--color--darko-down-bottom); border-radius: var(--wp--custom--radius-middle); padding-left: var(--wp--custom--spacing-s); padding-right: var(--wp--custom--spacing-s); @@ -240,11 +242,13 @@ body:not([class*="template-boxed"], [class*="template-blank"]) footer { margin-t */ .is-style-icecubo-each-square-post-byline a { background: var(--wp--preset--color--white-ice); + color: var(--wp--preset--color--darko-down-bottom); border-radius: var(--wp--custom--radius-small); } .is-style-icecubo-each-oval-post-byline a { background: var(--wp--preset--color--white-ice); + color: var(--wp--preset--color--darko-down-bottom); border-radius: var(--wp--custom--radius-middle); } @@ -253,6 +257,13 @@ body:not([class*="template-boxed"], [class*="template-blank"]) footer { margin-t border-radius: var(--wp--custom--radius-middle); } +.is-style-icecubo-square-post-byline.wp-block-post-terms, +.is-style-icecubo-oval-post-byline.wp-block-post-terms, +.is-style-icecubo-each-square-post-byline.wp-block-post-terms a, +.is-style-icecubo-each-oval-post-byline.wp-block-post-terms a { + font-weight: bold; +} + .is-style-icecubo-each-square-post-byline.wp-block-post-terms a, .is-style-icecubo-each-oval-post-byline.wp-block-post-terms a, .is-style-icecubo-each-outline-post-byline.wp-block-post-terms a { From 580f4d35639b87383b680f12eb115d46f69dec3a Mon Sep 17 00:00:00 2001 From: Slobodan Date: Tue, 23 Apr 2024 20:19:21 +0200 Subject: [PATCH 14/73] Remove the text color for the core/post-template --- styles/blackberry.json | 5 ----- styles/blackcherry.json | 5 ----- styles/blackkumquat.json | 5 ----- styles/blacklemon.json | 3 --- 4 files changed, 18 deletions(-) diff --git a/styles/blackberry.json b/styles/blackberry.json index ea05c90..3be71a4 100644 --- a/styles/blackberry.json +++ b/styles/blackberry.json @@ -321,11 +321,6 @@ } }, "blocks": { - "core/post-template": { - "color": { - "text": "var(--wp--preset--color--darko-down-bottom)" - } - }, "core/query-pagination": { "color": { "background": "inherit" diff --git a/styles/blackcherry.json b/styles/blackcherry.json index 2d7e3ac..ef9aac5 100644 --- a/styles/blackcherry.json +++ b/styles/blackcherry.json @@ -307,11 +307,6 @@ }, "styles": { "blocks": { - "core/post-template": { - "color": { - "text": "var(--wp--preset--color--darko-down-bottom)" - } - }, "core/query-pagination": { "border": { "color": "var(--wp--preset--color--tint-2)", diff --git a/styles/blackkumquat.json b/styles/blackkumquat.json index f23c2a4..db92860 100644 --- a/styles/blackkumquat.json +++ b/styles/blackkumquat.json @@ -306,11 +306,6 @@ }, "styles": { "blocks": { - "core/post-template": { - "color": { - "text": "var(--wp--preset--color--darko-down-bottom)" - } - }, "core/query-pagination": { "border": { "color": "var(--wp--preset--color--tint-2)", diff --git a/styles/blacklemon.json b/styles/blacklemon.json index 5cdba18..2006c20 100644 --- a/styles/blacklemon.json +++ b/styles/blacklemon.json @@ -322,9 +322,6 @@ }, "blocks": { "core/post-template": { - "color": { - "text": "var(--wp--preset--color--darko-down-bottom)" - }, "elements": { "link": { "color": { From 5284d5a287165ed851bbe1daac9190a60c5246d3 Mon Sep 17 00:00:00 2001 From: Slobodan Date: Tue, 23 Apr 2024 20:39:43 +0200 Subject: [PATCH 15/73] Change the Twitter occurrence to X --- patterns/box-author-2columns.php | 2 +- patterns/box-author.php | 2 +- patterns/footer-basic-stack.php | 2 +- patterns/footer-three-floors.php | 2 +- patterns/footer-title-links-soc.php | 2 +- patterns/footer-title-nav-soc.php | 2 +- patterns/footer-two-floors-gradual-glowing-bg.php | 2 +- patterns/footer-two-floors-lagre-cta.php | 2 +- patterns/footer-two-floors-large-searchbox.php | 2 +- patterns/footer-two-floors.php | 2 +- patterns/general-team-basic.php | 6 +++--- patterns/general-team-bg-basic.php | 6 +++--- patterns/header-logo-nav-soc.php | 2 +- patterns/header-narrow-logo-nav-pushed-soc.php | 2 +- ...ection-columns-team-radial-gradient-message-center.php | 8 ++++---- .../section-columns-team-radial-gradient-message-left.php | 8 ++++---- 16 files changed, 26 insertions(+), 26 deletions(-) diff --git a/patterns/box-author-2columns.php b/patterns/box-author-2columns.php index 29323eb..b40f980 100644 --- a/patterns/box-author-2columns.php +++ b/patterns/box-author-2columns.php @@ -26,7 +26,7 @@ - +
diff --git a/patterns/box-author.php b/patterns/box-author.php index 2349bf7..f93fbab 100644 --- a/patterns/box-author.php +++ b/patterns/box-author.php @@ -22,6 +22,6 @@ - +
\ No newline at end of file diff --git a/patterns/footer-basic-stack.php b/patterns/footer-basic-stack.php index cc420e1..0c259af 100644 --- a/patterns/footer-basic-stack.php +++ b/patterns/footer-basic-stack.php @@ -15,7 +15,7 @@ diff --git a/patterns/footer-three-floors.php b/patterns/footer-three-floors.php index 9e0d3cc..ca704fc 100644 --- a/patterns/footer-three-floors.php +++ b/patterns/footer-three-floors.php @@ -99,7 +99,7 @@
diff --git a/patterns/footer-title-links-soc.php b/patterns/footer-title-links-soc.php index 284c233..0d89cd5 100644 --- a/patterns/footer-title-links-soc.php +++ b/patterns/footer-title-links-soc.php @@ -24,7 +24,7 @@
diff --git a/patterns/footer-title-nav-soc.php b/patterns/footer-title-nav-soc.php index e7304c2..b4f22c9 100644 --- a/patterns/footer-title-nav-soc.php +++ b/patterns/footer-title-nav-soc.php @@ -22,7 +22,7 @@
diff --git a/patterns/footer-two-floors-gradual-glowing-bg.php b/patterns/footer-two-floors-gradual-glowing-bg.php index 99cefa2..84fd619 100644 --- a/patterns/footer-two-floors-gradual-glowing-bg.php +++ b/patterns/footer-two-floors-gradual-glowing-bg.php @@ -30,7 +30,7 @@
diff --git a/patterns/footer-two-floors-lagre-cta.php b/patterns/footer-two-floors-lagre-cta.php index 80b05f1..1b0e6b7 100644 --- a/patterns/footer-two-floors-lagre-cta.php +++ b/patterns/footer-two-floors-lagre-cta.php @@ -39,7 +39,7 @@ diff --git a/patterns/footer-two-floors-large-searchbox.php b/patterns/footer-two-floors-large-searchbox.php index 3f72662..3ed8adb 100644 --- a/patterns/footer-two-floors-large-searchbox.php +++ b/patterns/footer-two-floors-large-searchbox.php @@ -34,7 +34,7 @@ -

Twitter

+

X

diff --git a/patterns/footer-two-floors.php b/patterns/footer-two-floors.php index 7c50a37..2949974 100644 --- a/patterns/footer-two-floors.php +++ b/patterns/footer-two-floors.php @@ -85,7 +85,7 @@ diff --git a/patterns/general-team-basic.php b/patterns/general-team-basic.php index fd901d4..0788292 100644 --- a/patterns/general-team-basic.php +++ b/patterns/general-team-basic.php @@ -23,7 +23,7 @@ @@ -45,7 +45,7 @@ @@ -67,7 +67,7 @@ diff --git a/patterns/general-team-bg-basic.php b/patterns/general-team-bg-basic.php index e9ec8b1..57cda9a 100644 --- a/patterns/general-team-bg-basic.php +++ b/patterns/general-team-bg-basic.php @@ -24,7 +24,7 @@ @@ -48,7 +48,7 @@ @@ -72,7 +72,7 @@ diff --git a/patterns/header-logo-nav-soc.php b/patterns/header-logo-nav-soc.php index 0eddefc..1c19823 100644 --- a/patterns/header-logo-nav-soc.php +++ b/patterns/header-logo-nav-soc.php @@ -18,7 +18,7 @@ diff --git a/patterns/header-narrow-logo-nav-pushed-soc.php b/patterns/header-narrow-logo-nav-pushed-soc.php index e4d5d7a..c7acc57 100644 --- a/patterns/header-narrow-logo-nav-pushed-soc.php +++ b/patterns/header-narrow-logo-nav-pushed-soc.php @@ -18,7 +18,7 @@ diff --git a/patterns/section-columns-team-radial-gradient-message-center.php b/patterns/section-columns-team-radial-gradient-message-center.php index 51989d0..36c8a25 100644 --- a/patterns/section-columns-team-radial-gradient-message-center.php +++ b/patterns/section-columns-team-radial-gradient-message-center.php @@ -24,7 +24,7 @@ @@ -50,7 +50,7 @@ @@ -82,7 +82,7 @@ @@ -108,7 +108,7 @@ diff --git a/patterns/section-columns-team-radial-gradient-message-left.php b/patterns/section-columns-team-radial-gradient-message-left.php index 5c3b613..a3ea95f 100644 --- a/patterns/section-columns-team-radial-gradient-message-left.php +++ b/patterns/section-columns-team-radial-gradient-message-left.php @@ -34,7 +34,7 @@ @@ -60,7 +60,7 @@ @@ -84,7 +84,7 @@ @@ -110,7 +110,7 @@ From afc02dae678235f2df049e1177c27bb31fc4ad5c Mon Sep 17 00:00:00 2001 From: Slobodan Date: Wed, 24 Apr 2024 19:09:11 +0200 Subject: [PATCH 16/73] Change the color of the list items --- patterns/pricing-colorized-3.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/patterns/pricing-colorized-3.php b/patterns/pricing-colorized-3.php index 8fbcb10..c40b077 100644 --- a/patterns/pricing-colorized-3.php +++ b/patterns/pricing-colorized-3.php @@ -26,8 +26,8 @@ - - - + \ No newline at end of file diff --git a/patterns/header-basic-wide.php b/patterns/header-basic-wide.php index 9d379b6..4ee693f 100644 --- a/patterns/header-basic-wide.php +++ b/patterns/header-basic-wide.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - -
+ +
@@ -20,5 +20,5 @@
-
+ \ No newline at end of file diff --git a/patterns/header-basic.php b/patterns/header-basic.php index 4db122e..80c5f22 100644 --- a/patterns/header-basic.php +++ b/patterns/header-basic.php @@ -7,8 +7,8 @@ * Inserter:false */ ?> - -
+ +
@@ -20,5 +20,5 @@
-
+ \ No newline at end of file diff --git a/patterns/header-cover-gradient-light.php b/patterns/header-cover-gradient-light.php index f41d7ee..c0b1a06 100644 --- a/patterns/header-cover-gradient-light.php +++ b/patterns/header-cover-gradient-light.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - - + \ No newline at end of file diff --git a/patterns/header-cover-gradient.php b/patterns/header-cover-gradient.php index 090fc8e..900a72c 100644 --- a/patterns/header-cover-gradient.php +++ b/patterns/header-cover-gradient.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - -
+ +
@@ -22,5 +22,5 @@
-
+ \ No newline at end of file diff --git a/patterns/header-hero-cover-gradient-diagonal-transit-media-text-cta.php b/patterns/header-hero-cover-gradient-diagonal-transit-media-text-cta.php index f440481..b6026fa 100644 --- a/patterns/header-hero-cover-gradient-diagonal-transit-media-text-cta.php +++ b/patterns/header-hero-cover-gradient-diagonal-transit-media-text-cta.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - -
+ +
@@ -50,5 +50,5 @@
-
+ \ No newline at end of file diff --git a/patterns/header-hero-cover-overlap-cta-large-image.php b/patterns/header-hero-cover-overlap-cta-large-image.php index 16ab53a..943f3f5 100644 --- a/patterns/header-hero-cover-overlap-cta-large-image.php +++ b/patterns/header-hero-cover-overlap-cta-large-image.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - - + \ No newline at end of file diff --git a/patterns/header-hero-gradient-gradual-dark-primary.php b/patterns/header-hero-gradient-gradual-dark-primary.php index b03e879..37ef178 100644 --- a/patterns/header-hero-gradient-gradual-dark-primary.php +++ b/patterns/header-hero-gradient-gradual-dark-primary.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - -
+ +
@@ -44,5 +44,5 @@
-
+ \ No newline at end of file diff --git a/patterns/header-hero-gradient-rushly-primary-transparent.php b/patterns/header-hero-gradient-rushly-primary-transparent.php index 178ef72..7faf883 100644 --- a/patterns/header-hero-gradient-rushly-primary-transparent.php +++ b/patterns/header-hero-gradient-rushly-primary-transparent.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - - + \ No newline at end of file diff --git a/patterns/header-hero-two-columns-cta-above-wide-img.php b/patterns/header-hero-two-columns-cta-above-wide-img.php index 1b52a4b..d8f3b70 100644 --- a/patterns/header-hero-two-columns-cta-above-wide-img.php +++ b/patterns/header-hero-two-columns-cta-above-wide-img.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - -
+ +
@@ -81,5 +81,5 @@
-
+ \ No newline at end of file diff --git a/patterns/header-logo-between-nav-centered.php b/patterns/header-logo-between-nav-centered.php index c03faac..dc9a783 100644 --- a/patterns/header-logo-between-nav-centered.php +++ b/patterns/header-logo-between-nav-centered.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - -
+ +
@@ -18,5 +18,5 @@ -
+ \ No newline at end of file diff --git a/patterns/header-logo-nav-soc.php b/patterns/header-logo-nav-soc.php index 1c19823..4a35cd4 100644 --- a/patterns/header-logo-nav-soc.php +++ b/patterns/header-logo-nav-soc.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - -
+ +
@@ -22,5 +22,5 @@
-
+ \ No newline at end of file diff --git a/patterns/header-narrow-logo-nav-pushed-buttons.php b/patterns/header-narrow-logo-nav-pushed-buttons.php index 2a94dee..cb92228 100644 --- a/patterns/header-narrow-logo-nav-pushed-buttons.php +++ b/patterns/header-narrow-logo-nav-pushed-buttons.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - - + \ No newline at end of file diff --git a/patterns/header-narrow-logo-nav-pushed-login.php b/patterns/header-narrow-logo-nav-pushed-login.php index e0a31f2..bffe9df 100644 --- a/patterns/header-narrow-logo-nav-pushed-login.php +++ b/patterns/header-narrow-logo-nav-pushed-login.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - - + \ No newline at end of file diff --git a/patterns/header-narrow-logo-nav-pushed-soc.php b/patterns/header-narrow-logo-nav-pushed-soc.php index c7acc57..9c2104d 100644 --- a/patterns/header-narrow-logo-nav-pushed-soc.php +++ b/patterns/header-narrow-logo-nav-pushed-soc.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - - + \ No newline at end of file diff --git a/patterns/header-two-floors.php b/patterns/header-two-floors.php index 89d9f6b..e5e0447 100644 --- a/patterns/header-two-floors.php +++ b/patterns/header-two-floors.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - - + \ No newline at end of file From c530ac11d237b27e15a4dea70399ca1ba697f135 Mon Sep 17 00:00:00 2001 From: Slobodan Date: Sun, 30 Jun 2024 15:00:21 +0200 Subject: [PATCH 53/73] Change the padding-top of the wrapper cover --- ...-hero-cover-gradient-diagonal-transit-media-text-cta.php | 6 +++--- patterns/header-hero-cover-overlap-cta-large-image.php | 4 ++-- patterns/header-hero-gradient-gradual-dark-primary.php | 6 +++--- .../header-hero-gradient-rushly-primary-transparent.php | 6 +++--- patterns/header-hero-two-columns-cta-above-wide-img.php | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/patterns/header-hero-cover-gradient-diagonal-transit-media-text-cta.php b/patterns/header-hero-cover-gradient-diagonal-transit-media-text-cta.php index b6026fa..3449bdf 100644 --- a/patterns/header-hero-cover-gradient-diagonal-transit-media-text-cta.php +++ b/patterns/header-hero-cover-gradient-diagonal-transit-media-text-cta.php @@ -7,9 +7,9 @@ * Block Types: core/template-part/header */ ?> - -
-
+ +
+
diff --git a/patterns/header-hero-cover-overlap-cta-large-image.php b/patterns/header-hero-cover-overlap-cta-large-image.php index 943f3f5..04ea24f 100644 --- a/patterns/header-hero-cover-overlap-cta-large-image.php +++ b/patterns/header-hero-cover-overlap-cta-large-image.php @@ -7,8 +7,8 @@ * Block Types: core/template-part/header */ ?> - -