betterplace-content 0.7.126 → 0.7.128

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: aeedba2c72c00c57362e47c86e612d8ab27ca7605570ee7afd9225c7a30d79d0
4
- data.tar.gz: bee687059d5b00b2a7da6531f77fc57abf1a418ca03bf7781d31a412520827e8
3
+ metadata.gz: c2633e01ab93d6f88c64af095213aa8bd0d08a7ced8ae15ce3f2eb798c9245b2
4
+ data.tar.gz: d6d661808d2fd50e5680fb3c7baec9dbc97585ad297775fa1da1c2f87192fbb8
5
5
  SHA512:
6
- metadata.gz: 3f118d455aea5c5f14b887f1d5463c6a8040b62044d236f50ff8aaa51d0814c817f49e057ec9673fcbf3e80892783be4a1a7c9f6737e384d643d9d019e27157c
7
- data.tar.gz: a4db2d95c66cf45e09cee29dde626b5cffbc70546396fe53626bb59ba5823b38c470ab8a1e3e58d1433b33727d88a21d4c88307a1cd11912efcfd81f5243cde4
6
+ metadata.gz: f3c86415757eb210cd89df55d92128b9fd549b2c595b42b362afbb3dca05ee825c6da9e349570419106d1828b5b8e48f2e6212d99b6a0813ed2fffdbfd8f6f93
7
+ data.tar.gz: 620c9a8eb94f2c7f6e3353a06a21b7b8379b637a9e2a16c78929f774014fce8a82d1a2222145f298417c3690b88abac7ba07a9aa3e2186ce87992916714e0d71
@@ -123,7 +123,7 @@ Update 2019-07-19: Another problem that came us is, that URLs endet in .html whi
123
123
 
124
124
  // fetch and mount header and footer
125
125
  ;['header', 'footer'].forEach(layoutEl => {
126
- fetch(`{{ style_host }}/{{ site.lang }}/layouts/${layoutEl}_partial`)
126
+ fetch(`/{{ site.lang }}/layouts/${layoutEl}_partial`)
127
127
  .then((res) => res.text())
128
128
  .then(html => {
129
129
  html = html.replace('<!--language-switch-content-->', `{{ language_switch_content }}`)
@@ -11,53 +11,56 @@
11
11
  h2
12
12
  margin-bottom: 57px
13
13
 
14
- h3
14
+ details
15
15
  text-align: left
16
+
17
+ summary
18
+ list-style-type: none
19
+ cursor: pointer
16
20
  margin: 0 0 1px 0
21
+ position: relative
22
+ background: $gray-200
23
+
24
+ +desktop
25
+ font-size: 20px
26
+ line-height: 66px
27
+ border-left: 66px solid $green-500
28
+ box-shadow: inset 1px 0 0px 0px #FFF
29
+ height: 66px
30
+ padding: 0 20px
17
31
 
18
- > a
19
- position: relative
32
+ +phone
33
+ font-size: 16px
34
+ line-height: 22px
35
+ padding: 10px 20px 10px 55px
36
+
37
+ &:hover,
38
+ &:focus
39
+ background: darken($gray-200, 2%)
40
+ border-left-color: darken($green-500, 2%)
41
+
42
+ &::before
43
+ content: "\f055" // ⊕
44
+ position: absolute
45
+ top: 50%
46
+ margin-top: -8px
20
47
  display: block
21
- font-weight: 400
22
- color: black
23
- background: $gray-200
48
+ font: normal normal normal 19px/1 FontAwesome
49
+ color: white
24
50
 
25
51
  +desktop
26
- font-size: 20px
27
- line-height: 66px
28
- border-left: 66px solid $green-500
29
- box-shadow: inset 1px 0 0px 0px #FFF
30
- -webkit-box-shadow: inset 1px 0 0px 0px #FFF
31
- height: 66px
32
- padding: 0 20px
52
+ left: -41px
33
53
 
34
54
  +phone
35
- font-size: 16px
36
- line-height: 22px
37
- padding: 10px 20px 10px 55px
38
-
39
- strong
40
- font-weight: 700
41
-
42
- &:hover,
43
- &:focus
44
- text-decoration: none
45
- background: darken($gray-200, 2%)
46
- border-left-color: darken($green-500, 2%)
47
-
48
- i
49
- position: absolute
50
- top: 50%
51
- margin-top: -8px
52
- display: block
53
- font-size: 19px
55
+ left: 20px
56
+ color: $green-500 !important
54
57
 
55
- +desktop
56
- left: -41px
58
+ h3
59
+ font: inherit
60
+ margin: 0
57
61
 
58
- +phone
59
- left: 20px
60
- color: $green-500 !important
62
+ details[open] summary::before
63
+ content: "\f056" // ⊖
61
64
 
62
65
  .btn + br
63
66
  +desktop
@@ -96,37 +99,6 @@
96
99
  +phone
97
100
  padding: 30px 20px 30px 20px
98
101
 
99
- .panel-collapse
100
- display: none
101
- +phone
102
- transition: none
103
-
104
- .panel-expanded .panel-collapse
105
- display: block
106
-
107
- // Overrule Tailwind utility. https://betterplace.atlassian.net/browse/DEV-20404
108
- .collapse.show
109
- visibility: initial
110
-
111
- .panel-expanded:last-child
112
- position: relative
113
-
114
- &:before
115
- content: ''
116
- position: absolute
117
- border-bottom: 1px solid $gray-200
118
- height: 1px
119
-
120
- +desktop
121
- width: 60%
122
- left: 20%
123
- bottom: -10px
124
-
125
- +phone
126
- width: 100%
127
- left: 0
128
- bottom: 0
129
-
130
102
  li
131
103
  background: url('#{$site_baseurl}/assets/theme_images/about-us/feature-list-bullet.png') no-repeat 0 4px
132
104
  margin-bottom: 18px
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: betterplace-content
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.126
4
+ version: 0.7.128
5
5
  platform: ruby
6
6
  authors:
7
7
  - betterplace.org Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-04 00:00:00.000000000 Z
11
+ date: 2023-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll