jekyll-cessda-docs 0.1.8 → 0.1.9.pre.3921eeadb29289508ff731890440707b3eddfe8d

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a5b7401aa092819ae484980904c913f336f5e337b54d05bb80da41c8360060d
4
- data.tar.gz: 6e1a034f6732aa8c2c96cd40303137fb56db9dda83e9f49495d82457c9c7ed54
3
+ metadata.gz: f9148788b96ec3dd510dca19575f1041825ba74e3c222defc4a4b8618d2fe451
4
+ data.tar.gz: 46647f580d0f4be1dd9d87c78c613f65b88ee8330d712add1c82a96d2075f39a
5
5
  SHA512:
6
- metadata.gz: 85548f8a2a66d4040680350b2007ac7b3966f98c48f2f1fd6072d7e5e93f55131ea74008ab82771fea5af9e0a361be53a5c6e08b6d1bcc10d11676b6932d3c1a
7
- data.tar.gz: b6a3590b7e7b84b08a7f8d49356aeedf5f6aa7d564def25355a67026aaf2b9ddd8314a152f5e0dd80de1b9b165b5957083d8082e27da9f68023c92dc9757477a
6
+ metadata.gz: d31c97e2a4a32b0d1276f99a1f66aac44ee304831136c93129236eb86ea4cee06e932c1123866e0f42f93f89f6f93cd7962a86a12dc90f705fc69894e629eadd
7
+ data.tar.gz: 9f29aa8cbc335a8ddc0dc24159082463e3d908184deb85216a755fa0dfc82b13d125618cc8128ef6696e3dfe716a42ad006373d2692ddcc2ac17089314919feb
@@ -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: #{$nav-list-item-height-sm * 0.25};
71
+ padding-right: #{$nav-list-item-height-sm * 0.25};
72
+ padding-bottom: #{$nav-list-item-height-sm * 0.25};
73
+ padding-left: #{$nav-list-item-height-sm * 0.25};
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: #{$nav-list-item-height * 0.25};
80
+ padding-right: #{$nav-list-item-height * 0.25};
81
+ padding-bottom: #{$nav-list-item-height * 0.25};
82
+ padding-left: #{$nav-list-item-height * 0.25};
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 #{$transition-duration * 0.5};
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 #{$transition-duration * 0.5};
30
30
 
31
31
  @include mq(md) {
32
32
  position: absolute;
@@ -61,7 +61,7 @@
61
61
  padding-left: #{$gutter-spacing + $sp-5};
62
62
  font-size: 14px;
63
63
  background-color: $body-background-color;
64
- transition: padding-left linear #{$transition-duration / 2};
64
+ transition: padding-left linear #{$transition-duration * 0.5};
65
65
  }
66
66
 
67
67
  &:focus {
@@ -81,7 +81,7 @@
81
81
 
82
82
  @include mq(md) {
83
83
  padding-left: $gutter-spacing;
84
- transition: padding-left linear #{$transition-duration / 2};
84
+ transition: padding-left linear #{$transition-duration * 0.5};
85
85
  }
86
86
 
87
87
  .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: #{$sp-9 * 0.5};
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,7 @@
1
+ @use "sass:math";
2
+
1
3
  @function rem($size, $unit: "") {
2
- $remSize: $size / $root-font-size;
4
+ $remSize: math.div($size, $root-font-size);
3
5
 
4
6
  @if ($unit == false) {
5
7
  @return #{$remSize};
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-cessda-docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9.pre.3921eeadb29289508ff731890440707b3eddfe8d
5
5
  platform: ruby
6
6
  authors:
7
7
  - openconcept
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-23 00:00:00.000000000 Z
11
+ date: 2023-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -124,9 +124,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
124
124
  version: '0'
125
125
  required_rubygems_version: !ruby/object:Gem::Requirement
126
126
  requirements:
127
- - - ">="
127
+ - - ">"
128
128
  - !ruby/object:Gem::Version
129
- version: '0'
129
+ version: 1.3.1
130
130
  requirements: []
131
131
  rubygems_version: 3.1.6
132
132
  signing_key: