From 9abf2dc4c2a7594f9bd6b6d400247f1d34b42d5c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Erik=20V=C3=A4nttinen?=
<31741222+eebbi@users.noreply.github.com>
Date: Sun, 24 Nov 2024 18:34:27 +0200
Subject: [PATCH 1/3] TMS-1059: Add Sign up-section to event partial (#49)
---
CHANGELOG.MD | 2 ++
.../single-dynamic-event-info.dust | 10 ++++++++++
2 files changed, 12 insertions(+)
diff --git a/CHANGELOG.MD b/CHANGELOG.MD
index 45c3e1c..923be4e 100644
--- a/CHANGELOG.MD
+++ b/CHANGELOG.MD
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+- TMS-1059: Add Sign up-section to event partial
+
## [1.3.10] - 2024-11-07
- TMS-1070: Change lobby-display images, allow single exhibition to be in two spaces
diff --git a/partials/views/single-dynamic-event/single-dynamic-event-info.dust b/partials/views/single-dynamic-event/single-dynamic-event-info.dust
index 7c7a018..21bca1b 100644
--- a/partials/views/single-dynamic-event/single-dynamic-event-info.dust
+++ b/partials/views/single-dynamic-event/single-dynamic-event-info.dust
@@ -74,6 +74,16 @@
{/event.normalized.price}
+{?event.normalized.link_sign_up}
+
+ {>"views/single-dynamic-event/single-dynamic-event-group-title" title=event.normalized.sign_up_title template_classes=template_classes.info_group_title icon="link" /}
+
+
+
+{/event.normalized.link_sign_up}
+
{?event.normalized.provider}
{>"views/single-dynamic-event/single-dynamic-event-group-title" title=event.normalized.provider_title template_classes=template_classes.info_group_title icon="bullhorn" /}
From 7a5cfaebfe3e8e3f896c74c3d1729028adf29f94 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Erik=20V=C3=A4nttinen?=
Date: Sun, 24 Nov 2024 18:35:14 +0200
Subject: [PATCH 2/3] 1.3.11
---
CHANGELOG.MD | 2 ++
style.css | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.MD b/CHANGELOG.MD
index 923be4e..164acff 100644
--- a/CHANGELOG.MD
+++ b/CHANGELOG.MD
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+## [1.3.11] - 2024-11-25
+
- TMS-1059: Add Sign up-section to event partial
## [1.3.10] - 2024-11-07
diff --git a/style.css b/style.css
index ed862f0..cd98bfc 100644
--- a/style.css
+++ b/style.css
@@ -1,7 +1,7 @@
/*
* Theme Name: TMS Theme Vapriikki
* Description: Tampere Multisite Vapriikki Theme
- * Version: 1.3.10
+ * Version: 1.3.11
* Author: Geniem
* Author URI: https://geniem.fi
* Template: tms-theme-base
From d2732186b908eacc43cd0195ddc65acb45a5ee2b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Erik=20V=C3=A4nttinen?=
Date: Fri, 17 Jan 2025 10:46:44 +0200
Subject: [PATCH 3/3] TMS-1096: Center exhibition-archive item-count
---
CHANGELOG.MD | 2 ++
assets/styles/views/_archive-exhibition.scss | 15 +++++----------
2 files changed, 7 insertions(+), 10 deletions(-)
diff --git a/CHANGELOG.MD b/CHANGELOG.MD
index 164acff..d56757a 100644
--- a/CHANGELOG.MD
+++ b/CHANGELOG.MD
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+- TMS-1096: Center exhibition-archive item-count
+
## [1.3.11] - 2024-11-25
- TMS-1059: Add Sign up-section to event partial
diff --git a/assets/styles/views/_archive-exhibition.scss b/assets/styles/views/_archive-exhibition.scss
index f899826..d256cbf 100644
--- a/assets/styles/views/_archive-exhibition.scss
+++ b/assets/styles/views/_archive-exhibition.scss
@@ -63,8 +63,11 @@
}
&__item-count-container {
- width: 2.25rem;
- height: 2.25rem;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 2.75rem;
+ height: 2.75rem;
margin-left: $theme-spacing;
padding: $theme-spacing-half;
border: 1px solid $color-ui-border-light;
@@ -80,14 +83,6 @@
}
}
- &__item-count {
- margin-top: -.4rem;
-
- @include from($desktop) {
- margin-top: -.5rem;
- }
- }
-
.entry {
&__meta-text {
margin: .0875rem 0 0 $theme-spacing-three-quarters;