md_simple_editor 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/app/assets/stylesheets/md_simple_editor.css.scss +15 -1
- data/lib/md_simple_editor/version.rb +1 -1
- data/md_simple_editor.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 831945c1742b329a40eb6c17e2a672fbce267bc7
|
|
4
|
+
data.tar.gz: bbf1e130a4737dc274a26d3e15545ca35a9f05a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db83c4491b01f26af5db779c80c897bf10a5c119c678488315b453517fdd1203b84c8a44c446fe665890969add41732e7d821ccb94ad378d3f434772c6c1998b
|
|
7
|
+
data.tar.gz: 4fbe777a49afffb61485f9f6d6042014852013f5697ac0a0b1ce4476b1e0d93837471c93e52e1f923f7829760914b879a74e5f9ae8c614b08a944bb4a52cceff
|
data/README.md
CHANGED
|
@@ -37,6 +37,21 @@
|
|
|
37
37
|
color: #333;
|
|
38
38
|
background-color: #fff;
|
|
39
39
|
border-color: #ccc;
|
|
40
|
+
&:hover{
|
|
41
|
+
color: white;
|
|
42
|
+
text-decoration: none;
|
|
43
|
+
text-shadow: #ffff 0px -1px 0px;
|
|
44
|
+
background-color: #3072b3;
|
|
45
|
+
background-image: -webkit-linear-gradient(top, #599bcd, #3072b3);
|
|
46
|
+
background-image: -moz-linear-gradient(top, #599bcd, #3072b3);
|
|
47
|
+
background-image: linear-gradient(top, #599bcd, #3072b3);
|
|
48
|
+
border-color: #2a65a0;
|
|
49
|
+
background-repeat: repeat no-repeat;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&:hover, &:focus, &:active{
|
|
53
|
+
outline: 0; outline-style:none; outline-width:0;
|
|
54
|
+
}
|
|
40
55
|
|
|
41
56
|
}
|
|
42
57
|
&>.btn:first-child{
|
|
@@ -56,7 +71,6 @@
|
|
|
56
71
|
}
|
|
57
72
|
}
|
|
58
73
|
|
|
59
|
-
|
|
60
74
|
.markdown{
|
|
61
75
|
font-family: Helvetica, arial, sans-serif;
|
|
62
76
|
font-size: 14px;
|
data/md_simple_editor.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["rderoldan1@gmail.com"]
|
|
11
11
|
spec.description = %q{Simple editor for markdown and rails}
|
|
12
12
|
spec.summary = %q{Simple editor for markdown and rails}
|
|
13
|
-
spec.homepage = ""
|
|
13
|
+
spec.homepage = "http://rderoldan1.github.io/md_simple_editor/"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: md_simple_editor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ruben Espinosa
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-01-
|
|
11
|
+
date: 2014-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -72,7 +72,7 @@ files:
|
|
|
72
72
|
- lib/md_simple_editor/engine.rb
|
|
73
73
|
- lib/md_simple_editor/version.rb
|
|
74
74
|
- md_simple_editor.gemspec
|
|
75
|
-
homepage:
|
|
75
|
+
homepage: http://rderoldan1.github.io/md_simple_editor/
|
|
76
76
|
licenses:
|
|
77
77
|
- MIT
|
|
78
78
|
metadata: {}
|