diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-05-06 15:22:04 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-05-06 15:22:04 +0200 |
| commit | a0a1eb402d84be81000ed608d3da40a495cc6d34 (patch) | |
| tree | eddd5d6c13005cd9ab6b2c8354573fa617e6de14 /StoneIsland/www/css | |
| parent | 9c18073017b5cc2334bf1867c004bfc74ba5a92a (diff) | |
cart accessibility
Diffstat (limited to 'StoneIsland/www/css')
| -rwxr-xr-x | StoneIsland/www/css/cart.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/StoneIsland/www/css/cart.css b/StoneIsland/www/css/cart.css index 36a446a7..eda4cc82 100755 --- a/StoneIsland/www/css/cart.css +++ b/StoneIsland/www/css/cart.css @@ -11,7 +11,7 @@ display: flex; flex-direction: row; } -#cart .steps span { +#cart .steps div { display: flex; font-size: 1rem; text-align: center; @@ -22,6 +22,9 @@ justify-content: center; align-items: center; } +#cart .steps div span { + pointer-events: none; +} .summary_step, .shipping_step { border-right: 1px solid #666; } @@ -42,6 +45,14 @@ overflow: hidden; position: relative; } +.vscroll #cart_summary, +.vscroll #cart_shipping, +.vscroll #cart_payment, +.vscroll #cart_confirm, +.vscroll #cart_thanks, +.vscroll #cart_error { + overflow: auto; +} #cart.summary #cart_summary { display: block } #cart_summary { |
