From eb26beb9dfe4bd699c2514dade763cabb8c84fc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20B=C5=82a=C5=BCejewicz=20=28Peter=20Blazejewicz=29?= Date: Thu, 5 Sep 2019 14:48:29 +0200 Subject: [PATCH] fix(datepicker): place active day above its siblings (#3314) This is minor change that moves currently focus day within month view above its siblings to let its outline be correctly rendered. This is similar to minor stylistic corrections found in the BS: https://git.io/fjyfh --- src/datepicker/datepicker-month-view.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/datepicker/datepicker-month-view.scss b/src/datepicker/datepicker-month-view.scss index 62af26a2e4..6ce3259960 100644 --- a/src/datepicker/datepicker-month-view.scss +++ b/src/datepicker/datepicker-month-view.scss @@ -34,5 +34,9 @@ ngb-datepicker-month-view { &.hidden { cursor: default; } + + &[tabindex="0"] { + z-index: 1; + } } -} \ No newline at end of file +}