pageflow-progress-navigation-bar 0.1.0 → 0.2.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
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MGZmNGNjMGJiM2E5ODkzMGI2YTg2NTBiNmM4ZmE5Y2ZlNThhNTA1OQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MDI5NWQyY2VhMzhlYjBmNmQ2M2I4Y2YwMDVhNGY1ZjQwMDJlY2VkNw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YTQ0MjhkMWY3Y2U0Mjg0ZTEyNTEyZDM2OTI0ZGY1OGE2ZjNlMGQyYzhlNDJk
|
|
10
|
+
ZTY1NGM0ZDcxOTExMTYwNWMxMjFmMTdlNDA1MDU3ODhhN2Q1MDQ4ZTc3Mjg5
|
|
11
|
+
ODBlZWE2Njc5NDQ3MDBlZWMyNDUxMzMyNGZkNDRjZTlhNzFlOWY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
N2VkYjNlMTNkNWI5ODEyZjljMTMwMzIzNDA0MWM1MGZjM2NlNTdkYzkyOWRm
|
|
14
|
+
MmM1NTQ1YzYzNzVmMGUyNjAyYjkzMWIwNzBmNDA3ZTkyNzJlODFjY2U4MTk1
|
|
15
|
+
MDE2YTRjZTU1YmVkYWJhMzY1OWJlNDdkZDhhNzcyOWRhMGNmZTM=
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
### Changes on `master`
|
|
4
|
+
|
|
5
|
+
[Compare changes](https://github.com/codevise/pageflow-progress-navigation-bar/compare/v0.2.0...master)
|
|
6
|
+
|
|
7
|
+
None so far.
|
|
8
|
+
|
|
9
|
+
### Version 0.2.0
|
|
10
|
+
|
|
11
|
+
2015-05-04
|
|
12
|
+
|
|
13
|
+
[Compare changes](https://github.com/codevise/pageflow-progress-navigation-bar/compare/v0.1.0...v0.2.0)
|
|
14
|
+
|
|
15
|
+
- Bug fix: Use vendor prefixes for `box-sizing` CSS property.
|
|
16
|
+
([#1](https://github.com/codevise/pageflow-progress-navigation-bar/pull/1))
|
|
17
|
+
|
|
3
18
|
### Version 0.1.0
|
|
4
19
|
|
|
5
20
|
2015-02-03
|
|
6
21
|
|
|
7
22
|
Initial release.
|
|
8
|
-
|
|
@@ -153,7 +153,7 @@ $progressbar-mobile-width: 14px;
|
|
|
153
153
|
border-bottom: 0px solid $nav-button-hr;
|
|
154
154
|
}
|
|
155
155
|
position: relative;
|
|
156
|
-
box-sizing
|
|
156
|
+
@include box-sizing(border-box);
|
|
157
157
|
|
|
158
158
|
&.mute {
|
|
159
159
|
height: 22.22%;
|
|
@@ -496,7 +496,7 @@ $progressbar-mobile-width: 14px;
|
|
|
496
496
|
|
|
497
497
|
li {
|
|
498
498
|
position: relative;
|
|
499
|
-
box-sizing
|
|
499
|
+
@include box-sizing(border-box);
|
|
500
500
|
|
|
501
501
|
&:last-child {
|
|
502
502
|
margin-bottom: 0;
|
|
@@ -511,7 +511,7 @@ $progressbar-mobile-width: 14px;
|
|
|
511
511
|
width: 100%;
|
|
512
512
|
background-color: $nav-dot-even;
|
|
513
513
|
border-bottom: 1px solid $bg-color;
|
|
514
|
-
box-sizing
|
|
514
|
+
@include box-sizing(border-box);
|
|
515
515
|
|
|
516
516
|
&.in_active_chapter {
|
|
517
517
|
background-color: $nav-active-chapter;
|
|
@@ -288,7 +288,7 @@ $nav-bg-color-transparent: $basic-background-color-transparent;
|
|
|
288
288
|
background-color: $nav-dot-even;
|
|
289
289
|
border-bottom: 1px solid $nav-bg-color;
|
|
290
290
|
border-bottom: 1px solid $nav-bg-color-transparent;
|
|
291
|
-
box-sizing
|
|
291
|
+
@include box-sizing(border-box);
|
|
292
292
|
|
|
293
293
|
&.in_active_chapter {
|
|
294
294
|
background-color: $nav-active-chapter;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pageflow-progress-navigation-bar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Codevise Solutions Ltd.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pageflow
|