-
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; | ||
| -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 commentThe reason will be displayed to describe this comment to others. Learn more. Order mixin has incorrect ordinal-group value mappingLow Severity The |
||


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.
Flex child won't fill width, breaking button alignment
Medium Severity
Adding
flexbox()to.small-actionmakes.small-action-desca flex item, but withoutflex: 1or equivalent, it only takes its content width instead of filling the remaining space. Previously as a block element withpadding-left: 4em, it naturally spanned the full container width. Now thefloat: rightbuttons inside.small-action-desconly float to the right edge of the narrower content-sized element, not to the far right of the.small-actioncontainer — a visible layout regression.Additional Locations (1)
app/assets/stylesheets/common/base/topic-post.scss#L278-L280