-
Notifications
You must be signed in to change notification settings - Fork 0
Optimize header layout performance with flexbox mixins #6
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
base: header-layout-optimization-pre
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -92,3 +92,40 @@ | |
| -moz-user-select: none; | ||
| -ms-user-select: none; | ||
| } | ||
|
|
||
| // --------------------------------------------------- | ||
|
|
||
| //Flexbox | ||
|
|
||
| @mixin flexbox() { | ||
| display: -webkit-box; | ||
| display: -moz-box; | ||
| display: -ms-flexbox; | ||
| display: -webkit-flex; | ||
| display: flex; | ||
| } | ||
|
|
||
| @mixin inline-flex() { | ||
| display: -webkit-inline-box; | ||
| display: -webkit-inline-flex; | ||
| display: -moz-inline-box; | ||
| display: -ms-inline-flexbox; | ||
| display: inline-flex; | ||
| } | ||
|
|
||
|
|
||
| @mixin align-items($alignment) { | ||
| -webkit-box-align: $alignment; | ||
| -webkit-align-items: $alignment; | ||
| -ms-flex-align: $alignment; | ||
| -ms-align-items: $alignment; | ||
| align-items:$alignment; | ||
| } | ||
|
|
||
| @mixin order($val) { | ||
| -webkit-box-ordinal-group: $val; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔷 Medium: Legacy WebKit/Gecko box-ordinal-group uses a 1-based index (default 1), while modern flexbox order is 0-based (default 0). Passing the same $val yields an off-by-one in older engines (e.g., @include order(3) results in legacy ordering as 2). Map legacy values to $val + 1 to keep ordering consistent across browsers. |
||
| -moz-box-ordinal-group: $val; | ||
| -ms-flex-order: $val; | ||
| -webkit-order: $val; | ||
| order: $val; | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔷 Medium: -ms-align-items is not a valid property (IE10/11 use -ms-flex-align). Keeping it can cause warnings without effect. Removing it tightens compatibility without changing behavior.