المكوّنات · شريط ببحث مركزي
شريط ببحث مركزي
البحث يتمدّد عند التركيز ويحتفظ بمساحته
12 تصاميم من هذه العائلة
<div class="nb nbs">
<header>
<span class="brand"><span class="mk">✚</span><span data-ar="صيدليات الشفاء" data-en="Shifa">صيدليات الشفاء</span></span>
<div class="sbx"><span aria-hidden="true">🔍</span>
<input type="search" aria-label="ابحث عن دواء" placeholder="ابحث عن دواء أو منتج…"
data-ar-ph="ابحث عن دواء أو منتج…" data-en-ph="Search medicine or product…"></div>
<button class="ic" aria-label="السلّة">🛒<span class="dot">3</span></button>
<button class="ic" aria-label="حسابي">◔</button>
</header>
<div class="stage">
<h4 data-ar="بحث مركزي" data-en="Centre search">بحث مركزي</h4>
<p data-ar="اضغط أي رابط ليصير الحالي. القوائم تُغلق بالهروب وبالضغط خارجها." data-en="Click any link to make it current. Menus close on Escape and outside click.">اضغط أي رابط ليصير الحالي. القوائم تُغلق بالهروب وبالضغط خارجها.</p>
</div>
</div>
/* pt-scoped */
/* navbar-search — صيدلية · 52px */
.nbs{width:100%;height:100%;display:flex;flex-direction:column;
font-size:10px;color:var(--pt-text-secondary);overflow:hidden;position:relative}
.nbs header{flex:none;display:flex;align-items:center;gap:9px;width:100%}
.nbs .brand{display:flex;align-items:center;gap:6px;font-weight:700;
color:var(--pt-text-primary);white-space:nowrap}
.nbs .brand .mk{display:grid;place-items:center;flex:none;font-size:10px}
.nbs nav{display:flex;align-items:center;gap:2px;min-width:0}
.nbs nav a{padding:5px 8px;color:var(--pt-text-muted);white-space:nowrap;cursor:pointer;
transition:color var(--pt-motion-duration-fast) var(--pt-motion-easing-standard),
background var(--pt-motion-duration-fast) var(--pt-motion-easing-standard)}
.nbs nav a:hover{color:var(--pt-text-primary)}
.nbs .grow{flex:1}
.nbs .stage{flex:1;display:flex;flex-direction:column;gap:5px;padding:10px;min-height:0}
.nbs .stage h4{margin:0;font-size:10.5px;color:var(--pt-text-primary)}
.nbs .stage p{margin:0;font-size:8.5px;color:var(--pt-text-muted);line-height:1.8}
.nbs button{font:inherit;cursor:pointer}
.nbs a:focus-visible, .nbs button:focus-visible, .nbs input:focus-visible{
outline:2px solid var(--pt-focus-ring);outline-offset:-1px}
.nbs header{height:52px;padding:0 11px;background:var(--pt-bg-inset);
border-bottom:1px solid var(--pt-border-subtle)}
.nbs .brand{font-size:10px}
.nbs .brand .mk{width:20px;height:20px;border-radius:var(--pt-radius-full);
background:color-mix(in srgb,var(--pt-accent) 22%,transparent);color:var(--pt-accent)}
.nbs .sbx{flex:1;display:flex;align-items:center;gap:6px;min-width:0;max-width:230px;
margin-inline:auto;padding:6px 11px;border-radius:var(--pt-radius-full);
border:1px solid var(--pt-border-default);background:var(--pt-surface);
transition:max-width var(--pt-motion-duration-normal) var(--pt-motion-easing-standard),
border-color var(--pt-motion-duration-fast) var(--pt-motion-easing-standard)}
.nbs .sbx:focus-within{max-width:300px;border-color:var(--pt-accent)}
.nbs .sbx input{flex:1;min-width:0;border:0;background:transparent;font:inherit;
font-size:9.5px;color:var(--pt-text-primary);outline:none}
.nbs .ic{position:relative;flex:none;width:28px;height:28px;border-radius:var(--pt-radius-full);
border:0;background:transparent;color:var(--pt-text-muted);font-size:12px}
.nbs .ic:hover{background:var(--pt-surface-hover);color:var(--pt-text-primary)}
.nbs .dot{position:absolute;inset-block-start:0;inset-inline-end:0;min-width:13px;height:13px;
border-radius:99px;background:var(--pt-accent);color:var(--pt-color-ink-900);
font-size:7.5px;display:grid;place-items:center;font-variant-numeric:tabular-nums}
/* يعمل داخل إطار معزول — لا يعتمد على شيء خارجه */
/* pt-remount — يعاد التركيب عند تبديل اللغة */
(function () {
var host = document.querySelector('.nbs');
if (!host) return;
var snapshot = host.innerHTML;
var timers = [];
var ac = null;
/* الجسم كما كتبه المولِّد. يستقبل بدائل مظلَّلة لـ root وdocument
والمؤقّتات، فينظّف نفسه دون أن يعرف أنه قابل لإعادة التركيب. */
function run(root, document, setTimeout, setInterval) {
/* تفعيل الرابط الحالي — سلوك مشترك بين كل الأشرطة */
var links = [].slice.call(root.querySelectorAll('nav a'));
links.forEach(function (a) {
a.addEventListener('click', function (e) {
e.preventDefault();
links.forEach(function (x) { x.removeAttribute('aria-current'); });
a.setAttribute('aria-current', 'page');
});
});
/* إغلاق أي قائمة مفتوحة بالهروب أو بالضغط خارجها */
function autoClose(btn, panel, onToggle) {
function set(v) {
panel.hidden = !v;
btn.setAttribute('aria-expanded', String(v));
if (onToggle) onToggle(v);
}
btn.addEventListener('click', function (e) { e.stopPropagation(); set(panel.hidden); });
panel.addEventListener('click', function (e) { e.stopPropagation(); });
document.addEventListener('click', function () { if (!panel.hidden) set(false); });
document.addEventListener('keydown', function (e) {
if (e.key === 'Escape' && !panel.hidden) { set(false); btn.focus(); }
});
return set;
}
}
function mount() {
ac = new AbortController();
var real = window.document;
/* وسيط يمرّر كل شيء إلى المستند الحقيقي، ويعلّق كل مستمع بإشارة
تُقطع عند إعادة التركيب — فلا يبقى مستمع من نسخة ماتت. */
var doc = new Proxy(real, {
get: function (t, k) {
if (k === 'addEventListener') {
return function (type, fn, opts) {
var o = (opts && typeof opts === 'object') ? Object.assign({}, opts)
: { capture: !!opts };
o.signal = ac.signal;
return t.addEventListener(type, fn, o);
};
}
var v = t[k];
return typeof v === 'function' ? v.bind(t) : v;
}
});
function track(fn) {
return function (f, ms) { var id = fn(f, ms); timers.push(id); return id; };
}
run(host, doc, track(window.setTimeout.bind(window)),
track(window.setInterval.bind(window)));
}
function unmount() {
if (ac) ac.abort();
// المعرّفان يتشاركان فضاءً واحدًا في المتصفّح، فالإلغاء المزدوج آمن
timers.forEach(function (id) { window.clearTimeout(id); window.clearInterval(id); });
timers = [];
host.innerHTML = snapshot;
}
mount();
addEventListener('pt-lang', function () { unmount(); mount(); });
})();
# Navbar with Centre Search
**Role:** You are an Arabic-first UI designer and front-end engineer. Read the whole
specification before writing a single line, then follow it literally. If two requirements
conflict, favour usability over visual effect.
**Goal:** Navbar with Centre Search — The search expands on focus without shifting the layout
**Why this component matters:** Expanding a search on focus must not reflow its neighbours; reserve the space with flex-basis so the bar does not jump under the pointer.
**Direction:** Genuine RTL — not a mirrored Latin layout. Use logical properties
(`margin-inline-start`, `padding-inline`, `inset-inline-start`, `text-align: start`),
never physical ones (`margin-left`, `left`). The layout must flip with `dir` on its own,
with no duplicated rules.
**Typography:** Cairo for Arabic, IBM Plex Sans for Latin. Arabic line-height must be
`0.18` higher than the Latin equivalent — dots, hamzas and maddas need more vertical room.
Arabic font-size runs `1.06×` the Latin size at the same optical weight.
**Numerals:** Western digits in both languages (`1,234.50`). Only the currency changes:
`ر.س` **after** the number in Arabic, `$` **before** it in English. Jordanian dinar
uses **three** decimal places, not two.
**Colors:** Dark mode — background `#0D142B` · surfaces `#211F54` · borders `#545C91` · text `#918FC2`.
Accent `#ADA9E8` must never exceed 8% of the screen area.
**Language:** Bilingual — every string carries both Arabic and English, and the layout
flips with `dir` automatically.
**States:** `default` · `hover` · `focus` · `active` · `disabled` · `loading` · `error`.
Do not design the resting state alone.
**Accessibility:** Contrast ratio at least `4.5:1`, complete keyboard navigation,
visible focus rings, and honour `prefers-reduced-motion`.
**Output:** Clean HTML and CSS in two separate files. No frameworks, no libraries,
no external dependencies.