getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Headings - add silent selectors #294

Closed getdave closed 10 years ago

getdave commented 10 years ago

Update headings() mixin to the following

@mixin headings($from: 1, $to: 6){
    @for $i from $from through $to{
      h#{$i}, .h#{$i}, %h#{$i} {
        @content
      }
    }
}

Now includes a silent selector.