Usuniecie zbędnych image, dodanie id dla input wyszukiwania

This commit is contained in:
dm
2025-12-15 06:47:29 +01:00
parent 0b6bbbdce7
commit c0b9d5a584
14 changed files with 5 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -12,7 +12,6 @@ const section = props.section ?? {};
{section.title && <h2 class="f-section-title">{section.title}</h2>} {section.title && <h2 class="f-section-title">{section.title}</h2>}
{section.content && <Markdown text={section.content} />} {section.content && <Markdown text={section.content} />}
{/* wyszukiwarka działa na API/DB */}
<TvChannelsSearch client:load /> <TvChannelsSearch client:load />
{section.button && ( {section.button && (

View File

@@ -1,6 +1,6 @@
sections: sections:
- title: "Dekoder Arris 4302 HD" - title: "Dekoder Arris 4302 HD"
image: "VIP4302.png" image: "arris4302.webp"
button: button:
text: "Zobacz możliwości dekodera →" text: "Zobacz możliwości dekodera →"
url: "/internet-telewizja/telewizja-mozliwosci" url: "/internet-telewizja/telewizja-mozliwosci"
@@ -21,7 +21,7 @@ sections:
- Wymiary modelu (szer/dł/wys): 130 x 130 x 26 mm - Wymiary modelu (szer/dł/wys): 130 x 130 x 26 mm
- title: "Dekoder Arris 5202-4k" - title: "Dekoder Arris 5202-4k"
image: "arris5202.png" image: "arris5202.webp"
button: button:
text: "Zobacz możliwości dekodera →" text: "Zobacz możliwości dekodera →"
url: "/internet-telewizja/telewizja-mozliwosci" url: "/internet-telewizja/telewizja-mozliwosci"

View File

@@ -97,6 +97,7 @@ export default function JamboxChannelsModal({ isOpen, onClose, pkg }) {
<div class="f-chsearch__top"> <div class="f-chsearch__top">
<div class="f-chsearch__inputwrap"> <div class="f-chsearch__inputwrap">
<input <input
id="modal-channel-search"
class="f-chsearch__input" class="f-chsearch__input"
type="search" type="search"
value={query} value={query}
@@ -159,7 +160,7 @@ export default function JamboxChannelsModal({ isOpen, onClose, pkg }) {
)} )}
<div class="jmb-channel-name">{ch.name}</div> <div class="jmb-channel-name">{ch.name}</div>
</div> </div>
<div class="jmb-channel-face jmb-channel-back"> <div class="jmb-channel-face jmb-channel-back">

View File

@@ -87,6 +87,7 @@ function scrollToPackage(packageName) {
<div class="f-chsearch__top"> <div class="f-chsearch__top">
<div class="f-chsearch__inputwrap"> <div class="f-chsearch__inputwrap">
<input <input
id="channel-search"
class="f-chsearch__input" class="f-chsearch__input"
type="search" type="search"
value={q} value={q}