spina-conferences-primer_theme-fork 1.0.0.rc4 → 1.0.0.rc5
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 +4 -4
- data/app/assets/builds/spina/conferences/primer_theme/application.css +4 -0
- data/app/assets/stylesheets/spina/conferences/primer_theme/application.sass +3 -0
- data/app/views/conferences_primer_theme/pages/homepage.html.haml +1 -1
- data/app/views/conferences_primer_theme/partials/_homepage_item.html.haml +4 -4
- data/app/views/spina/conferences/primer_theme/conferences/conferences/_presentations.html.haml +5 -5
- data/app/views/spina/conferences/primer_theme/conferences/conferences/index.html.haml +1 -1
- data/lib/spina/conferences/primer_theme/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00467bcdd3c545ab2e4a2d7a92e019b05cfc7cae8f8bbb22cd991147cc6a6a7f
|
4
|
+
data.tar.gz: 97da422f5db0d66a21b96a5c7c415420550d8b52d14cae671d359cc970085796
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12ffc1d3642b707ab69d7a8e0f6618d3f99f8e426cfc47919b1a1a1eb78104c5693cf5db0f0ec03e386df221fe16f80a9a41a3ab2ffa0a7835be90d0404f8096
|
7
|
+
data.tar.gz: 8870974d0ad0f62f879fde375536cda65122e35dad473eed2fc6f2ef22d12354e31e63a6628feb7dd99a37c49140e722a40c861f9f7b55cef987bef09847e489
|
@@ -25962,3 +25962,7 @@ address {
|
|
25962
25962
|
width: 100%;
|
25963
25963
|
height: 70vh;
|
25964
25964
|
}
|
25965
|
+
|
25966
|
+
img {
|
25967
|
+
background-color: white !important;
|
25968
|
+
}
|
@@ -6,7 +6,7 @@
|
|
6
6
|
- if content(:carousel).present?
|
7
7
|
.height-full.d-flex.flex-column.flex-justify-between{data: { controller: :slideshow, slideshow_incrementer: 0, slideshow_advance: true, slideshow_delay: 20000} }
|
8
8
|
- content(:carousel).each_with_index do |carousel_item, index|
|
9
|
-
= render partial: 'conferences_primer_theme/partials/homepage_item', locals: { item: carousel_item }
|
9
|
+
= render partial: 'conferences_primer_theme/partials/homepage_item', locals: { item: carousel_item, index: index }
|
10
10
|
- if content(:carousel).many?
|
11
11
|
.container-lg.height-full.d-flex.flex-column-reverse.mb-8{ style: 'z-index: 5' }
|
12
12
|
= render(Primer::ButtonGroup.new) do |component|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
%div{ data: { slideshow_target: 'slide' } }
|
1
|
+
%div{ data: { slideshow_target: 'slide' }, hidden: (index != 0) }
|
2
2
|
- if item.content(:background_image).present?
|
3
3
|
= render Primer::BoxComponent.new(position: :absolute, top: false, left: false, right: false, bottom: false, style: 'z-index: 1') do
|
4
4
|
= image_tag(main_app.url_for(item.content(:background_image).variant(resize_to_limit: [1680, 1680])),
|
@@ -9,11 +9,11 @@
|
|
9
9
|
class: %w[width-full height-full])
|
10
10
|
.container-lg.p-responsive.position-relative.color-text-white.height-full{ style: 'z-index: 3'}
|
11
11
|
= render Primer::BoxComponent.new(py: [3, nil, nil, 6]) do
|
12
|
-
%div{ style: 'text-shadow: 0 1px 1px #01040940, 0 1px 25px #010409bf;' }
|
12
|
+
%div{ style: 'color: var(--color-scale-white); text-shadow: 0 1px 1px #01040940, 0 1px 25px #010409bf;' }
|
13
13
|
= render(Primer::HeadingComponent.new(tag: :h1, classes: 'h000-mktg lh-condensed-ultra')) do
|
14
14
|
= item.content(:title)
|
15
|
-
%div{ style: '
|
16
|
-
= render(Primer::Markdown.new(my: 4)) do
|
15
|
+
%div{ style: 'color: var(--color-scale-white); text-shadow: 0 1px 1px #010409bf, 0 1px 25px #010409bf;' }
|
16
|
+
= render(Primer::Markdown.new(my: 4, font_size: 3)) do
|
17
17
|
= item.content.html(:description).to_s
|
18
18
|
- if item.content(:url).present?
|
19
19
|
= link_to t('.more_info'), item.content(:url),
|
data/app/views/spina/conferences/primer_theme/conferences/conferences/_presentations.html.haml
CHANGED
@@ -24,9 +24,9 @@
|
|
24
24
|
locals: { conference: @conference }, cached: -> presentation { [presentation, presentation.presenters] }
|
25
25
|
= paginate @presentations.sorted, views_prefix: 'spina/conferences/primer_theme/conferences'
|
26
26
|
- else
|
27
|
-
|
27
|
+
= render Primer::Beta::Blankslate.new do |blankslate|
|
28
|
+
- blankslate.visual_icon(icon: 'mortar-board')
|
29
|
+
- blankslate.heading(tag: :h3).with_content(t(:'.no_presentations'))
|
30
|
+
= render Primer::Beta::Blankslate.new(data: { 'filter-empty-state': true }, hidden: true) do |blankslate|
|
28
31
|
- blankslate.visual_icon(icon: 'mortar-board')
|
29
|
-
- blankslate.heading(tag: :h3).with_content(t(:'.
|
30
|
-
= render Primer::Beta::Blankslate.new(data: { 'filter-empty-state': true }) do |blankslate|
|
31
|
-
- blankslate.visual_icon(icon: 'mortar-board')
|
32
|
-
- blankslate.heading(tag: :h3).with_content(t(:'.no_matching_presentations'))
|
32
|
+
- blankslate.heading(tag: :h3).with_content(t(:'.no_matching_presentations'))
|
@@ -21,6 +21,6 @@
|
|
21
21
|
= render Primer::Beta::Blankslate.new do |blankslate|
|
22
22
|
- blankslate.visual_icon(icon: 'mortar-board')
|
23
23
|
- blankslate.heading(tag: :h3).with_content(t(:'.no_conferences'))
|
24
|
-
= render Primer::Beta::Blankslate.new(data: { 'filter-empty-state': true }) do |blankslate|
|
24
|
+
= render Primer::Beta::Blankslate.new(data: { 'filter-empty-state': true }, hidden: true) do |blankslate|
|
25
25
|
- blankslate.visual_icon(icon: 'mortar-board')
|
26
26
|
- blankslate.heading(tag: :h3).with_content(t(:'.no_matching_conferences'))
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spina-conferences-primer_theme-fork
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Malčić
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-02-
|
12
|
+
date: 2022-02-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: babel-transpiler
|
@@ -129,28 +129,28 @@ dependencies:
|
|
129
129
|
requirements:
|
130
130
|
- - '='
|
131
131
|
- !ruby/object:Gem::Version
|
132
|
-
version: 3.0.0.
|
132
|
+
version: 3.0.0.rc3
|
133
133
|
type: :runtime
|
134
134
|
prerelease: false
|
135
135
|
version_requirements: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
137
|
- - '='
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version: 3.0.0.
|
139
|
+
version: 3.0.0.rc3
|
140
140
|
- !ruby/object:Gem::Dependency
|
141
141
|
name: spina-admin-journal
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
143
143
|
requirements:
|
144
|
-
- -
|
144
|
+
- - "~>"
|
145
145
|
- !ruby/object:Gem::Version
|
146
|
-
version: 1.0
|
146
|
+
version: '1.0'
|
147
147
|
type: :runtime
|
148
148
|
prerelease: false
|
149
149
|
version_requirements: !ruby/object:Gem::Requirement
|
150
150
|
requirements:
|
151
|
-
- -
|
151
|
+
- - "~>"
|
152
152
|
- !ruby/object:Gem::Version
|
153
|
-
version: 1.0
|
153
|
+
version: '1.0'
|
154
154
|
- !ruby/object:Gem::Dependency
|
155
155
|
name: capybara
|
156
156
|
requirement: !ruby/object:Gem::Requirement
|