pageflow-outline-navigation-bar 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +12 -8
- data/app/assets/stylesheets/pageflow/outline_navigation_bar/themes/default/parent_page_button.scss +1 -1
- data/app/assets/stylesheets/pageflow/outline_navigation_bar/themes/default/scroller.scss +23 -12
- data/lib/pageflow/outline_navigation_bar/version.rb +1 -1
- data/pageflow-outline-navigation-bar.gemspec +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3c5186f55e25b269309dc694cbf7c031e70c4db6d9a14f677067a7762ab99a9c
|
4
|
+
data.tar.gz: a2ad052adc82f60913ce151ac73f5c2980979c8c2605680d5ee422f66592ffeb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c009030c4b72464faf51b4d4f2adb3ff1f281d70577f199c55039c9b1554703677255b361202c1f61f207d0cb0324a1320b24ffa3f8e5c3fd7cc4a00d2483111
|
7
|
+
data.tar.gz: 8da65be5d037919dad3fcb376575b36206d28d23019dc6e9fef88519751ebdd4513bb7870270c6401420fb81885d094a1c1b550874630568f0806803f32a4628
|
data/CHANGELOG.md
CHANGED
@@ -1,16 +1,20 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
### Version 1.
|
3
|
+
### Version 1.1.0
|
4
4
|
|
5
|
-
|
5
|
+
2018-12-10
|
6
6
|
|
7
|
-
[Compare changes](https://github.com/codevise/pageflow-outline-navigation-bar/compare/0-
|
7
|
+
[Compare changes](https://github.com/codevise/pageflow-outline-navigation-bar/compare/1-0-stable...v1.1.0)
|
8
8
|
|
9
|
-
-
|
10
|
-
([#
|
11
|
-
-
|
12
|
-
([#
|
9
|
+
- Add support for Pageflow 13
|
10
|
+
([#5](https://github.com/codevise/pageflow-outline-navigation-bar/pull/5))
|
11
|
+
- Add support for right to left layout
|
12
|
+
([#4](https://github.com/codevise/pageflow-outline-navigation-bar/pull/4))
|
13
|
+
- Swap bourbon box-shadow mixin for regular css3 notation
|
14
|
+
([#7](https://github.com/codevise/pageflow-outline-navigation-bar/pull/7))
|
15
|
+
- Added typography theme variables
|
16
|
+
([#6](https://github.com/codevise/pageflow-outline-navigation-bar/pull/6))
|
13
17
|
|
14
18
|
See
|
15
|
-
[0-
|
19
|
+
[1-0-stable branch](https://github.com/codevise/pageflow-outline-navigation-bar/blob/1-0-stable/CHANGELOG.md)
|
16
20
|
for previous changes.
|
@@ -1,3 +1,5 @@
|
|
1
|
+
$outline-navigation-bar-chapter-typography: () !default;
|
2
|
+
|
1
3
|
.chapters_panel {
|
2
4
|
overflow: hidden;
|
3
5
|
|
@@ -25,7 +27,7 @@
|
|
25
27
|
}
|
26
28
|
|
27
29
|
li {
|
28
|
-
margin-
|
30
|
+
@include margin-start(6px);
|
29
31
|
padding-bottom: 2px;
|
30
32
|
}
|
31
33
|
|
@@ -33,13 +35,19 @@
|
|
33
35
|
display: block;
|
34
36
|
padding: 0 12px 0 6px;
|
35
37
|
|
36
|
-
|
38
|
+
@include typography(
|
39
|
+
$outline-navigation-bar-chapter-typography,
|
40
|
+
(
|
41
|
+
font-weight: normal,
|
42
|
+
font-size: 17px,
|
43
|
+
line-height: 20px,
|
44
|
+
text-decoration: none,
|
45
|
+
white-space: nowrap
|
46
|
+
)
|
47
|
+
);
|
48
|
+
|
37
49
|
color: $basic-text-color;
|
38
|
-
|
39
|
-
font-size: 17px;
|
40
|
-
line-height: 20px;
|
41
|
-
border-left: solid 6px rgba(255, 255, 255, 0.3);
|
42
|
-
white-space: nowrap;
|
50
|
+
@include border-start(solid 6px rgba(255, 255, 255, 0.3));
|
43
51
|
|
44
52
|
height: 10px;
|
45
53
|
@include transition(height 0.5s ease);
|
@@ -52,19 +60,22 @@
|
|
52
60
|
|
53
61
|
a.in_active_chapter {
|
54
62
|
color: $outline-navigation-bar-active-chapter-color;
|
55
|
-
border-
|
63
|
+
@include border-start(solid 6px $outline-navigation-bar-active-chapter-color);
|
56
64
|
}
|
57
65
|
}
|
58
66
|
|
59
67
|
&.fixed {
|
60
68
|
.chapters_panel {
|
61
69
|
li {
|
62
|
-
margin-
|
70
|
+
@include margin-start(3px);
|
63
71
|
}
|
64
72
|
|
65
73
|
a {
|
66
|
-
border-
|
67
|
-
padding: 0
|
74
|
+
@include border-start-width(2px);
|
75
|
+
padding-top: 0;
|
76
|
+
padding-bottom: 0;
|
77
|
+
@include padding-start(6px);
|
78
|
+
@include padding-end(10px);
|
68
79
|
}
|
69
80
|
}
|
70
81
|
}
|
@@ -90,4 +101,4 @@
|
|
90
101
|
@include transition-delay(0.3s);
|
91
102
|
}
|
92
103
|
}
|
93
|
-
}
|
104
|
+
}
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
|
19
19
|
spec.required_ruby_version = '~> 2.1'
|
20
20
|
|
21
|
-
spec.add_runtime_dependency 'pageflow', ['>=
|
21
|
+
spec.add_runtime_dependency 'pageflow', ['>= 12.2.x', '< 14']
|
22
22
|
spec.add_runtime_dependency 'pageflow-public-i18n', '~> 1.0'
|
23
23
|
|
24
24
|
spec.add_development_dependency 'bundler', '~> 1.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pageflow-outline-navigation-bar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.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:
|
11
|
+
date: 2018-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pageflow
|
@@ -16,20 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 12.2.x
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '14'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 12.2.x
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '14'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: pageflow-public-i18n
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
173
|
version: '0'
|
174
174
|
requirements: []
|
175
175
|
rubyforge_project:
|
176
|
-
rubygems_version: 2.
|
176
|
+
rubygems_version: 2.7.5
|
177
177
|
signing_key:
|
178
178
|
specification_version: 4
|
179
179
|
summary: Pageflow navigation widget.
|