From 13a19e91fb6afdf4b5ae500f7b7aa2dd210bc46b Mon Sep 17 00:00:00 2001 From: Felix Hamann Date: Thu, 9 May 2019 20:36:33 +0200 Subject: [PATCH] display secondary pageactions list below the elipsis --- templates/widgets/pageaction/pageaction.lucius | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/templates/widgets/pageaction/pageaction.lucius b/templates/widgets/pageaction/pageaction.lucius index ebdd5be78..2ff7297f9 100644 --- a/templates/widgets/pageaction/pageaction.lucius +++ b/templates/widgets/pageaction/pageaction.lucius @@ -45,9 +45,14 @@ box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.6); box-sizing: border-box; text-align: center; + transition: box-shadow 0.2s ease; } &:hover { + &::after { + box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.8); + } + .pagenav-secondary__list { display: block; } @@ -58,7 +63,7 @@ position: absolute; display: none; left: 0; - top: 10px; + top: 50px; width: 250px; background-color: white; box-shadow: 0 0 6px 3px var(--color-grey-light);