mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
efd3b35830
* feat: Col support `flex` prop * update snapshot * update doc * row component use flex type by default * revert grid flex layout doc * remove float style * remove doc old FAQ * revert .make-row * col style use flex and max-width * remove useless Col style and imorove base doc for a single Col * update snapshots * fix flex mode pseudo * update snapshots * back to old flex mode demo gray background color * set default col flex => 1 auto * change grid about flex mode description * update snapshots * improve grid introduce and fix with gutter bug * update snapshots * remove version
54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
@import '../../style/mixins/index';
|
|
|
|
// mixins for grid system
|
|
// ------------------------
|
|
|
|
.loop-grid-columns(@index, @class) when (@index > 0) {
|
|
.@{ant-prefix}-col@{class}-@{index} {
|
|
display: block;
|
|
flex: 0 0 percentage((@index / @grid-columns));
|
|
max-width: percentage((@index / @grid-columns));
|
|
}
|
|
.@{ant-prefix}-col@{class}-push-@{index} {
|
|
left: percentage((@index / @grid-columns));
|
|
}
|
|
.@{ant-prefix}-col@{class}-pull-@{index} {
|
|
right: percentage((@index / @grid-columns));
|
|
}
|
|
.@{ant-prefix}-col@{class}-offset-@{index} {
|
|
margin-left: percentage((@index / @grid-columns));
|
|
}
|
|
.@{ant-prefix}-col@{class}-order-@{index} {
|
|
order: @index;
|
|
}
|
|
.loop-grid-columns((@index - 1), @class);
|
|
}
|
|
|
|
.loop-grid-columns(@index, @class) when (@index = 0) {
|
|
.@{ant-prefix}-col@{class}-@{index} {
|
|
display: none;
|
|
}
|
|
.@{ant-prefix}-col-push-@{index} {
|
|
left: auto;
|
|
}
|
|
.@{ant-prefix}-col-pull-@{index} {
|
|
right: auto;
|
|
}
|
|
.@{ant-prefix}-col@{class}-push-@{index} {
|
|
left: auto;
|
|
}
|
|
.@{ant-prefix}-col@{class}-pull-@{index} {
|
|
right: auto;
|
|
}
|
|
.@{ant-prefix}-col@{class}-offset-@{index} {
|
|
margin-left: 0;
|
|
}
|
|
.@{ant-prefix}-col@{class}-order-@{index} {
|
|
order: 0;
|
|
}
|
|
}
|
|
|
|
.make-grid(@class: ~'') {
|
|
.loop-grid-columns(@grid-columns, @class);
|
|
}
|