0001-scss-lingobasketcell-indivual-payment-support-46503.patch
static/includes/_cells.scss | ||
---|---|---|
1 | ||
1 | 2 |
$cell-background: white !default; |
2 | 3 |
$cell-border: 1px solid #ccc !default; |
3 | 4 |
$cell-border-radius: $border-radius !default; |
... | ... | |
458 | 459 |
} |
459 | 460 |
} |
460 | 461 | |
461 |
div.lingobasketcell h3.regie-name { |
|
462 |
margin: 1.5em 0.7em; |
|
463 |
font-weight: normal; |
|
464 |
border-bottom: 1px solid #aaa; |
|
465 |
} |
|
466 | ||
467 |
div.lingobasketcell ul { |
|
468 |
padding-left: 1em; |
|
469 |
list-style: circle; |
|
470 |
list-style-position: inside; |
|
471 |
li { |
|
472 |
input { |
|
473 |
display: none; |
|
462 |
// Lingo basket cell |
|
463 |
.lingo-basket-cell { |
|
464 |
.gru-content &.cell h2 + &--content { |
|
465 |
padding: 0; |
|
466 |
} |
|
467 |
&--regie-name { |
|
468 |
padding-left: 1rem; |
|
469 |
padding-right: 1rem; |
|
470 |
} |
|
471 |
&--list { |
|
472 |
list-style: none; |
|
473 |
margin: 0; |
|
474 |
padding: 0; |
|
475 |
} |
|
476 |
&--item { |
|
477 |
padding: 1rem; |
|
478 |
border-bottom: 1px solid $cell-entry-border-color; |
|
479 |
display: flex; |
|
480 |
flex-wrap: wrap; |
|
481 |
align-items: baseline; |
|
482 |
&-label { |
|
483 |
overflow: hidden; |
|
474 | 484 |
} |
475 |
a {
|
|
476 |
display: inline-block;
|
|
477 |
padding-bottom: 0.7em;
|
|
485 |
&-price {
|
|
486 |
text-align: right;
|
|
487 |
flex: 1 0 5rem;
|
|
478 | 488 |
} |
479 |
&:last-child { |
|
480 |
list-style: none; |
|
489 |
&-actions { |
|
490 |
@media ($max-mobile-viewport) { |
|
491 |
flex: 1 0 100%; |
|
492 |
} |
|
493 |
@media ($min-desktop-viewport) { |
|
494 |
margin-left: 1em; |
|
495 |
} |
|
496 |
} |
|
497 |
&-remove { |
|
498 |
text-align: right; |
|
481 | 499 |
} |
500 |
&-pay { |
|
501 |
@extend .pk-button; |
|
502 |
} |
|
503 |
} |
|
504 |
&--total { |
|
505 |
padding-left: 1rem; |
|
506 |
padding-right: 1rem; |
|
507 |
text-align: right; |
|
482 | 508 |
} |
483 | 509 |
} |
484 | 510 | |
485 | 511 |
div.lingobasketcell button, div.newsletterscell button, |
486 |
div.lingobasketcell input[type=submit], div.newsletterscell input[type=submit] { |
|
512 |
div.lingobasketcell input[type=submit], div.newsletterscell input[type=submit], |
|
513 |
div.lingobasketcell p.lingo-total { |
|
487 | 514 |
margin: 0 1em 1em 1em; |
488 | 515 |
} |
489 | 516 | |
490 |
- |