fni-docs-theme 0.6.1 → 0.6.2

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,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e70d0e90dc5b556e1bec064d67d458e792802fa31223e6e23583bb0b772bf7d3
4
- data.tar.gz: b67f7f5aa6a1136d3d096d85d5ec455c2c25d3f344c7993bc06716aac16122f2
3
+ metadata.gz: ef0f1a17950b15ec68df995ce34554e7735129cd973fda8eff12d304ab334510
4
+ data.tar.gz: f8b98febd81c481ae84590dc1891f9540d15d4182f0c8a58805acc5571522fdc
5
5
  SHA512:
6
- metadata.gz: 7e8be9d8596a5eaaa14c09b65e121fbf819e70740a8be48d3bedc7327de6de7529697dca678ffb9cedc0df4bd341267ff295e6e9d2b48fe9faa1886005098b2a
7
- data.tar.gz: 200aa0ae8db22e8d6b5456ebbecd53523fe574f9f2a06dcc6d113593cce6b4d7aa84e9b514ce59b902b9b0675a14e7d1f4b3293c2632e979f4d51851ffbeab5b
6
+ metadata.gz: 615ed2a27fbe9bdf3ed940d3f5e01e60b394ed8714062808a24d6529ac6ba5a48ae553368262066056bc0e17c652a2673556f0913089cadf5340f4e71b168b7e
7
+ data.tar.gz: 0cebb94ecbfc2fe9ebbb4f330082a40fb11c046d378d52ac75034c30d551c82e67f28fa23bdccb94b71318c8f400343a239082a9b5618ad7a69fcaaf903ceb05
@@ -67,19 +67,19 @@
67
67
  }
68
68
  width: $nav-list-item-height-sm;
69
69
  height: $nav-list-item-height-sm;
70
- padding-top: #{$nav-list-item-height-sm / 4};
71
- padding-right: #{$nav-list-item-height-sm / 4};
72
- padding-bottom: #{$nav-list-item-height-sm / 4};
73
- padding-left: #{$nav-list-item-height-sm / 4};
70
+ padding-top: calc($nav-list-item-height-sm / 4);
71
+ padding-right: calc($nav-list-item-height-sm / 4);
72
+ padding-bottom: calc($nav-list-item-height-sm / 4);
73
+ padding-left: calc($nav-list-item-height-sm / 4);
74
74
  color: $link-color;
75
75
 
76
76
  @include mq(md) {
77
77
  width: $nav-list-item-height;
78
78
  height: $nav-list-item-height;
79
- padding-top: #{$nav-list-item-height / 4};
80
- padding-right: #{$nav-list-item-height / 4};
81
- padding-bottom: #{$nav-list-item-height / 4};
82
- padding-left: #{$nav-list-item-height / 4};
79
+ padding-top: calc($nav-list-item-height / 4);
80
+ padding-right: calc($nav-list-item-height / 4);
81
+ padding-bottom: calc($nav-list-item-height / 4);
82
+ padding-left: calc($nav-list-item-height / 4);
83
83
  }
84
84
 
85
85
  &:hover {
data/_sass/search.scss CHANGED
@@ -8,7 +8,7 @@
8
8
  flex-grow: 1;
9
9
  height: $sp-10;
10
10
  padding: $sp-2;
11
- transition: padding linear #{$transition-duration / 2};
11
+ transition: padding linear calc($transition-duration / 2);
12
12
 
13
13
  @include mq(md) {
14
14
  position: relative !important;
@@ -26,7 +26,7 @@
26
26
  overflow: hidden;
27
27
  border-radius: $border-radius;
28
28
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
29
- transition: height linear #{$transition-duration / 2};
29
+ transition: height linear calc($transition-duration / 2);
30
30
 
31
31
  @include mq(md) {
32
32
  position: absolute;
@@ -62,7 +62,7 @@
62
62
  padding-left: #{$gutter-spacing + $sp-5};
63
63
  font-size: 14px;
64
64
  background-color: $body-background-color;
65
- transition: padding-left linear #{$transition-duration / 2};
65
+ transition: padding-left linear calc($transition-duration / 2);
66
66
  }
67
67
 
68
68
  &:focus {
@@ -82,7 +82,7 @@
82
82
 
83
83
  @include mq(md) {
84
84
  padding-left: $gutter-spacing;
85
- transition: padding-left linear #{$transition-duration / 2};
85
+ transition: padding-left linear calc($transition-duration / 2);
86
86
  }
87
87
 
88
88
  .search-icon {
@@ -241,7 +241,7 @@
241
241
  height: $sp-9;
242
242
  background-color: $search-background-color;
243
243
  border: 1px solid rgba($link-color, 0.3);
244
- border-radius: #{$sp-9 / 2};
244
+ border-radius: calc($sp-9 / 2);
245
245
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
246
246
  align-items: center;
247
247
  justify-content: center;
@@ -1,5 +1,5 @@
1
1
  @function rem($size, $unit: "") {
2
- $remSize: $size / $root-font-size;
2
+ $remSize: calc($size / $root-font-size);
3
3
 
4
4
  @if ($unit == false) {
5
5
  @return #{$remSize};
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fni-docs-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Marsceill
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-11-18 00:00:00.000000000 Z
12
+ date: 2023-02-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -17,42 +17,42 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 2.3.5
20
+ version: '2.4'
21
21
  type: :development
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 2.3.5
27
+ version: '2.4'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: jekyll
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 4.2.0
34
+ version: '4.3'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 4.2.0
41
+ version: '4.3'
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: jekyll-include-cache
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
46
  - - "~>"
47
47
  - !ruby/object:Gem::Version
48
- version: 0.2.1
48
+ version: '0.2'
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: 0.2.1
55
+ version: '0.2'
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: rake
58
58
  requirement: !ruby/object:Gem::Requirement
@@ -79,28 +79,28 @@ dependencies:
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '1.7'
82
+ version: '1.8'
83
83
  type: :runtime
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '1.7'
89
+ version: '1.8'
90
90
  - !ruby/object:Gem::Dependency
91
91
  name: digest
92
92
  requirement: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '3.0'
96
+ version: '3.1'
97
97
  type: :runtime
98
98
  prerelease: false
99
99
  version_requirements: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '3.0'
103
+ version: '3.1'
104
104
  description:
105
105
  email:
106
106
  - patrick.marsceill@gmail.com
@@ -198,7 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
198
  - !ruby/object:Gem::Version
199
199
  version: '0'
200
200
  requirements: []
201
- rubygems_version: 3.3.7
201
+ rubygems_version: 3.3.26
202
202
  signing_key:
203
203
  specification_version: 4
204
204
  summary: Fork of just-the-docs