Skip to content

Instantly share code, notes, and snippets.

@joneff
Created August 27, 2012 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joneff/3489981 to your computer and use it in GitHub Desktop.
Save joneff/3489981 to your computer and use it in GitHub Desktop.
Gist for Sass blogpost
@import "common/__telerik.mixins.scss";
.RadComboBox {
@include self-clearng;
}
@mixin reset {
margin: 0;
padding: 0;
border: 0;
background: none;
list-style: none;
}
.RadAutoCompleteBox {
@include reset;
}
.RadAutoCompleteBox {
width: 160px;
cursor: default;
.racTokenList {
padding: 1px;
border: 1px solid;
overflow: hidden;
}
// More styles here
}
$control-name: "RadAutoCompleteBox";
$skin-name: "Default";
$font-family: "Segoe UI", Arial, Helvetica, sans-serif;
.#{$control-name}_#{$skin-name} {
font-family: $font-family;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment