From 5f8fcbd9644ec4a480da61235a31afb7ecb4e852 Mon Sep 17 00:00:00 2001 From: Maxim Dolgolyov Date: Fri, 29 May 2026 10:51:14 +0300 Subject: [PATCH] =?UTF-8?q?fix(textbooks):=20=D0=B4=D0=BE=D0=B1=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D1=8B=20teal/cyan/emerald=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20tb-btn.primary=20=D0=B8=20tb-progress-fill?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Кнопка 'Открыть' и progress-bar тоже не рендерились без правил для нестандартных цветов. Добавлены все 3 ассета: .tb-progress.teal/cyan/emerald .tb-progress-fill .tb-btn.primary.teal/cyan/emerald --- frontend/textbooks.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/textbooks.html b/frontend/textbooks.html index 6232549..6478197 100644 --- a/frontend/textbooks.html +++ b/frontend/textbooks.html @@ -112,6 +112,9 @@ .tb-progress.pink .tb-progress-fill { background:#db2777; } .tb-progress.indigo .tb-progress-fill { background:#4f46e5; } .tb-progress.rose .tb-progress-fill { background:#e11d48; } + .tb-progress.teal .tb-progress-fill { background:#0d9488; } + .tb-progress.cyan .tb-progress-fill { background:#0891b2; } + .tb-progress.emerald .tb-progress-fill { background:#059669; } .tb-progress-text { display:flex; justify-content:space-between; align-items:center; font-size:.74rem; color:var(--text-3); @@ -139,6 +142,9 @@ .tb-btn.primary.pink { background:#db2777; } .tb-btn.primary.indigo { background:#4f46e5; } .tb-btn.primary.rose { background:#e11d48; } + .tb-btn.primary.teal { background:#0d9488; } + .tb-btn.primary.cyan { background:#0891b2; } + .tb-btn.primary.emerald { background:#059669; } .tb-btn.primary:hover { filter:brightness(1.1); } .tb-btn svg { width:14px; height:14px; }