المكوّنات · شريط علوي كلاسيكي
شريط علوي كلاسيكي
شعار وروابط وزرّ إجراء — الأساس الذي يعمل دائمًا
12 تصاميم من هذه العائلة
<div class="nb nbc">
<header>
<span class="brand"><span class="mk">◆</span><span data-ar="مطعم السرايا" data-en="Al-Saraya">مطعم السرايا</span></span>
<nav aria-label="الرئيسية">
<a href="#" aria-current="page" data-ar="القائمة" data-en="Menu">القائمة</a><a href="#" data-ar="الفروع" data-en="Branches">الفروع</a><a href="#" data-ar="عنّا" data-en="About">عنّا</a><a href="#" data-ar="تواصل" data-en="Contact">تواصل</a>
</nav>
<span class="grow"></span>
<button class="cta" data-ar="احجز طاولة" data-en="Book a table">احجز طاولة</button>
</header>
<div class="stage">
<h4 data-ar="شريط كلاسيكي" data-en="Classic bar">شريط كلاسيكي</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-classic — مطعم · 44px */
.nbc{width:100%;height:100%;display:flex;flex-direction:column;
font-size:10px;color:var(--pt-text-secondary);overflow:hidden;position:relative}
.nbc header{flex:none;display:flex;align-items:center;gap:9px;width:100%}
.nbc .brand{display:flex;align-items:center;gap:6px;font-weight:700;
color:var(--pt-text-primary);white-space:nowrap}
.nbc .brand .mk{display:grid;place-items:center;flex:none;font-size:10px}
.nbc nav{display:flex;align-items:center;gap:2px;min-width:0}
.nbc 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)}
.nbc nav a:hover{color:var(--pt-text-primary)}
.nbc .grow{flex:1}
.nbc .stage{flex:1;display:flex;flex-direction:column;gap:5px;padding:10px;min-height:0}
.nbc .stage h4{margin:0;font-size:10.5px;color:var(--pt-text-primary)}
.nbc .stage p{margin:0;font-size:8.5px;color:var(--pt-text-muted);line-height:1.8}
.nbc button{font:inherit;cursor:pointer}
.nbc a:focus-visible, .nbc button:focus-visible, .nbc input:focus-visible{
outline:2px solid var(--pt-focus-ring);outline-offset:-1px}
.nbc header{height:44px;padding:0 11px;background:var(--pt-surface);
border-bottom:1px solid var(--pt-border-subtle)}
.nbc .brand{font-size:10.5px}
.nbc .brand .mk{width:19px;height:19px;border-radius:var(--pt-radius-sm);
background:var(--pt-accent);color:var(--pt-color-ink-900)}
.nbc nav{margin-inline-start:8px}
.nbc nav a{border-radius:var(--pt-radius-sm)}
.nbc nav a:hover{background:var(--pt-surface-hover)}
.nbc nav a[aria-current=page]{color:var(--pt-accent);background:var(--pt-bg-inset)}
.nbc .cta{padding:5px 12px;border-radius:var(--pt-radius-sm);border:0;
background:var(--pt-accent);color:var(--pt-color-ink-900);font-size:9px;font-weight:600}
/* يعمل داخل إطار معزول — لا يعتمد على شيء خارجه */
/* pt-remount — يعاد التركيب عند تبديل اللغة */
(function () {
var host = document.querySelector('.nbc');
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(); });
})();
# Classic Navbar
**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:** Classic Navbar — Logo, links and one action — the baseline that always works
**Why this component matters:** The default bar. Its only hard requirement is aria-current on the active link: without it a screen reader cannot tell which page the user is on.
**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.