Skip to content

26133: Fixed - Coupon code text field not display in proper width in … #30405

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
.lib-icon-font-symbol(
@_icon-font-content: @icon-trash
);

&:hover {
.lib-css(text-decoration, @link__text-decoration);
}
Expand Down Expand Up @@ -574,7 +574,7 @@

.widget {
float: left;

&.block {
margin-bottom: @indent__base;
}
Expand Down Expand Up @@ -727,6 +727,13 @@
position: static;
}
}
.content {
.fieldset {
.actions-toolbar {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.actions-toolbar selector receives width: 1% from Magento_Paypal/web/css/source/module/_review.less. Can you check it more thoroughly?

Please also check if this works with just .block { .actions-toolbar selector path (remove .content and .fieldset selectors). Add empty lines before and after styles.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ptylek, thank you for your revision changes that have been done and pushed.

width: auto;
}
}
}
&.discount {
width: auto;
}
Expand Down