From 38ea9aa4e701371615182315971cce07ba264f91 Mon Sep 17 00:00:00 2001 From: BG-Software <73077398+BG-Software-BG@users.noreply.github.com> Date: Fri, 16 May 2025 22:26:25 +0200 Subject: [PATCH 1/5] Use primary color for `::selection` inside `` in docs (#2382) --- .changeset/grumpy-bobcats-kick.md | 5 +++++ docs/scss/docs.scss | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 .changeset/grumpy-bobcats-kick.md diff --git a/.changeset/grumpy-bobcats-kick.md b/.changeset/grumpy-bobcats-kick.md new file mode 100644 index 000000000..b937b5451 --- /dev/null +++ b/.changeset/grumpy-bobcats-kick.md @@ -0,0 +1,5 @@ +--- +"@tabler/docs": patch +--- + +Use primary color for `::selection` inside `` in docs diff --git a/docs/scss/docs.scss b/docs/scss/docs.scss index e8146bb76..72c116955 100644 --- a/docs/scss/docs.scss +++ b/docs/scss/docs.scss @@ -53,3 +53,9 @@ background: var(--tblr-gray-900) !important; color: var(--tblr-gray-300) !important; } + +code { + ::selection { + background: var(--tblr-primary); + } +} From 3a02ef9c55154005d633794f9d6a16795b7bc466 Mon Sep 17 00:00:00 2001 From: ethancrawford Date: Sat, 17 May 2025 04:27:18 +0800 Subject: [PATCH 2/5] Prevent some marketing site rows overflowing on mobile (#2375) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com> --- .changeset/giant-ligers-joke.md | 5 +++++ preview/pages/marketing/real-estate.html | 4 ++-- shared/includes/marketing/hero/side.html | 2 +- shared/includes/marketing/sections/companies.html | 2 +- shared/includes/marketing/sections/faq.html | 2 +- shared/includes/marketing/sections/features-2.html | 2 +- shared/includes/marketing/sections/features-3.html | 2 +- shared/includes/marketing/sections/testimonials.html | 4 ++-- shared/layouts/marketing.html | 8 ++++---- 9 files changed, 18 insertions(+), 13 deletions(-) create mode 100644 .changeset/giant-ligers-joke.md diff --git a/.changeset/giant-ligers-joke.md b/.changeset/giant-ligers-joke.md new file mode 100644 index 000000000..c81a7ccb7 --- /dev/null +++ b/.changeset/giant-ligers-joke.md @@ -0,0 +1,5 @@ +--- +"@tabler/core": patch +--- + +Fix some marketing site rows overflowing on mobile diff --git a/preview/pages/marketing/real-estate.html b/preview/pages/marketing/real-estate.html index cb880515a..e0cdc4416 100644 --- a/preview/pages/marketing/real-estate.html +++ b/preview/pages/marketing/real-estate.html @@ -8,7 +8,7 @@ permalink: marketing/real-estate.html

Find your forever home

It's time to find the home of your dreams, and you search begins here. We make it easy to find the property that fits your needs and budget.

-
+
@@ -25,7 +25,7 @@ permalink: marketing/real-estate.html
{% include "marketing/section-divider.html" divider="arc" %}
-
+
{% for building in real-estate %}
diff --git a/shared/includes/marketing/hero/side.html b/shared/includes/marketing/hero/side.html index 7ab6abc57..cbdce8aaa 100644 --- a/shared/includes/marketing/hero/side.html +++ b/shared/includes/marketing/hero/side.html @@ -1,6 +1,6 @@
-
+
Tabler Emails

diff --git a/shared/includes/marketing/sections/companies.html b/shared/includes/marketing/sections/companies.html index 71c123b8a..57aca9f59 100644 --- a/shared/includes/marketing/sections/companies.html +++ b/shared/includes/marketing/sections/companies.html @@ -4,7 +4,7 @@

Trusted by over 3,000 companies

-
+
diff --git a/shared/includes/marketing/sections/faq.html b/shared/includes/marketing/sections/faq.html index 02e84cd43..411d9ca3a 100644 --- a/shared/includes/marketing/sections/faq.html +++ b/shared/includes/marketing/sections/faq.html @@ -3,7 +3,7 @@

Frequently Asked Questions

-
+

How is Tabler Pro different from Tabler?

Tabler offers fundamental components that you can piece together to build your app or website. However, Tabler Pro offers an elevated convenience by providing pre-assembled components and page templates, acting as ready-to-use building blocks that can be swiftly integrated into your app, thereby saving development time.

diff --git a/shared/includes/marketing/sections/features-2.html b/shared/includes/marketing/sections/features-2.html index 90e1c4fb2..bbdcfb10d 100644 --- a/shared/includes/marketing/sections/features-2.html +++ b/shared/includes/marketing/sections/features-2.html @@ -6,7 +6,7 @@
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
-
+
{% include "ui/svg.html" width=500 height=400 border=true %}
diff --git a/shared/includes/marketing/sections/features-3.html b/shared/includes/marketing/sections/features-3.html index 51d9c61b4..d77f7b408 100644 --- a/shared/includes/marketing/sections/features-3.html +++ b/shared/includes/marketing/sections/features-3.html @@ -6,7 +6,7 @@
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
-
+
diff --git a/shared/includes/marketing/sections/testimonials.html b/shared/includes/marketing/sections/testimonials.html index 416585f93..5e69adf16 100644 --- a/shared/includes/marketing/sections/testimonials.html +++ b/shared/includes/marketing/sections/testimonials.html @@ -9,12 +9,12 @@
{% endunless %} -
+
{% assign i = 1 %} {% assign filtered-testimonials = testimonials | slice: 0, limit | split_to_n: 3 %} {% for group in filtered-testimonials %}
-
+
{% for testimonial in group %} {% assign person = people[i] %}
diff --git a/shared/layouts/marketing.html b/shared/layouts/marketing.html index ae80f3b31..40fab107d 100644 --- a/shared/layouts/marketing.html +++ b/shared/layouts/marketing.html @@ -11,9 +11,9 @@ plugins: marketing