ribbonit 0.2.0 → 0.2.1
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/CHANGELOG.md +3 -4
- data/lib/ribbonit/version.rb +1 -1
- data/vendor/assets/stylesheets/_ribbon.sass +19 -11
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a55b27e404938b7ef984d33d6954ec1c8fd3da96
|
|
4
|
+
data.tar.gz: 93c489cfcc963a51ce748546f5b196ce5dadbbdc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96525a7a80502abd1ab189954114b340f969e2905f99edc736e0da420ff5a24d84ff0ddc66a2aa0aabd13efac81b78ac9e4427ecd97460c18e2d656db0535af6
|
|
7
|
+
data.tar.gz: d573bb97c9d3dc597c90f369c0cf1918490621bd9966f26b8d9ecc3b9b7f06b7759d1912fa343c6eeff304fa6bff1eb6493ec6b2f5f869b3b9a600765fba2fc5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
4
|
-
|
|
5
|
-
[Full Changelog](https://github.com/anthony-robin/Ribbonit/compare/v0.1.0...HEAD)
|
|
3
|
+
## [v0.2.0](https://github.com/anthony-robin/Ribbonit/tree/v0.2.0) (2017-05-28)
|
|
4
|
+
[Full Changelog](https://github.com/anthony-robin/Ribbonit/compare/v0.1.0...v0.2.0)
|
|
6
5
|
|
|
7
6
|
**Implemented enhancements:**
|
|
8
7
|
|
|
@@ -38,4 +37,4 @@
|
|
|
38
37
|
|
|
39
38
|
|
|
40
39
|
|
|
41
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
|
40
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/lib/ribbonit/version.rb
CHANGED
|
@@ -5,46 +5,54 @@ $top: 33px
|
|
|
5
5
|
$left: -66px
|
|
6
6
|
$offset: -5px
|
|
7
7
|
|
|
8
|
+
.ribbon,
|
|
9
|
+
.ribbon__container
|
|
10
|
+
-webkit-box-sizing: border-box
|
|
11
|
+
box-sizing: border-box
|
|
12
|
+
|
|
8
13
|
.ribbon
|
|
14
|
+
display: block
|
|
9
15
|
position: absolute
|
|
10
16
|
top: 0
|
|
11
17
|
left: 0
|
|
12
|
-
z-index: 1001
|
|
13
|
-
display: block
|
|
14
|
-
overflow: hidden
|
|
15
18
|
width: $ribbon_width
|
|
16
19
|
height: $ribbon_height
|
|
17
|
-
font-size: 16px
|
|
18
20
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif
|
|
21
|
+
font-size: 16px
|
|
19
22
|
line-height: 1rem
|
|
23
|
+
overflow: hidden
|
|
24
|
+
z-index: 1001
|
|
20
25
|
|
|
21
26
|
// Container
|
|
22
27
|
&__container
|
|
23
28
|
position: absolute
|
|
24
29
|
top: $top
|
|
25
30
|
left: $left
|
|
31
|
+
width: 260px
|
|
26
32
|
padding: 7px 40px
|
|
27
|
-
|
|
33
|
+
transform: rotate(-45deg)
|
|
28
34
|
background: #333
|
|
29
|
-
|
|
30
|
-
|
|
35
|
+
color: #fff
|
|
36
|
+
font-size: 1rem
|
|
31
37
|
text-align: center
|
|
32
38
|
text-decoration: none
|
|
33
|
-
|
|
34
|
-
|
|
39
|
+
box-shadow: 1px 1px 3px rgba(#000, 0.8)
|
|
40
|
+
|
|
35
41
|
a
|
|
36
42
|
display: block
|
|
37
43
|
color: inherit
|
|
38
44
|
text-decoration: none
|
|
45
|
+
&:hover
|
|
46
|
+
color: inherit
|
|
39
47
|
|
|
40
48
|
&::before, &::after
|
|
49
|
+
display: block
|
|
41
50
|
position: absolute
|
|
42
51
|
top: 1px
|
|
43
52
|
left: 0
|
|
44
|
-
display: block
|
|
45
53
|
width: 100%
|
|
46
54
|
height: 1px
|
|
47
|
-
background: #
|
|
55
|
+
background: #fff
|
|
48
56
|
content: ''
|
|
49
57
|
|
|
50
58
|
&::after
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ribbonit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anthony Robin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|