Skip to content

Instantly share code, notes, and snippets.

View DanielWright's full-sized avatar

Daniel Wright DanielWright

View GitHub Profile
@DanielWright
DanielWright / variant_helper.rb
Last active December 11, 2015 17:48
Localized buy-online link localization
require 'dynamo/country'
require 'aldo/online_store_locale'
module VariantsHelper
def where_to_buy(variant)
content_tag(:ul) do
list_items = []
if tag = buy_online_tag(variant)
list_items << content_tag(:li, tag, :class => t(:'.buy_online').parameterize)
list_items << content_tag(:li) { link_to t(:'.find_a_store'), locations_path }
@DanielWright
DanielWright / mixins.sass
Created January 22, 2013 20:34
fancy-horizontal-rule Sass mixin
@mixin fancy-horizontal-rule($background)
@include reset-box-model
@include background(image-url($background) center center no-repeat)
border-width: 0 0 0 0
margin: 10px 0
height: image-height($background)
width: 100%
*display: list-item
*filter: alpha(opacity=0)
@DanielWright
DanielWright / mixins.sass
Created August 27, 2012 17:27
Alternative to Compass's in-built +clearfix mixin
@mixin alternate-clearfix
overflow: visible
*zoom: 1
&::before, &::after
content: ''
display: table
&::after
clear: both
@DanielWright
DanielWright / README.md
Created November 16, 2011 18:51
Simple font-smoothing in Internet Explorer

The filter and zoom rules in the sample stylesheet above will apply a smoothing/blurring effect to text elements. In the sample stylesheet, these rules are applied to all headers, paragraphs, list items, and table cells, but in practice, you will want to tailor the application of the smoothing effect to only those elements rendering with significant aliasing.

Nota Bene: the filter appears to place an overflow: hidden-style block around the elements being smoothed, so do not apply these rules directly to elements that need to scroll, or which contain absolutely positioned elements that appear outside the boundaries of the element itself.