Skip to content

Instantly share code, notes, and snippets.

@benknight
Created February 8, 2014 01:24
Show Gist options
  • Select an option

  • Save benknight/8875236 to your computer and use it in GitHub Desktop.

Select an option

Save benknight/8875236 to your computer and use it in GitHub Desktop.
Removes border from baz sidebar
// ----
// Sass (v3.3.0.rc.3)
// Compass (v1.0.0.alpha.17)
// ----
@import "compass/css3/box-shadow";
.siderbar .open-rail {
margin-left: 0;
padding-left: 0;
}
.layout-border {
.column-beta {
@include box-shadow(none);
}
.column-alpha {
border: none;
}
}
.siderbar .open-rail {
margin-left: 0;
padding-left: 0;
}
.layout-border .column-beta {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.layout-border .column-alpha {
border: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment