Sha256: 60b3379c3680ac1c5008a3beb4908dd649d5af8db12288a65bfaa77acfc07fba

Contents?: true

Size: 707 Bytes

Versions: 3

Compression:

Stored size: 707 Bytes

Contents

// Allow a span to be implicitly wrapped to set grid backgrounds, while allowing 
// a responsive stylesheet to know about the wrapper.
.grid-wrapper {
  margin-left: 0; // overrides the corresponding style from 'span'
  float: left;
}

// Allow a row to have an right gutter equal to a left gutter 
.row-flush-right { 
  margin-right: -$gridGutterWidth;

  .span-flush-right { 
    padding-right: $gridGutterWidth;
  }
}

// For use in inlined elements in combination with existing padding
.gutter { 
  margin-left: $gridGutterWidth;
}
.gutter-right {
  margin-right: $gridGutterWidth/2;
}

// Put content into a box with gutters compatible with the grid
.box-content {
  padding: 20px $gridGutterWidth;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openshift-origin-console-1.3.4 app/assets/stylesheets/_grid.scss
openshift-origin-console-1.3.3 app/assets/stylesheets/_grid.scss
openshift-origin-console-1.3.2 app/assets/stylesheets/_grid.scss