-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔃 [EngCom] Public Pull Requests - 2.2-develop
Accepted Public Pull Requests: - #20457: [Backport] Area Frontend: Fixed checkbox alignment account information page. (by @suryakant-krish) - #20455: [Backport] Fixed 19800 Contact us : design improvement (by @suryakant-krish) - #20456: [Backport] Fixed 19791: Logo vertical misalignment. (by @suryakant-krish) - #20284: [Backport] Fix issue causing attribute not loading when using getList (by @GovindaSharma) Fixed GitHub Issues: - #19645: Area Frontend: Account information page checkbox alignment issue. (reported by @suryakant-krish) has been fixed in #20457 by @suryakant-krish in 2.2-develop branch Related commits: 1. 4cdc2f0 - #19800: Contact us : design improvement (reported by @suryakant-krish) has been fixed in #20455 by @suryakant-krish in 2.2-develop branch Related commits: 1. e8dc461 2. 3fcc2eb 3. c1432e6 4. c57fb36 5. 6f3207f 6. ab99ef7 7. 0641711 - #19791: Logo vertical misalignment. (reported by @suryakant-krish) has been fixed in #20456 by @suryakant-krish in 2.2-develop branch Related commits: 1. 7b235de - #17759: M2.2.5 : CustomerRepository::getList() does not load custom attribute if the name is "company" (reported by @kanduvisla) has been fixed in #20284 by @GovindaSharma in 2.2-develop branch Related commits: 1. 0600244 2. a59c0b4
- Loading branch information
Showing
6 changed files
with
49 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
app/code/Magento/Contact/view/frontend/web/css/source/_module.less
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
& when (@media-common = true) { | ||
.contact-index-index { | ||
.column:not(.sidebar-main) { | ||
.form.contact { | ||
float: none; | ||
width: 50%; | ||
} | ||
} | ||
|
||
.column:not(.sidebar-additional) { | ||
.form.contact { | ||
float: none; | ||
width: 50%; | ||
} | ||
} | ||
} | ||
} | ||
|
||
// Mobile | ||
.media-width(@extremum, @break) when (@extremum = 'max') and (@break = @screen__m) { | ||
.contact-index-index { | ||
.column:not(.sidebar-main) { | ||
.form.contact { | ||
float: none; | ||
width: 100%; | ||
} | ||
} | ||
|
||
.column:not(.sidebar-additional) { | ||
.form.contact { | ||
float: none; | ||
width: 100%; | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters