[IMP] website_sale_aplicoop: accessibility and responsive polish — phase 8
Quantity control layout: changed from wrapping flex to deliberate two-row
grid so the add-to-cart button sits full-width underneath the stepper,
avoiding accidental line breaks and giving the primary action more pulsing
area. Also removed the /Kg suffix's redundant font rules.
Order card delivery row: reordered to badge-then-date (visually centred),
removed the "Delivery" label, and swapped bg-primary to text-bg-primary for
proper contrast on the home-delivery badge (3.13:1 minimum).
Tooltip translations: moved hardcoded static tooltips from data-bs-title
(untranslatable) to title (QWeb-translatable). Handled the edge case of
"Save Cart" and "Back to Cart" which had translations but no model_terms
reference in the POT, causing the merge to discard them — added the view
reference so translations now apply.
Load-from-history page: added accessibility: a visible status message
("Loading your order…"), a <noscript> fallback with link to the group
order, lang and viewport meta tags, and localised strings for all three
languages. Gave the page a minimal inline style block since it does not
inherit the token system (no website.layout).
Translations: 11 new entries (es/eu/ca) for new/reworded UI strings, plus
two code catalogue entries (products found, Close) that needed the
#. odoo-python comment for _() resolution. Documented the silent-failure
pattern in docs/TRANSLATIONS.md: the POT merge, untranslatable attributes,
and missing code comments.
Tests: 246 passing. Pre-commit: clean.
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
162ba0b570
commit
5de7573fba
35 changed files with 2181 additions and 2413 deletions
|
|
@ -1,30 +1,43 @@
|
|||
/* filepath: website_sale_aplicoop/static/src/css/components/order-card.css */
|
||||
|
||||
/**
|
||||
* Order card (Eskaera) component styles
|
||||
* Order card (Eskaera)
|
||||
*
|
||||
* Markup (eskaera_page):
|
||||
* .eskaera-order-card-wrapper
|
||||
* └ .eskaera-order-card[.eskaera-order-card--special]
|
||||
* └ .card-body
|
||||
* ├ .order-badge-position (product count)
|
||||
* ├ a.eskaera-order-card-link → .card-header-top (image, title, description)
|
||||
* ├ .card-meta-compact > .meta-grid (dates, badges)
|
||||
* └ a.btn (Browse products)
|
||||
*
|
||||
* Note the link only wraps the header, so the whole card is NOT clickable —
|
||||
* the hover/focus treatment below is applied to the card while the pointer is
|
||||
* anywhere over it, but `cursor: pointer` is left to the two real links.
|
||||
*/
|
||||
|
||||
.eskaera-order-card-link {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
display: block;
|
||||
width: 100%;
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.eskaera-order-card {
|
||||
position: relative;
|
||||
background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
|
||||
border: 1px solid rgba(90, 103, 216, 0.12);
|
||||
border-radius: 0.75rem;
|
||||
box-shadow: 0 6px 18px rgba(28, 37, 80, 0.06);
|
||||
transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 320ms, border-color 320ms,
|
||||
background 320ms;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 290px;
|
||||
/* min-height in rem, not px: at 200% zoom a px floor clips the content. */
|
||||
min-height: 18rem;
|
||||
height: 100%;
|
||||
cursor: pointer;
|
||||
border: 1px solid var(--ac-color-order-border);
|
||||
border-radius: var(--ac-radius-lg);
|
||||
background: var(--ac-surface-order);
|
||||
box-shadow: var(--ac-shadow-md);
|
||||
overflow: hidden;
|
||||
transition: transform var(--ac-transition-normal), box-shadow var(--ac-transition-normal),
|
||||
border-color var(--ac-transition-normal), background var(--ac-transition-normal);
|
||||
animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
|
||||
}
|
||||
|
||||
|
|
@ -33,371 +46,281 @@
|
|||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Accent bar along the top edge. */
|
||||
.eskaera-order-card::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
inset: 0 0 auto;
|
||||
height: 6px;
|
||||
background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
|
||||
background: linear-gradient(90deg, var(--ac-color-order), var(--ac-color-order-strong));
|
||||
}
|
||||
|
||||
.eskaera-order-card-link:hover .eskaera-order-card {
|
||||
transform: translateY(-8px) scale(1.01);
|
||||
box-shadow: 0 20px 50px rgba(90, 103, 216, 0.15), 0 0 30px rgba(90, 103, 216, 0.1);
|
||||
border: 1px solid rgba(90, 103, 216, 0.25);
|
||||
background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
|
||||
}
|
||||
|
||||
.eskaera-order-card-link:hover .eskaera-order-card::before {
|
||||
animation: shimmer 0.6s ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes shimmer {
|
||||
0% {
|
||||
left: 0;
|
||||
}
|
||||
50% {
|
||||
left: 100%;
|
||||
}
|
||||
100% {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.eskaera-order-card .card-body {
|
||||
padding: 0.6rem 0.8rem 0 0.8rem;
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.2rem;
|
||||
}
|
||||
|
||||
.eskaera-order-card .card-title {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 700;
|
||||
color: #1f2937;
|
||||
margin: 0;
|
||||
line-height: 1.15;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
.order-desc-text {
|
||||
font-size: 0.8rem;
|
||||
color: #6b7280;
|
||||
margin: 0;
|
||||
line-height: 1.3;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
.order-desc-sm {
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.order-desc-md {
|
||||
font-size: 0.95rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.eskaera-order-card .btn {
|
||||
margin-top: auto;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: 0.6rem;
|
||||
padding: 0.6rem 1.2rem;
|
||||
font-weight: 600;
|
||||
border-radius: 6px;
|
||||
border: none !important;
|
||||
font-size: 0.85rem;
|
||||
transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
||||
background: linear-gradient(135deg, #5a67d8, #4c57bd) !important;
|
||||
color: white !important;
|
||||
box-shadow: 0 4px 12px rgba(90, 103, 216, 0.2) !important;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
text-decoration: none !important;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.eskaera-order-card .btn::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-radius: 50%;
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
transform: translate(-50%, -50%);
|
||||
transition: width 0.5s, height 0.5s;
|
||||
}
|
||||
|
||||
.eskaera-order-card .btn:active::before {
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.eskaera-order-card .btn:hover {
|
||||
box-shadow: 0 8px 24px rgba(90, 103, 216, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2) !important;
|
||||
transform: translateY(-3px) scale(1.03);
|
||||
background: linear-gradient(135deg, #4c57bd, #3d4898) !important;
|
||||
}
|
||||
|
||||
/* Center button within card body */
|
||||
.eskaera-order-card .card-body > .btn {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* Order card header spacing */
|
||||
.order-card-header-spacing {
|
||||
margin-top: 0.9rem;
|
||||
}
|
||||
|
||||
/* Order thumbnail small */
|
||||
.order-thumbnail-sm {
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
border-radius: 8px;
|
||||
object-fit: cover;
|
||||
flex-shrink: 0;
|
||||
border: 2px solid rgba(90, 103, 216, 0.1);
|
||||
}
|
||||
|
||||
/* Order thumbnail medium */
|
||||
.order-thumbnail-md {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
object-fit: cover;
|
||||
border-radius: 8px;
|
||||
flex-shrink: 0;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* Order thumbnail checkout */
|
||||
.order-thumbnail-checkout,
|
||||
.checkout-thumbnail {
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
object-fit: cover;
|
||||
border-radius: 6px;
|
||||
flex-shrink: 0;
|
||||
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
/* ---------- Header ---------- */
|
||||
|
||||
.card-header-top {
|
||||
display: flex;
|
||||
gap: 0.6rem;
|
||||
gap: var(--ac-space-sm);
|
||||
align-items: flex-start;
|
||||
margin-bottom: 0.3rem;
|
||||
height: 100px;
|
||||
overflow: hidden;
|
||||
margin-bottom: var(--ac-space-2xs);
|
||||
}
|
||||
|
||||
.card-header-top > div:last-child {
|
||||
text-align: left;
|
||||
flex: 1;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.card-header-top .card-title {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.card-badges .badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.2rem;
|
||||
.eskaera-order-card .card-body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
gap: var(--ac-space-2xs);
|
||||
padding: var(--ac-space-sm) var(--ac-space-sm) 0;
|
||||
}
|
||||
|
||||
.eskaera-order-card .card-title {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
line-clamp: 2;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
font-size: var(--ac-text-base);
|
||||
font-weight: var(--ac-weight-bold);
|
||||
line-height: var(--ac-leading-tight);
|
||||
color: var(--ac-text-primary);
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.order-desc-text {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
line-clamp: 2;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
font-size: var(--ac-text-xs);
|
||||
line-height: var(--ac-leading-snug);
|
||||
color: var(--ac-text-muted);
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
/* ---------- Thumbnails ---------- */
|
||||
|
||||
.order-thumbnail-sm {
|
||||
flex-shrink: 0;
|
||||
width: 5.625rem;
|
||||
height: 5.625rem;
|
||||
border: 2px solid var(--ac-color-order-border);
|
||||
border-radius: var(--ac-radius-md);
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.order-thumbnail-md {
|
||||
flex-shrink: 0;
|
||||
width: 7.5rem;
|
||||
height: 7.5rem;
|
||||
border-radius: var(--ac-radius-md);
|
||||
box-shadow: var(--ac-shadow-sm);
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
/* ---------- Product-count badge ---------- */
|
||||
|
||||
.order-badge-position {
|
||||
position: absolute;
|
||||
top: var(--ac-space-md);
|
||||
right: var(--ac-space-md);
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.order-badge-custom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--ac-space-sm);
|
||||
padding: var(--ac-space-sm) var(--ac-space-xs);
|
||||
border-radius: var(--ac-radius-sm);
|
||||
font-size: var(--ac-text-sm);
|
||||
font-weight: var(--ac-weight-bold);
|
||||
box-shadow: var(--ac-shadow-md);
|
||||
}
|
||||
|
||||
/* ---------- Meta block ---------- */
|
||||
|
||||
.card-meta-compact {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 0;
|
||||
margin: 0.2rem auto 0 auto;
|
||||
padding: 0.6rem 0.8rem;
|
||||
border-top: 1px solid rgba(90, 103, 216, 0.08);
|
||||
background: rgba(245, 247, 255, 0.4);
|
||||
border-radius: 0 0 0.75rem 0.75rem;
|
||||
width: 100%;
|
||||
margin: var(--ac-space-2xs) auto 0;
|
||||
padding: var(--ac-space-sm);
|
||||
border-top: 1px solid var(--ac-color-order-border);
|
||||
border-radius: 0 0 var(--ac-radius-lg) var(--ac-radius-lg);
|
||||
background: var(--ac-surface-sunken);
|
||||
}
|
||||
|
||||
.card-meta-compact .card-meta-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.4rem;
|
||||
}
|
||||
|
||||
/* Meta table styles for clean date display */
|
||||
.meta-table {
|
||||
width: auto;
|
||||
border-collapse: collapse;
|
||||
font-size: 0.8rem;
|
||||
margin: 0 auto;
|
||||
text-align: left;
|
||||
min-height: 160px;
|
||||
display: table;
|
||||
}
|
||||
|
||||
.meta-table tbody {
|
||||
display: table-row-group;
|
||||
}
|
||||
|
||||
.meta-row {
|
||||
display: table-row;
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.meta-label-cell {
|
||||
display: table-cell;
|
||||
padding: 0.25rem 0.6rem 0.25rem 0;
|
||||
font-weight: 600;
|
||||
color: #374151;
|
||||
text-align: right;
|
||||
vertical-align: top;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.meta-label-cell span {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.meta-value-cell {
|
||||
display: table-cell;
|
||||
padding: 0.25rem 0;
|
||||
color: #6b7280;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.meta-value-cell .badge {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
font-size: 0.7rem;
|
||||
padding: 0.2rem 0.5rem;
|
||||
}
|
||||
|
||||
.meta-label {
|
||||
font-weight: 600;
|
||||
color: #374151;
|
||||
min-width: 85px;
|
||||
}
|
||||
|
||||
.meta-value {
|
||||
color: #6b7280;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.order-badge-position {
|
||||
position: absolute;
|
||||
top: 1.25rem;
|
||||
right: 1.25rem;
|
||||
z-index: 10;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.order-badge-custom {
|
||||
font-weight: 700;
|
||||
padding: 0.5rem 0.75rem;
|
||||
border-radius: 6px;
|
||||
font-size: 0.85rem;
|
||||
box-shadow: 0 4px 12px rgba(90, 103, 216, 0.3);
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
/* Meta grid - compact horizontal layout for order card metadata */
|
||||
.meta-grid {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem 1rem;
|
||||
justify-content: center;
|
||||
gap: var(--ac-space-sm) var(--ac-space-md);
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.meta-grid .meta-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.35rem;
|
||||
font-size: 0.8rem;
|
||||
gap: var(--ac-space-2xs);
|
||||
font-size: var(--ac-text-xs);
|
||||
}
|
||||
|
||||
.meta-grid .meta-label {
|
||||
font-weight: 600;
|
||||
color: #374151;
|
||||
min-width: auto;
|
||||
font-weight: var(--ac-weight-semibold);
|
||||
color: var(--ac-text-secondary);
|
||||
}
|
||||
|
||||
.meta-grid .meta-value {
|
||||
color: #6b7280;
|
||||
color: var(--ac-text-muted);
|
||||
}
|
||||
|
||||
.meta-grid .badge {
|
||||
font-size: 0.75rem;
|
||||
padding: 0.25rem 0.5rem;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.meta-grid .badge i {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
/* Special order card */
|
||||
.eskaera-order-card--special {
|
||||
background: linear-gradient(180deg, #fffdf0 0%, #fffbea 100%);
|
||||
border: 1px solid rgba(245, 158, 11, 0.35);
|
||||
box-shadow: 0 6px 18px rgba(245, 158, 11, 0.12);
|
||||
}
|
||||
|
||||
.eskaera-order-card--special::before {
|
||||
background: linear-gradient(90deg, #f59e0b, #d97706);
|
||||
}
|
||||
|
||||
.eskaera-order-card-link:hover .eskaera-order-card--special {
|
||||
box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2), 0 0 30px rgba(245, 158, 11, 0.12);
|
||||
border-color: rgba(245, 158, 11, 0.5);
|
||||
background: linear-gradient(180deg, #fffdf0 0%, #fff8db 100%);
|
||||
}
|
||||
|
||||
.special-order-badge {
|
||||
background: linear-gradient(135deg, #f59e0b, #d97706) !important;
|
||||
color: #fff !important;
|
||||
font-size: 0.75rem;
|
||||
padding: 0.25rem 0.6rem;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.3rem;
|
||||
border-radius: 4px;
|
||||
font-weight: 600;
|
||||
box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
|
||||
gap: var(--ac-space-2xs);
|
||||
padding: var(--ac-space-2xs) var(--ac-space-xs);
|
||||
font-size: var(--ac-text-2xs);
|
||||
}
|
||||
|
||||
.meta-item--full {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Home delivery: its own row, badge then date, centred as a pair — so it stays
|
||||
centred whether or not the date is there. */
|
||||
.meta-grid .meta-item--delivery {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
gap: var(--ac-space-sm);
|
||||
}
|
||||
|
||||
/* ---------- Call to action ---------- */
|
||||
|
||||
/* Bootstrap 5.3 drives .btn from unprefixed custom properties, so the card's
|
||||
own colours are set by redefining those instead of piling up !important. */
|
||||
.eskaera-order-card .btn {
|
||||
--btn-color: var(--ac-text-on-fill);
|
||||
--btn-bg: var(--ac-color-order);
|
||||
--btn-border-color: transparent;
|
||||
--btn-hover-color: var(--ac-text-on-fill);
|
||||
--btn-hover-bg: var(--ac-color-order-strong);
|
||||
--btn-hover-border-color: transparent;
|
||||
--btn-active-color: var(--ac-text-on-fill);
|
||||
--btn-active-bg: var(--ac-color-order-deep);
|
||||
--btn-active-border-color: transparent;
|
||||
--btn-border-radius: var(--ac-radius-sm);
|
||||
--btn-font-size: var(--ac-text-sm);
|
||||
--btn-font-weight: var(--ac-weight-semibold);
|
||||
--btn-padding-y: var(--ac-space-sm);
|
||||
--btn-padding-x: var(--ac-space-md);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: var(--ac-space-sm);
|
||||
margin: auto auto var(--ac-space-sm);
|
||||
box-shadow: var(--ac-shadow-sm);
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
transition: background-color var(--ac-transition-fast), box-shadow var(--ac-transition-fast),
|
||||
transform var(--ac-transition-fast);
|
||||
}
|
||||
|
||||
/* ---------- Special orders ---------- */
|
||||
|
||||
.eskaera-order-card--special {
|
||||
border-color: var(--ac-color-special-border);
|
||||
background: var(--ac-surface-special);
|
||||
}
|
||||
|
||||
.eskaera-order-card--special::before {
|
||||
background: linear-gradient(90deg, var(--ac-color-special), var(--ac-color-special-strong));
|
||||
}
|
||||
|
||||
.special-order-badge {
|
||||
/* Amber needs dark text — white on it is 2.15:1. */
|
||||
--badge-color: var(--ac-text-on-special);
|
||||
--badge-font-size: var(--ac-text-2xs);
|
||||
--badge-border-radius: var(--ac-radius-sm);
|
||||
--badge-padding-x: var(--ac-space-xs);
|
||||
--badge-padding-y: var(--ac-space-2xs);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: var(--ac-space-2xs);
|
||||
background: linear-gradient(135deg, var(--ac-color-special), var(--ac-color-special-strong));
|
||||
font-weight: var(--ac-weight-semibold);
|
||||
box-shadow: var(--ac-shadow-sm);
|
||||
}
|
||||
|
||||
/* ---------- States ---------- */
|
||||
|
||||
@media (hover: hover) and (pointer: fine) {
|
||||
.eskaera-order-card:hover {
|
||||
transform: translateY(-8px);
|
||||
border-color: var(--ac-color-order-border-hover);
|
||||
background: var(--ac-surface-order-hover);
|
||||
box-shadow: var(--ac-shadow-lg);
|
||||
}
|
||||
|
||||
.eskaera-order-card--special:hover {
|
||||
border-color: var(--ac-color-special-border-hover);
|
||||
background: var(--ac-surface-special-hover);
|
||||
}
|
||||
|
||||
.eskaera-order-card .btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--ac-shadow-md);
|
||||
}
|
||||
}
|
||||
|
||||
/* Keyboard users get the same emphasis as a hover, plus a ring on the card
|
||||
that holds the focused link. */
|
||||
.eskaera-order-card:focus-within {
|
||||
border-color: var(--ac-color-order-border-hover);
|
||||
background: var(--ac-surface-order-hover);
|
||||
box-shadow: var(--ac-shadow-lg);
|
||||
}
|
||||
|
||||
.eskaera-order-card-link:focus-visible,
|
||||
.eskaera-order-card .btn:focus-visible {
|
||||
outline: var(--ac-focus-ring-width) solid var(--ac-focus-ring-color);
|
||||
outline-offset: var(--ac-focus-ring-offset);
|
||||
border-radius: var(--ac-radius-sm);
|
||||
}
|
||||
|
||||
/* The entry animation is decorative; motion sensitivity outranks it, and the
|
||||
hover lift has to stop moving too. */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.eskaera-order-card {
|
||||
animation: none;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.eskaera-order-card:hover,
|
||||
.eskaera-order-card .btn,
|
||||
.eskaera-order-card .btn:hover {
|
||||
transform: none;
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue