galali-shoptet 1.0.14 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/style.css +225 -13
package/package.json
CHANGED
package/style.css
CHANGED
|
@@ -4875,30 +4875,35 @@ body.ordering-process input[type="checkbox"] {
|
|
|
4875
4875
|
outline-offset: 4px;
|
|
4876
4876
|
}
|
|
4877
4877
|
|
|
4878
|
-
/* Mobile
|
|
4879
|
-
|
|
4878
|
+
/* Mobile — POZOR: base .siteCookies__button má min-width:140px !important,
|
|
4879
|
+
takže mobilní shrink MUSÍ mít taky !important, jinak buttony nezmenší → banner
|
|
4880
|
+
přeteče 390px → roztáhne layout viewport (ikony headeru ujedou z obrazovky). */
|
|
4881
|
+
@media (max-width: 1023px) {
|
|
4880
4882
|
.siteCookies,
|
|
4881
4883
|
.siteCookies.siteCookies--bottom,
|
|
4882
4884
|
.siteCookies.siteCookies--light,
|
|
4883
4885
|
.siteCookies.siteCookies--scrolled {
|
|
4884
|
-
left:
|
|
4885
|
-
right:
|
|
4886
|
-
bottom:
|
|
4886
|
+
left: 12px !important;
|
|
4887
|
+
right: 12px !important;
|
|
4888
|
+
bottom: 12px !important;
|
|
4889
|
+
max-width: calc(100vw - 24px) !important;
|
|
4890
|
+
box-sizing: border-box !important;
|
|
4887
4891
|
}
|
|
4888
4892
|
.siteCookies .siteCookies__form {
|
|
4889
|
-
flex-direction: column;
|
|
4890
|
-
align-items: stretch;
|
|
4891
|
-
gap:
|
|
4892
|
-
padding: 16px;
|
|
4893
|
+
flex-direction: column !important;
|
|
4894
|
+
align-items: stretch !important;
|
|
4895
|
+
gap: 14px !important;
|
|
4896
|
+
padding: 16px !important;
|
|
4893
4897
|
}
|
|
4894
4898
|
.siteCookies .siteCookies__buttonWrap {
|
|
4895
|
-
flex-direction: column;
|
|
4896
|
-
gap: 8px;
|
|
4899
|
+
flex-direction: column !important;
|
|
4900
|
+
gap: 8px !important;
|
|
4901
|
+
width: 100% !important;
|
|
4897
4902
|
}
|
|
4898
4903
|
.siteCookies button.siteCookies__button,
|
|
4899
4904
|
.siteCookies .siteCookies__button {
|
|
4900
|
-
width: 100
|
|
4901
|
-
min-width: 0;
|
|
4905
|
+
width: 100% !important;
|
|
4906
|
+
min-width: 0 !important;
|
|
4902
4907
|
}
|
|
4903
4908
|
}
|
|
4904
4909
|
|
|
@@ -7395,3 +7400,210 @@ body.type-search .products.products-block .product .add-to-cart {
|
|
|
7395
7400
|
body.type-search .products.products-block .product .price.price-final { font-size: 14px; }
|
|
7396
7401
|
}
|
|
7397
7402
|
|
|
7403
|
+
/* ============================================================
|
|
7404
|
+
=== Mobil audit fixes (2026-07-03) — konzistence napříč eshopem ===
|
|
7405
|
+
Zdroj: full mobile audit (home/detail/kategorie/search/košík/checkout/registrace/login/heslo).
|
|
7406
|
+
============================================================ */
|
|
7407
|
+
|
|
7408
|
+
@media (max-width: 1023px) {
|
|
7409
|
+
/* --- A1) Skryj topnav menu (Jak nakupovat / OP) na mobilu ---
|
|
7410
|
+
Globální "desktop polish" rule `.top-navigation-menu{display:flex}` (bez media query,
|
|
7411
|
+
pozdější v pořadí) přebíjela mobilní `display:none` → menu se zobrazovalo a jeho bílé
|
|
7412
|
+
pozadí PŘEKRÝVALO logo. Late-source !important vrací hidden. */
|
|
7413
|
+
.top-navigation-bar .top-navigation-menu,
|
|
7414
|
+
.top-navigation-bar .top-navigation-menu-trigger,
|
|
7415
|
+
.top-navigation-bar ul.top-navigation-bar-menu {
|
|
7416
|
+
display: none !important;
|
|
7417
|
+
}
|
|
7418
|
+
|
|
7419
|
+
/* --- A2) Topnav VŽDY fixed overlay (konzistentně) ---
|
|
7420
|
+
Vendor dává topnav `fixed` na homepage, ale `static` na kategorii/detailu/košíku/checkoutu
|
|
7421
|
+
→ tam header spadl na 2. řádek (logo pod ikonami) a checkout step-bar (ol.cart-header)
|
|
7422
|
+
se schoval za header (vykukoval jen černý kroužek kroku = "blob").
|
|
7423
|
+
Fixed = header sedí na y=0 (logo vlevo), ikony transparentně přes něj vpravo,
|
|
7424
|
+
obsah teče pod headerem → 1 řádek na VŠECH stránkách + step-bar viditelný. */
|
|
7425
|
+
.top-navigation-bar {
|
|
7426
|
+
position: fixed !important;
|
|
7427
|
+
top: 0 !important;
|
|
7428
|
+
left: 0 !important;
|
|
7429
|
+
right: 0 !important;
|
|
7430
|
+
width: 100% !important;
|
|
7431
|
+
z-index: 60 !important;
|
|
7432
|
+
background: transparent !important;
|
|
7433
|
+
border: 0 !important;
|
|
7434
|
+
box-shadow: none !important;
|
|
7435
|
+
}
|
|
7436
|
+
header#header {
|
|
7437
|
+
position: sticky !important;
|
|
7438
|
+
top: 0 !important;
|
|
7439
|
+
}
|
|
7440
|
+
|
|
7441
|
+
/* --- A3) Reset ordering-process login boxu na HEADER ikoně ---
|
|
7442
|
+
Rule `body.ordering-process .toggle-window[data-target=login]` (mířená na checkout
|
|
7443
|
+
login trigger) trefovala i header ikonu → bílý bordered box místo ikony. Vrátit ikonu. */
|
|
7444
|
+
body.ordering-process .top-navigation-bar .responsive-tools a.toggle-window[data-target="login"] {
|
|
7445
|
+
padding: 0 !important;
|
|
7446
|
+
background-color: transparent !important;
|
|
7447
|
+
border: 0 !important;
|
|
7448
|
+
border-radius: 0 !important;
|
|
7449
|
+
letter-spacing: 0 !important;
|
|
7450
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none' stroke='black' stroke-width='1.8'><circle cx='14' cy='10' r='4'/><path d='M6 24c0-4 4-7 8-7s8 3 8 7'/></svg>") !important;
|
|
7451
|
+
background-position: center !important;
|
|
7452
|
+
background-repeat: no-repeat !important;
|
|
7453
|
+
background-size: 22px 22px !important;
|
|
7454
|
+
}
|
|
7455
|
+
|
|
7456
|
+
/* --- A4) Větší tap-target ikon (min 44px hit area), vizuální ikona 22px --- */
|
|
7457
|
+
.top-navigation-bar .top-navigation-tools .responsive-tools a.toggle-window {
|
|
7458
|
+
width: 44px !important;
|
|
7459
|
+
min-width: 44px !important;
|
|
7460
|
+
height: 44px !important;
|
|
7461
|
+
background-size: 22px 22px !important;
|
|
7462
|
+
}
|
|
7463
|
+
.top-navigation-bar .top-navigation-tools .responsive-tools { gap: 2px !important; }
|
|
7464
|
+
.top-navigation-bar .container { height: 56px !important; padding: 0 8px 0 16px !important; }
|
|
7465
|
+
}
|
|
7466
|
+
|
|
7467
|
+
/* --- B) Account/form primární tlačítka: modrá/purpurová → černá ---
|
|
7468
|
+
REGISTROVAT (input.btn-login), PŘIHLÁSIT SE (button.btn-login), ODESLAT (input.btn-primary),
|
|
7469
|
+
404 "Zpět do obchodu" (a.btn-default). Vendor je nechává modré/purpurové. */
|
|
7470
|
+
input.btn.btn-primary, input[type="submit"].btn-primary, input[type="submit"].btn-login,
|
|
7471
|
+
input.btn.btn-login, button.btn.btn-login,
|
|
7472
|
+
a.btn.btn-default:not(.unveil-button):not(.toggle-contacts):not(.next-step-forward) {
|
|
7473
|
+
background: var(--gl-black) !important;
|
|
7474
|
+
background-color: var(--gl-black) !important;
|
|
7475
|
+
background-image: none !important;
|
|
7476
|
+
color: var(--gl-white) !important;
|
|
7477
|
+
border: 1px solid var(--gl-black) !important;
|
|
7478
|
+
border-radius: 0 !important;
|
|
7479
|
+
box-shadow: none !important;
|
|
7480
|
+
text-transform: uppercase !important;
|
|
7481
|
+
letter-spacing: 0.06em !important;
|
|
7482
|
+
font-family: var(--gl-font-ui) !important;
|
|
7483
|
+
font-weight: var(--gl-w-medium) !important;
|
|
7484
|
+
padding: 12px 24px !important;
|
|
7485
|
+
min-height: 44px !important;
|
|
7486
|
+
cursor: pointer;
|
|
7487
|
+
transition: background .15s;
|
|
7488
|
+
}
|
|
7489
|
+
input.btn.btn-primary:hover, input.btn.btn-login:hover,
|
|
7490
|
+
button.btn.btn-login:hover, a.btn.btn-default:not(.unveil-button):hover {
|
|
7491
|
+
background: #1a1a1a !important;
|
|
7492
|
+
background-color: #1a1a1a !important;
|
|
7493
|
+
}
|
|
7494
|
+
|
|
7495
|
+
/* --- C) Load-more + "Nahoru": modrá → černá outline --- */
|
|
7496
|
+
button.loadMore__button, a.loadMore__button, .loadMore__button,
|
|
7497
|
+
a.goToTop__button, .goToTop__button.btn {
|
|
7498
|
+
color: var(--gl-fg-1) !important;
|
|
7499
|
+
background: var(--gl-white) !important;
|
|
7500
|
+
background-color: var(--gl-white) !important;
|
|
7501
|
+
background-image: none !important;
|
|
7502
|
+
border: 1px solid var(--gl-fg-1) !important;
|
|
7503
|
+
border-radius: 0 !important;
|
|
7504
|
+
box-shadow: none !important;
|
|
7505
|
+
text-transform: uppercase !important;
|
|
7506
|
+
letter-spacing: 0.06em !important;
|
|
7507
|
+
font-family: var(--gl-font-ui) !important;
|
|
7508
|
+
font-weight: var(--gl-w-medium) !important;
|
|
7509
|
+
}
|
|
7510
|
+
button.loadMore__button:hover, a.goToTop__button:hover, .loadMore__button:hover {
|
|
7511
|
+
background: var(--gl-fg-1) !important;
|
|
7512
|
+
background-color: var(--gl-fg-1) !important;
|
|
7513
|
+
color: var(--gl-white) !important;
|
|
7514
|
+
}
|
|
7515
|
+
|
|
7516
|
+
/* --- D) Modré textové odkazy (account formuláře, search kategorie) → černá podtržená --- */
|
|
7517
|
+
body.in-login #formLogin a,
|
|
7518
|
+
body.in-login #formLoginIncluded a,
|
|
7519
|
+
body.in-registrace #register-form a,
|
|
7520
|
+
body.in-zapomenute-heslo main a:not(.btn),
|
|
7521
|
+
#customerLogin #formLoginIncluded a,
|
|
7522
|
+
body.type-search #search-group-categories a,
|
|
7523
|
+
body.type-search .search-results-group a {
|
|
7524
|
+
color: var(--gl-fg-1) !important;
|
|
7525
|
+
text-decoration: underline !important;
|
|
7526
|
+
text-underline-offset: 3px;
|
|
7527
|
+
}
|
|
7528
|
+
body.in-login #formLogin a:hover,
|
|
7529
|
+
body.in-registrace #register-form a:hover,
|
|
7530
|
+
body.type-search .search-results-group a:hover {
|
|
7531
|
+
opacity: .7;
|
|
7532
|
+
}
|
|
7533
|
+
/* Search kategorie: zruš disc odrážky (vendor UL) → čistý seznam */
|
|
7534
|
+
body.type-search #search-group-categories ul,
|
|
7535
|
+
body.type-search .search-results-group-list {
|
|
7536
|
+
list-style: none !important;
|
|
7537
|
+
padding-left: 0 !important;
|
|
7538
|
+
margin-left: 0 !important;
|
|
7539
|
+
}
|
|
7540
|
+
body.type-search #search-group-categories li,
|
|
7541
|
+
body.type-search .search-results-group-list li {
|
|
7542
|
+
list-style: none !important;
|
|
7543
|
+
}
|
|
7544
|
+
|
|
7545
|
+
/* --- E) Checkout: vybraná doprava/platba (b.shipping-billing-name) je modrá → černá --- */
|
|
7546
|
+
b.shipping-billing-name,
|
|
7547
|
+
.shipping-billing-name,
|
|
7548
|
+
body.ordering-process .shipping-billing-name,
|
|
7549
|
+
body.ordering-process .cart-recap .price,
|
|
7550
|
+
body.ordering-process td.shipping-billing-name {
|
|
7551
|
+
color: var(--gl-fg-1) !important;
|
|
7552
|
+
}
|
|
7553
|
+
|
|
7554
|
+
/* --- F) Košík quantity stepper: vendor dává +/− buttonům position:absolute →
|
|
7555
|
+
vypadnou z gridu (cart CSS je narozdíl od detailu neresetuje) → rozhozený box.
|
|
7556
|
+
Přepnout na flex [− 1 +] jako na detailu. --- */
|
|
7557
|
+
table.cart-table span.quantity {
|
|
7558
|
+
display: inline-flex !important;
|
|
7559
|
+
flex-direction: row !important;
|
|
7560
|
+
align-items: stretch !important;
|
|
7561
|
+
width: 120px !important;
|
|
7562
|
+
height: 40px !important;
|
|
7563
|
+
padding: 0 !important;
|
|
7564
|
+
position: relative;
|
|
7565
|
+
overflow: hidden;
|
|
7566
|
+
}
|
|
7567
|
+
table.cart-table span.quantity button.decrease,
|
|
7568
|
+
table.cart-table span.quantity button.increase {
|
|
7569
|
+
position: static !important;
|
|
7570
|
+
inset: auto !important;
|
|
7571
|
+
top: auto !important; right: auto !important; bottom: auto !important; left: auto !important;
|
|
7572
|
+
width: 36px !important;
|
|
7573
|
+
min-width: 36px !important;
|
|
7574
|
+
height: auto !important;
|
|
7575
|
+
align-self: stretch !important;
|
|
7576
|
+
display: inline-flex !important;
|
|
7577
|
+
align-items: center !important;
|
|
7578
|
+
justify-content: center !important;
|
|
7579
|
+
font-size: 0 !important;
|
|
7580
|
+
background: transparent !important;
|
|
7581
|
+
}
|
|
7582
|
+
table.cart-table span.quantity button.decrease { order: 1 !important; border-right: 1px solid var(--gl-divider) !important; }
|
|
7583
|
+
table.cart-table span.quantity label { order: 2 !important; flex: 1 1 auto !important; margin: 0 !important; }
|
|
7584
|
+
table.cart-table span.quantity input.amount { width: 100% !important; }
|
|
7585
|
+
table.cart-table span.quantity button.increase { order: 3 !important; border-left: 1px solid var(--gl-divider) !important; }
|
|
7586
|
+
table.cart-table span.quantity button.decrease::before,
|
|
7587
|
+
table.cart-table span.quantity button.increase::before {
|
|
7588
|
+
position: static !important;
|
|
7589
|
+
inset: auto !important;
|
|
7590
|
+
top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
|
|
7591
|
+
display: block !important;
|
|
7592
|
+
width: auto !important;
|
|
7593
|
+
height: auto !important;
|
|
7594
|
+
margin: 0 !important;
|
|
7595
|
+
transform: none !important;
|
|
7596
|
+
font-size: 18px !important;
|
|
7597
|
+
line-height: 1 !important;
|
|
7598
|
+
color: var(--gl-fg-1) !important;
|
|
7599
|
+
background: none !important;
|
|
7600
|
+
}
|
|
7601
|
+
table.cart-table span.quantity button.decrease::before { content: "−" !important; }
|
|
7602
|
+
table.cart-table span.quantity button.increase::before { content: "+" !important; }
|
|
7603
|
+
table.cart-table span.quantity .increase__sign,
|
|
7604
|
+
table.cart-table span.quantity .decrease__sign,
|
|
7605
|
+
table.cart-table span.quantity .increase-tooltip,
|
|
7606
|
+
table.cart-table span.quantity .decrease-tooltip,
|
|
7607
|
+
table.cart-table span.quantity .js-increase-tooltip,
|
|
7608
|
+
table.cart-table span.quantity .js-decrease-tooltip { display: none !important; }
|
|
7609
|
+
|