Sassy-Buttons
Sassy-Buttons copied to clipboard
I've added the gem to the gemfile and added @import "sassy-buttons" to my stylesheet, but when I run "compass install sassy-buttons" it says "No such framework: sassy-buttons". I'm running Rails...
in file: https://github.com/jhardy/Sassy-Buttons/blob/master/stylesheets/sassy-buttons/_sassy-button-styles.sass#L13 Border is defined without using $sb-border-width variable. It could be nice to have $sb-border witch would allow to disable border completely, if needed.
The documentation says you should add: @import "sassy-buttons" to your .scss file. But if you have installed using compass, it appears this should actually be: @import "sassybuttons"
Hello, I just tried installing sassy-buttons with Compass 1.0.0.alpha.19 and Sass 3.3.7 I'm getting this error when I do a compass watch: error sass/style.scss (Line 15 of _sassy-button-pseudo-states.sass: Base-level rules...
It would be kinda nice if it were possible to use this in such a way as to not require ruby. To put it another way, I'm working on a...
For the life of me, I can't get padding changes to compile. There's nothing else overriding the padding. I'm using version 0.2.6. Here is my _sassybuttons.scss file... ``` @import "sassy-buttons";...
See screenshot here --> http://ubuntuone.com/1byKwIl53oUg5MD6GpNnmm I have applied the below code: ``` .button { // @include sassy-button-structure(border-radius, font-size, padding); @include sassy-button-structure(8px, 1.5em, 10px); // @include sassy-button-gradient(gradient-style, first-color, second-color, text-color, text-style,...
Just started using the sassy buttons. In _sassy-button-pseudo-state.sass I noticed that :hover, "text-decoration: none" is outside of the conditionals and Sass does not combined them after processing the mixed in....
I was on version 0.2 and was having issue with text color variable. I updated and it went to version 0.2.6 and for the project I was on it worked...
There is no value _false_ for background. So you should add lines to _sassy-button-pseudo-states.sass ``` ruby @mixin sassy-pseudo-states($first-color, $second-color, $style) @if $second-color == false $second-color: none ```