Skip to content

Commit

Permalink
css improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
rderoldan1 committed Jan 15, 2014
1 parent 78c593e commit cd918a9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Also you can use inside a form

- Improve css
- Add functions to extend the toolbar
- Add preview option


## Contributing
Expand Down
16 changes: 15 additions & 1 deletion app/assets/stylesheets/md_simple_editor.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,21 @@
color: #333;
background-color: #fff;
border-color: #ccc;
&:hover{
color: white;
text-decoration: none;
text-shadow: #ffff 0px -1px 0px;
background-color: #3072b3;
background-image: -webkit-linear-gradient(top, #599bcd, #3072b3);
background-image: -moz-linear-gradient(top, #599bcd, #3072b3);
background-image: linear-gradient(top, #599bcd, #3072b3);
border-color: #2a65a0;
background-repeat: repeat no-repeat;
}

&:hover, &:focus, &:active{
outline: 0; outline-style:none; outline-width:0;
}

}
&>.btn:first-child{
Expand All @@ -56,7 +71,6 @@
}
}


.markdown{
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
Expand Down
2 changes: 1 addition & 1 deletion md_simple_editor.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]"]
spec.description = %q{Simple editor for markdown and rails}
spec.summary = %q{Simple editor for markdown and rails}
spec.homepage = ""
spec.homepage = "http://rderoldan1.github.io/md_simple_editor/"
spec.license = "MIT"

spec.files = `git ls-files`.split($/)
Expand Down

0 comments on commit cd918a9

Please sign in to comment.