Skip to content

Commit 0558496

Browse files
implement tertiary hover styling on ranked options
Signed-off-by: paul bochtler <65470117+datapumpernickel@users.noreply.github.com>
1 parent 1a7e3e8 commit 0558496

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/components/Questions/QuestionRanking.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,14 @@ export default {
449449
min-height: var(--default-clickable-area);
450450
border-radius: var(--border-radius-large);
451451
user-select: none;
452+
transition-property: background-color;
453+
transition-duration: 0.1s;
454+
transition-timing-function: linear;
455+
456+
&:hover,
457+
&:focus-within {
458+
background-color: var(--color-background-hover);
459+
}
452460
453461
&__position {
454462
font-weight: bold;

0 commit comments

Comments
 (0)