diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 8586684..3503dd8 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -5141,9 +5141,9 @@ function DistrictRankingPage() {
- + Panel główny - + Ranking dzielnic
@@ -5272,9 +5272,9 @@ function NegotiationPage({
- + Panel główny - + Ile możesz utargować?
@@ -5309,9 +5309,9 @@ function NegotiationPage({
- + Panel główny - + Ile możesz utargować?
@@ -7287,9 +7287,9 @@ function AccountComparisonPage({ onOpenListing }: { onOpenListing: (id: number)
- + Strona główna - + Porównywarka mieszkań
@@ -14890,9 +14890,9 @@ function CreditCalculatorPage({ onSearchWithBudget }: { onSearchWithBudget: (max
- + Poradnik kupna - + Kalkulator zdolności kredytowej
{pageBody}
@@ -15058,9 +15058,9 @@ function ValuationPage() {
- + Panel główny - + Wycena nieruchomości
@@ -16922,9 +16922,9 @@ function PriceHistoryPage({ user }: { user: AuthUser | null }) {
- + Panel główny - + Historia cen
@@ -18676,10 +18676,10 @@ function Header({ )} {!isLoggedIn && ( - + )} {isLoggedIn && (
@@ -18721,10 +18721,10 @@ function Header({ )}
)} - +
); @@ -19644,9 +19644,9 @@ function MessagesPage({
- + Panel główny - + Wiadomości

Wiadomości

diff --git a/frontend/src/styles.css b/frontend/src/styles.css index e2071c4..df27c4b 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -6000,7 +6000,7 @@ svg { margin-bottom: 22px; } -.valuation-breadcrumb button { +.valuation-breadcrumb button, .valuation-breadcrumb a { background: transparent; border: 0; color: #768398; @@ -6009,7 +6009,7 @@ svg { padding: 0; } -.valuation-breadcrumb button.active { +.valuation-breadcrumb button.active, .valuation-breadcrumb a.active { color: #14223a; } @@ -6876,7 +6876,7 @@ svg { padding: 0; } -.history-breadcrumb button { +.history-breadcrumb button, .history-breadcrumb a { background: transparent; border: 0; color: #7a8798; @@ -6885,7 +6885,7 @@ svg { padding: 0; } -.history-breadcrumb button.active { +.history-breadcrumb button.active, .history-breadcrumb a.active { color: #14223a; } @@ -9553,7 +9553,7 @@ svg { margin-bottom: 24px; } -.district-breadcrumb button { +.district-breadcrumb button, .district-breadcrumb a { background: transparent; border: 0; color: #768398; @@ -9562,7 +9562,7 @@ svg { padding: 0; } -.district-breadcrumb button.active { +.district-breadcrumb button.active, .district-breadcrumb a.active { color: #14223a; } @@ -10090,7 +10090,7 @@ svg { margin-bottom: 18px; } -.negotiation-breadcrumb button { +.negotiation-breadcrumb button, .negotiation-breadcrumb a { background: transparent; border: 0; color: #768398; @@ -10099,7 +10099,7 @@ svg { padding: 0; } -.negotiation-breadcrumb button.active { +.negotiation-breadcrumb button.active, .negotiation-breadcrumb a.active { color: #14223a; } @@ -15192,7 +15192,7 @@ svg { margin: 2px 0 8px; } -.messages-page .messages-breadcrumb button { +.messages-page .messages-breadcrumb button, .messages-page .messages-breadcrumb a { background: transparent; border: 0; color: #718094; @@ -15201,7 +15201,7 @@ svg { padding: 0; } -.messages-page .messages-breadcrumb button.active { +.messages-page .messages-breadcrumb button.active, .messages-page .messages-breadcrumb a.active { color: #14223a; } @@ -24390,7 +24390,7 @@ svg { gap: 6px; } -.comparison-breadcrumb button { +.comparison-breadcrumb button, .comparison-breadcrumb a { background: transparent; border: 0; color: inherit; @@ -24398,7 +24398,7 @@ svg { padding: 0; } -.comparison-breadcrumb button.active { +.comparison-breadcrumb button.active, .comparison-breadcrumb a.active { color: #152640; } @@ -26776,3 +26776,16 @@ svg { /* Routing: pozycje menu admina to teraz (NavLink) */ .admin-nav a { color: inherit; cursor: pointer; text-decoration: none; } + +/* Routing: okruszki nawigacyjne to teraz */ +.breadcrumb a, +.district-breadcrumb a, +.negotiation-breadcrumb a, +.comparison-breadcrumb a, +.messages-breadcrumb a, +.valuation-breadcrumb a, +.history-breadcrumb a, +.credit-breadcrumb a { color: inherit; cursor: pointer; text-decoration: none; } + +/* Routing: naglowkowe CTA jako - zachowanie wygladu przyciskow */ +.post-button { align-content: center; text-decoration: none; }