Sha256: 98a6ef67512de6f7a55866ac2cc7d23500828f3ae599928bee2bdb64b5b8ae81

Contents?: true

Size: 1.48 KB

Versions: 15

Compression:

Stored size: 1.48 KB

Contents

@mixin box($orient: inline-axis, $pack: start, $align: stretch) {
  @include display-box;
  @include box-orient($orient);
  @include box-pack($pack);
  @include box-align($align);
}

@mixin display-box {
  display: -webkit-box;
  display: -moz-box;
  display: box;
}

@mixin box-orient($orient: inline-axis) {
// horizontal|vertical|inline-axis|block-axis|inherit
  -webkit-box-orient: $orient;
     -moz-box-orient: $orient;
          box-orient: $orient;
}

@mixin box-pack($pack: start) {
// start|end|center|justify
  -webkit-box-pack: $pack;
     -moz-box-pack: $pack;
          box-pack: $pack;
}

@mixin box-align($align: stretch) {
// start|end|center|baseline|stretch
  -webkit-box-align: $align;
     -moz-box-align: $align;
          box-align: $align;
}

@mixin box-direction($direction: normal) {
// normal|reverse|inherit
  -webkit-box-direction: $direction;
     -moz-box-direction: $direction;
          box-direction: $direction;
}
@mixin box-lines($lines: single) {
// single|multiple
  -webkit-box-lines: $lines;
     -moz-box-lines: $lines;
          box-lines: $lines;
}

@mixin box-ordinal-group($integer: 1) {
  -webkit-box-ordinal-group: $integer;
     -moz-box-ordinal-group: $integer;
          box-ordinal-group: $integer;
}

@mixin box-flex($value: 0.0) {
  -webkit-box-flex: $value;
     -moz-box-flex: $value;
          box-flex: $value;
}

@mixin box-flex-group($integer: 1) {
  -webkit-box-flex-group: $integer;
     -moz-box-flex-group: $integer;
          box-flex-group: $integer;
}

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
bootstrapped-rails-2.0.9.rc2 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.9.rc1 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.8.5 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.8.4 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.8.3 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.8.2 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.8.1 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.8 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.7.9 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.7.8 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.7.7 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.7.6 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.7.5 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.7.4 vendor/assets/stylesheets/custom_partials/flex-box.scss
bootstrapped-rails-2.0.7.3 vendor/assets/stylesheets/custom_partials/flex-box.scss