spina-conferences-primer_theme 0.3.3 → 0.3.4
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/config/spina_conferences_primer_theme_manifest.js +0 -2
- data/app/assets/stylesheets/spina/conferences/primer_theme/application.sass +22 -0
- data/app/views/conferences_primer_theme/pages/homepage.html.haml +3 -0
- data/config/initializers/themes/conferences_primer_theme.rb +1 -1
- data/lib/spina/conferences/primer_theme/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: de1627c42a5f26df5aab40b2cf5e9abfcbf8c37656be2905da0dea069132e32c
|
|
4
|
+
data.tar.gz: 0baa91ffa622518f16eba5f681192ff8b38467632f7d028a66a039a3d85a1140
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b38daf67fde96dc831215ede91223f3641888ad9643f043839dea38385ba29ba03e50876a728a1bd44a8e96e81f63352728b0845ad6f91a1965aacfcc3bf653
|
|
7
|
+
data.tar.gz: 34bb8c7f7255f46f0f267da339ab3861e469bf35021fe39b9ebc523efc67ac00a6273acb656aa5c40573cb67c97923941cae9c196b403c00eed08c3c2d8733ca
|
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
//= link_directory ../javascripts/spina/conferences/primer_theme .js
|
|
3
3
|
//= link spina_admin_conferences_manifest.js
|
|
4
4
|
|
|
5
|
-
//= link_directory ../../../node_modules/@primer/css/fonts .woff
|
|
6
|
-
|
|
7
5
|
//= link @github/details-dialog-element/dist/index.js
|
|
8
6
|
//= link @github/include-fragment-element/dist/index.js
|
|
9
7
|
//= link @github/filter-input-element/dist/index.js
|
|
@@ -5,6 +5,28 @@
|
|
|
5
5
|
@import "@primer/octicons"
|
|
6
6
|
@import spina/conferences/primer_theme/custom_variables
|
|
7
7
|
|
|
8
|
+
@font-face
|
|
9
|
+
font-family: Inter
|
|
10
|
+
font-style: normal
|
|
11
|
+
font-weight: $font-weight-normal
|
|
12
|
+
src: local("Inter"), local("Inter-Regular"), asset-url("@primer/css/fonts/Inter-Regular.woff") format("woff")
|
|
13
|
+
font-display: swap
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
@font-face
|
|
17
|
+
font-family: Inter
|
|
18
|
+
font-style: normal
|
|
19
|
+
font-weight: $font-weight-semibold
|
|
20
|
+
src: local("Inter Medium"), local("Inter-Medium"), asset-url("@primer/css/fonts/Inter-Medium.woff") format("woff")
|
|
21
|
+
font-display: swap
|
|
22
|
+
|
|
23
|
+
@font-face
|
|
24
|
+
font-family: Inter
|
|
25
|
+
font-style: normal
|
|
26
|
+
font-weight: $font-weight-bold
|
|
27
|
+
src: local("Inter Bold"), local("Inter-Bold"), asset-url("@primer/css/fonts/Inter-Bold.woff") format("woff")
|
|
28
|
+
font-display: swap
|
|
29
|
+
|
|
8
30
|
.admin
|
|
9
31
|
@import "spina/admin_editing"
|
|
10
32
|
#admin_bar
|
|
@@ -27,5 +27,8 @@
|
|
|
27
27
|
- if current_conference.present? && current_conference.finish_date >= Date.today
|
|
28
28
|
= link_to t('.more_info'), frontend_conference_path(current_conference),
|
|
29
29
|
class: %w[btn-mktg btn-large-mktg btn-primary-mktg f3 mt-4]
|
|
30
|
+
- else
|
|
31
|
+
= link_to t('.more_info'), Spina::Page.find_by(name: 'about').materialized_path,
|
|
32
|
+
class: %w[btn-mktg btn-large-mktg btn-primary-mktg f3 mt-4]
|
|
30
33
|
%div{ style: 'text-shadow: 0 1px 1px rgba(var(--color-scale-black), 0.25), 0 1px 25px rgba(var(--color-scale-black), 0.75);' }
|
|
31
34
|
= render(Primer::MarkdownComponent.new(my: 4)) { content(:text).try(:html_safe) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spina-conferences-primer_theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Malčić
|
|
@@ -58,14 +58,14 @@ dependencies:
|
|
|
58
58
|
requirements:
|
|
59
59
|
- - '='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 0.0.
|
|
61
|
+
version: 0.0.37
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - '='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 0.0.
|
|
68
|
+
version: 0.0.37
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: rails
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|