_flex-mixins.scss 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. // Flexbox Mixins
  2. // http://philipwalton.github.io/solved-by-flexbox/
  3. // https://github.com/philipwalton/solved-by-flexbox
  4. //
  5. // Copyright (c) 2013 Brian Franco
  6. //
  7. // Permission is hereby granted, free of charge, to any person obtaining a
  8. // copy of this software and associated documentation files (the
  9. // "Software"), to deal in the Software without restriction, including
  10. // without limitation the rights to use, copy, modify, merge, publish,
  11. // distribute, sublicense, and/or sell copies of the Software, and to
  12. // permit persons to whom the Software is furnished to do so, subject to
  13. // the following conditions:
  14. // The above copyright notice and this permission notice shall be included
  15. // in all copies or substantial portions of the Software.
  16. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  17. // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  18. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  19. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  20. // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  21. // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  22. // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23. //
  24. // This is a set of mixins for those who want to mess around with flexbox
  25. // using the native support of current browsers. For full support table
  26. // check: http://caniuse.com/flexbox
  27. //
  28. // Basically this will use:
  29. //
  30. // * Fallback, old syntax (IE10, mobile webkit browsers - no wrapping)
  31. // * Final standards syntax (FF, Safari, Chrome, IE11, Opera)
  32. //
  33. // This was inspired by:
  34. //
  35. // * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/
  36. //
  37. // With help from:
  38. //
  39. // * http://w3.org/tr/css3-flexbox/
  40. // * http://the-echoplex.net/flexyboxes/
  41. // * http://msdn.microsoft.com/en-us/library/ie/hh772069(v=vs.85).aspx
  42. // * http://css-tricks.com/using-flexbox/
  43. // * http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/
  44. // * https://developer.mozilla.org/en-us/docs/web/guide/css/flexible_boxes
  45. //----------------------------------------------------------------------
  46. // Flexbox Containers
  47. //
  48. // The 'flex' value causes an element to generate a block-level flex
  49. // container box.
  50. //
  51. // The 'inline-flex' value causes an element to generate a inline-level
  52. // flex container box.
  53. //
  54. // display: flex | inline-flex
  55. //
  56. // http://w3.org/tr/css3-flexbox/#flex-containers
  57. //
  58. // (Placeholder selectors for each type, for those who rather @extend)
  59. @mixin flexbox {
  60. display: -webkit-box;
  61. display: -webkit-flex;
  62. display: -moz-flex;
  63. display: -ms-flexbox;
  64. display: flex;
  65. }
  66. %flexbox { @include flexbox; }
  67. //----------------------------------
  68. @mixin inline-flex {
  69. display: -webkit-inline-box;
  70. display: -webkit-inline-flex;
  71. display: -moz-inline-flex;
  72. display: -ms-inline-flexbox;
  73. display: inline-flex;
  74. }
  75. %inline-flex { @include inline-flex; }
  76. //----------------------------------------------------------------------
  77. // Flexbox Direction
  78. //
  79. // The 'flex-direction' property specifies how flex items are placed in
  80. // the flex container, by setting the direction of the flex container's
  81. // main axis. This determines the direction that flex items are laid out in.
  82. //
  83. // Values: row | row-reverse | column | column-reverse
  84. // Default: row
  85. //
  86. // http://w3.org/tr/css3-flexbox/#flex-direction-property
  87. @mixin flex-direction($value: row) {
  88. @if $value == row-reverse {
  89. -webkit-box-direction: reverse;
  90. -webkit-box-orient: horizontal;
  91. } @else if $value == column {
  92. -webkit-box-direction: normal;
  93. -webkit-box-orient: vertical;
  94. } @else if $value == column-reverse {
  95. -webkit-box-direction: reverse;
  96. -webkit-box-orient: vertical;
  97. } @else {
  98. -webkit-box-direction: normal;
  99. -webkit-box-orient: horizontal;
  100. }
  101. -webkit-flex-direction: $value;
  102. -moz-flex-direction: $value;
  103. -ms-flex-direction: $value;
  104. flex-direction: $value;
  105. }
  106. // Shorter version:
  107. @mixin flex-dir($args...) { @include flex-direction($args...); }
  108. //----------------------------------------------------------------------
  109. // Flexbox Wrap
  110. //
  111. // The 'flex-wrap' property controls whether the flex container is single-line
  112. // or multi-line, and the direction of the cross-axis, which determines
  113. // the direction new lines are stacked in.
  114. //
  115. // Values: nowrap | wrap | wrap-reverse
  116. // Default: nowrap
  117. //
  118. // http://w3.org/tr/css3-flexbox/#flex-wrap-property
  119. @mixin flex-wrap($value: nowrap) {
  120. // No Webkit Box fallback.
  121. -webkit-flex-wrap: $value;
  122. -moz-flex-wrap: $value;
  123. @if $value == nowrap {
  124. -ms-flex-wrap: none;
  125. } @else {
  126. -ms-flex-wrap: $value;
  127. }
  128. flex-wrap: $value;
  129. }
  130. //----------------------------------------------------------------------
  131. // Flexbox Flow (shorthand)
  132. //
  133. // The 'flex-flow' property is a shorthand for setting the 'flex-direction'
  134. // and 'flex-wrap' properties, which together define the flex container's
  135. // main and cross axes.
  136. //
  137. // Values: <flex-direction> | <flex-wrap>
  138. // Default: row nowrap
  139. //
  140. // http://w3.org/tr/css3-flexbox/#flex-flow-property
  141. @mixin flex-flow($values: (row nowrap)) {
  142. // No Webkit Box fallback.
  143. -webkit-flex-flow: $values;
  144. -moz-flex-flow: $values;
  145. -ms-flex-flow: $values;
  146. flex-flow: $values;
  147. }
  148. //----------------------------------------------------------------------
  149. // Flexbox Order
  150. //
  151. // The 'order' property controls the order in which flex items appear within
  152. // their flex container, by assigning them to ordinal groups.
  153. //
  154. // Default: 0
  155. //
  156. // http://w3.org/tr/css3-flexbox/#order-property
  157. @mixin order($int: 0) {
  158. -webkit-box-ordinal-group: $int + 1;
  159. -webkit-order: $int;
  160. -moz-order: $int;
  161. -ms-flex-order: $int;
  162. order: $int;
  163. }
  164. //----------------------------------------------------------------------
  165. // Flexbox Grow
  166. //
  167. // The 'flex-grow' property sets the flex grow factor. Negative numbers
  168. // are invalid.
  169. //
  170. // Default: 0
  171. //
  172. // http://w3.org/tr/css3-flexbox/#flex-grow-property
  173. @mixin flex-grow($int: 0) {
  174. -webkit-box-flex: $int;
  175. -webkit-flex-grow: $int;
  176. -moz-flex-grow: $int;
  177. -ms-flex-positive: $int;
  178. flex-grow: $int;
  179. }
  180. //----------------------------------------------------------------------
  181. // Flexbox Shrink
  182. //
  183. // The 'flex-shrink' property sets the flex shrink factor. Negative numbers
  184. // are invalid.
  185. //
  186. // Default: 1
  187. //
  188. // http://w3.org/tr/css3-flexbox/#flex-shrink-property
  189. @mixin flex-shrink($int: 1) {
  190. -webkit-flex-shrink: $int;
  191. -moz-flex-shrink: $int;
  192. -ms-flex-negative: $int;
  193. flex-shrink: $int;
  194. }
  195. //----------------------------------------------------------------------
  196. // Flexbox Basis
  197. //
  198. // The 'flex-basis' property sets the flex basis. Negative lengths are invalid.
  199. //
  200. // Values: Like "width"
  201. // Default: auto
  202. //
  203. // http://www.w3.org/TR/css3-flexbox/#flex-basis-property
  204. @mixin flex-basis($value: auto) {
  205. -webkit-flex-basis: $value;
  206. -moz-flex-basis: $value;
  207. -ms-flex-preferred-size: $value;
  208. flex-basis: $value;
  209. }
  210. //----------------------------------------------------------------------
  211. // Flexbox "Flex" (shorthand)
  212. //
  213. // The 'flex' property specifies the components of a flexible length: the
  214. // flex grow factor and flex shrink factor, and the flex basis. When an
  215. // element is a flex item, 'flex' is consulted instead of the main size
  216. // property to determine the main size of the element. If an element is
  217. // not a flex item, 'flex' has no effect.
  218. //
  219. // Values: none | <flex-grow> <flex-shrink> || <flex-basis>
  220. // Default: See individual properties (1 1 0).
  221. //
  222. // http://w3.org/tr/css3-flexbox/#flex-property
  223. @mixin flex($fg: 1, $fs: null, $fb: null) {
  224. // Set a variable to be used by box-flex properties
  225. $fg-boxflex: $fg;
  226. // Box-Flex only supports a flex-grow value so let's grab the
  227. // first item in the list and just return that.
  228. @if type-of($fg) == 'list' {
  229. $fg-boxflex: nth($fg, 1);
  230. }
  231. -webkit-box-flex: $fg-boxflex;
  232. -webkit-flex: $fg $fs $fb;
  233. -moz-box-flex: $fg-boxflex;
  234. -moz-flex: $fg $fs $fb;
  235. -ms-flex: $fg $fs $fb;
  236. flex: $fg $fs $fb;
  237. }
  238. //----------------------------------------------------------------------
  239. // Flexbox Justify Content
  240. //
  241. // The 'justify-content' property aligns flex items along the main axis
  242. // of the current line of the flex container. This is done after any flexible
  243. // lengths and any auto margins have been resolved. Typically it helps distribute
  244. // extra free space leftover when either all the flex items on a line are
  245. // inflexible, or are flexible but have reached their maximum size. It also
  246. // exerts some control over the alignment of items when they overflow the line.
  247. //
  248. // Note: 'space-*' values not supported in older syntaxes.
  249. //
  250. // Values: flex-start | flex-end | center | space-between | space-around
  251. // Default: flex-start
  252. //
  253. // http://w3.org/tr/css3-flexbox/#justify-content-property
  254. @mixin justify-content($value: flex-start) {
  255. @if $value == flex-start {
  256. -webkit-box-pack: start;
  257. -ms-flex-pack: start;
  258. } @else if $value == flex-end {
  259. -webkit-box-pack: end;
  260. -ms-flex-pack: end;
  261. } @else if $value == space-between {
  262. -webkit-box-pack: justify;
  263. -ms-flex-pack: justify;
  264. } @else if $value == space-around {
  265. -ms-flex-pack: distribute;
  266. } @else {
  267. -webkit-box-pack: $value;
  268. -ms-flex-pack: $value;
  269. }
  270. -webkit-justify-content: $value;
  271. -moz-justify-content: $value;
  272. justify-content: $value;
  273. }
  274. // Shorter version:
  275. @mixin flex-just($args...) { @include justify-content($args...); }
  276. //----------------------------------------------------------------------
  277. // Flexbox Align Items
  278. //
  279. // Flex items can be aligned in the cross axis of the current line of the
  280. // flex container, similar to 'justify-content' but in the perpendicular
  281. // direction. 'align-items' sets the default alignment for all of the flex
  282. // container's items, including anonymous flex items. 'align-self' allows
  283. // this default alignment to be overridden for individual flex items. (For
  284. // anonymous flex items, 'align-self' always matches the value of 'align-items'
  285. // on their associated flex container.)
  286. //
  287. // Values: flex-start | flex-end | center | baseline | stretch
  288. // Default: stretch
  289. //
  290. // http://w3.org/tr/css3-flexbox/#align-items-property
  291. @mixin align-items($value: stretch) {
  292. @if $value == flex-start {
  293. -webkit-box-align: start;
  294. -ms-flex-align: start;
  295. } @else if $value == flex-end {
  296. -webkit-box-align: end;
  297. -ms-flex-align: end;
  298. } @else {
  299. -webkit-box-align: $value;
  300. -ms-flex-align: $value;
  301. }
  302. -webkit-align-items: $value;
  303. -moz-align-items: $value;
  304. align-items: $value;
  305. }
  306. //----------------------------------
  307. // Flexbox Align Self
  308. //
  309. // Values: auto | flex-start | flex-end | center | baseline | stretch
  310. // Default: auto
  311. @mixin align-self($value: auto) {
  312. // No Webkit Box Fallback.
  313. -webkit-align-self: $value;
  314. -moz-align-self: $value;
  315. @if $value == flex-start {
  316. -ms-flex-item-align: start;
  317. } @else if $value == flex-end {
  318. -ms-flex-item-align: end;
  319. } @else {
  320. -ms-flex-item-align: $value;
  321. }
  322. align-self: $value;
  323. }
  324. //----------------------------------------------------------------------
  325. // Flexbox Align Content
  326. //
  327. // The 'align-content' property aligns a flex container's lines within the
  328. // flex container when there is extra space in the cross-axis, similar to
  329. // how 'justify-content' aligns individual items within the main-axis. Note,
  330. // this property has no effect when the flexbox has only a single line.
  331. //
  332. // Values: flex-start | flex-end | center | space-between | space-around | stretch
  333. // Default: stretch
  334. //
  335. // http://w3.org/tr/css3-flexbox/#align-content-property
  336. @mixin align-content($value: stretch) {
  337. // No Webkit Box Fallback.
  338. -webkit-align-content: $value;
  339. -moz-align-content: $value;
  340. @if $value == flex-start {
  341. -ms-flex-line-pack: start;
  342. } @else if $value == flex-end {
  343. -ms-flex-line-pack: end;
  344. } @else {
  345. -ms-flex-line-pack: $value;
  346. }
  347. align-content: $value;
  348. }