Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Feb 9, 2020
1 parent c3b3ecc commit 410e258
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frugue/core"
,"version": "0.7.9"
,"version": "0.8.0"
,"description": "A custom module for frugue.com"
,"type": "magento2-module"
,"homepage": "https://github.com/frugue/core"
Expand Down
28 changes: 25 additions & 3 deletions view/frontend/web/checkout/_payment-method.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
// 2020-02-09
// "The «Save for later use» checkbox is misaligned with other controls of the frontend Braintree payment form"
// https://github.com/frugue/site/issues/28
#checkout-step-payment .field.choice > input[type=checkbox] {display: none;}
#checkout-step-payment {
// 2020-02-09
// "The question icon is misaligned in the payment information block of the frontend checkout page":
// https://github.com/frugue/site/issues/14
.field-tooltip {
bottom: auto !important;
margin-top: 0;
top: 0 !important;
> .field-tooltip-action > span {display: none;} // 2020-02-09 I hide the «What is this?» text.
}
// 2020-02-09
// "The «Save for later use» checkbox is misaligned with other controls of the frontend Braintree payment form"
// https://github.com/frugue/site/issues/28
.field.choice {
> input[type=checkbox] {display: none;}
> .field-tooltip {display: inline-block; margin-left: 0.5em; position: static;}
}
// 2020-02-09
// "The question icon is misaligned in the payment information block of the frontend checkout page":
// https://github.com/frugue/site/issues/14
.field.cvv {
.field-tooltip {left: 3.5em; top: 3px !important;}
.hosted-control {width: 3em;}
}
}

0 comments on commit 410e258

Please sign in to comment.