Sha256: 8d8b65155b527c137f4c3b65171bdf4a5235f772f0ccfc571a363749e7abd6f1

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

// =============================================
//         IE hacks by Gary Hepting 
//          Last Updated:2013-2-2
// =============================================

// variables & mixins
@import "variables";
@import "mixins";



html {
  &.lt-ie9 {
    min-width:$max-width !important;
    body {
      width:auto !important;
    }
    .container {
      width:auto !important;
    }
    // forms
    input, select, textarea {
      &:focus {
        border-color:$button-active;
      }
      &[type=checkbox], &[type=radio] {
        padding:0;
        background:none;
        border:none;
        display:inline-block;
        width:auto !important;
        height:auto !important;
        @include rounded(0);
      }
    }
    // custom select box
    span.select {
      &:after {
        display:none;
      }
      select {
        padding:0;
        height:2.1em;
        vertical-align:top;
        &:focus {
          border:1px solid $button-active;
          @include drop-shadow(#fff, 0, 0, 0);
        }
      }
    }
    // modals
    div.modal {
      .close, .fullscreen {
        padding:6px 7px;
        top:2px;
        right:2px;
      }
      .fullscreen {
        right:auto;
        left:2px;
      }
    }
  }
}

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
table_beet-0.0.1 lib/table_beet/formatters/html_template/data/scss/groundwork-ie.scss
groundworkcss-rails-0.1 vendor/assets/stylesheets/groundworkcss-scss/groundwork-ie.scss