diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bfdffb8fa..c54ddaf0a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file. ## [unreleased] ### New - Add option to delete orphaned votes + - Add vote indicator for locked options ### Changes - Make vote cell focusable @@ -16,7 +17,8 @@ All notable changes to this project will be documented in this file. ### Fixes - Force list view mode initially on mobile viewports - - Fix some viual issues of the vote page + - Fix some visual issues of the vote page + - Bring back indicator for confirmed options after closing the poll ## [8.1.4] - 2025-07-15 ### Fixes diff --git a/src/assets/scss/vars.scss b/src/assets/scss/vars.scss index f6858a2df4..5fe5ec20bb 100644 --- a/src/assets/scss/vars.scss +++ b/src/assets/scss/vars.scss @@ -11,4 +11,6 @@ --color-polls-background-maybe: rgba(var(--color-warning-rgb), 0.1); --container-background-light: rgba(var(--color-info-rgb), 0.1); --cap-width: 49rem; + --shadow-height: 0.7rem; + --shadow-height-inverted: -0.7rem; } diff --git a/src/components/Base/modules/StickyDiv.vue b/src/components/Base/modules/StickyDiv.vue index e14b7f9a5d..8d3159c154 100644 --- a/src/components/Base/modules/StickyDiv.vue +++ b/src/components/Base/modules/StickyDiv.vue @@ -50,7 +50,6 @@ const style = computed(() => { }) const stickyClass = computed(() => ({ - container: true, 'sticky-top': stickyTop, 'sticky-left': stickyLeft, 'sticky-bottom-shadow': activateBottomShadow, @@ -59,93 +58,114 @@ const stickyClass = computed(() => ({ diff --git a/src/components/Options/Counter.vue b/src/components/Options/Counter.vue index b901ba2aba..2c21285ece 100644 --- a/src/components/Options/Counter.vue +++ b/src/components/Options/Counter.vue @@ -6,8 +6,11 @@