From 78adc3eddbaf8683c3bed4d2d788cc8c4d9bcd18 Mon Sep 17 00:00:00 2001 From: 0UserName <46850587+0UserName@users.noreply.github.com> Date: Sat, 5 Apr 2025 14:07:01 +0300 Subject: [PATCH 1/5] .content-align-justify added to _banner.scss --- assets/sass/components/_banner.scss | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/assets/sass/components/_banner.scss b/assets/sass/components/_banner.scss index a3ae207..0561b64 100644 --- a/assets/sass/components/_banner.scss +++ b/assets/sass/components/_banner.scss @@ -357,6 +357,10 @@ } } + &.content-align-justify { + text-align: justify; + } + // Image Position. &.image-position-left { .image { @@ -507,6 +511,10 @@ text-align: right; } + &.content-align-justify { + text-align: justify; + } + // Image Position. &.image-position-left { .image { @@ -662,6 +670,10 @@ text-align: right; } + &.content-align-justify { + text-align: justify; + } + // Image Position. &.image-position-left { .image { @@ -802,6 +814,10 @@ &.content-align-right { text-align: right; } + + &.content-align-justify { + text-align: justify; + } // Image Position. &.image-position-left { @@ -906,6 +922,10 @@ text-align: right; } + &.content-align-justify { + text-align: justify; + } + // Image Position. &.image-position-left { .image { @@ -988,4 +1008,4 @@ } } - @include color-banner; \ No newline at end of file + @include color-banner; From 8a11a52c592e905ec32b539cda159acdf74f612b Mon Sep 17 00:00:00 2001 From: 0UserName <46850587+0UserName@users.noreply.github.com> Date: Sat, 5 Apr 2025 14:08:33 +0300 Subject: [PATCH 2/5] .content-align-justify added to _spotlight.scss --- assets/sass/components/_spotlight.scss | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/assets/sass/components/_spotlight.scss b/assets/sass/components/_spotlight.scss index 0d081ad..da0e44e 100644 --- a/assets/sass/components/_spotlight.scss +++ b/assets/sass/components/_spotlight.scss @@ -346,6 +346,10 @@ text-align: right; } + &.content-align-justify { + text-align: justify; + } + // Image Position. &.image-position-left { .image { @@ -491,6 +495,10 @@ &.content-align-right { text-align: right; } + + &.content-align-justify { + text-align: justify; + } // Image Position. &.image-position-left { @@ -628,6 +636,10 @@ text-align: right; } + &.content-align-justify { + text-align: justify; + } + // Image Position. &.image-position-left { .image { @@ -784,6 +796,10 @@ text-align: right; } + &.content-align-justify { + text-align: justify; + } + // Image Position. &.image-position-left { .image { @@ -928,6 +944,10 @@ text-align: right; } + &.content-align-justify { + text-align: justify; + } + // Image Position. &.image-position-left { .image { @@ -1010,4 +1030,4 @@ } } - @include color-spotlight; \ No newline at end of file + @include color-spotlight; From 8d88181b11984dc528f33b3f040b868610079397 Mon Sep 17 00:00:00 2001 From: 0username Date: Wed, 13 Aug 2025 12:39:17 +0300 Subject: [PATCH 3/5] .align-justify added to _typography.scss --- assets/sass/base/_typography.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/sass/base/_typography.scss b/assets/sass/base/_typography.scss index 342c192..253fd9b 100644 --- a/assets/sass/base/_typography.scss +++ b/assets/sass/base/_typography.scss @@ -164,6 +164,10 @@ text-align: right; } + .align-justify { + text-align: justify; + } + .footerspacer { padding-left: 15px; padding-right: 15px; From 515d36ff31bf500c0ecc4041b2781b400dd692d0 Mon Sep 17 00:00:00 2001 From: 0username Date: Sat, 16 Aug 2025 00:54:59 +0300 Subject: [PATCH 4/5] .content-align-* added to _wrapper.scss --- assets/sass/components/_wrapper.scss | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/assets/sass/components/_wrapper.scss b/assets/sass/components/_wrapper.scss index d54f11f..c8b267a 100644 --- a/assets/sass/components/_wrapper.scss +++ b/assets/sass/components/_wrapper.scss @@ -46,6 +46,23 @@ @include padding(_size(padding, small) * 1.5, _size(padding, small)); } } + + // Content Alignment. + &.content-align-left { + // ... + } + + &.content-align-center { + text-align: center; + } + + &.content-align-right { + text-align: right; + } + + &.content-align-justify { + text-align: justify; + } } /* Wrapper (style2) */ @@ -104,6 +121,23 @@ @include padding(_size(padding, small), _size(padding, small) * 0.75); } } + + // Content Alignment. + &.content-align-left { + // ... + } + + &.content-align-center { + text-align: center; + } + + &.content-align-right { + text-align: right; + } + + &.content-align-justify { + text-align: justify; + } } #wrapper { From 9cf3c8673c3177f946d493ed03f8d655cbcf2c30 Mon Sep 17 00:00:00 2001 From: username Date: Sat, 25 Oct 2025 19:05:04 +0300 Subject: [PATCH 5/5] input[type="date"] and input[type="number"] added to _form.scss --- assets/sass/components/_form.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/assets/sass/components/_form.scss b/assets/sass/components/_form.scss index df7f199..f4d0c00 100644 --- a/assets/sass/components/_form.scss +++ b/assets/sass/components/_form.scss @@ -82,6 +82,8 @@ input[type="tel"], input[type="search"], input[type="url"], + input[type="date"], + input[type="number"], select, textarea { @include vendor('appearance', 'none'); @@ -126,6 +128,8 @@ input[type="tel"], input[type="search"], input[type="url"], + input[type="date"], + input[type="number"], select { height: _size(element-height); } @@ -222,6 +226,8 @@ input[type="tel"], input[type="search"], input[type="url"], + input[type="date"], + input[type="number"], select, textarea { border-color: _palette($p, border);