Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-07-08 23:15:55 +0300
committerVincent Petry <vincent@nextcloud.com>2021-07-08 23:16:33 +0300
commit7a07db57aec475a71c8674541f467d832986e3ea (patch)
tree9501e5f4e11fc8f5ec1908ddb036bad0f65005a8 /css
parent5df729fe472a6dd676f6d4cae7c9cc67fb400e5c (diff)
Fix date picker z-index
To make it appear on top of the settings modal. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'css')
-rw-r--r--css/app.scss5
1 files changed, 5 insertions, 0 deletions
diff --git a/css/app.scss b/css/app.scss
index a8aff5aff..bfb367665 100644
--- a/css/app.scss
+++ b/css/app.scss
@@ -3,3 +3,8 @@
body {
overflow: hidden;
}
+
+/* FIXME: remove after https://github.com/nextcloud/nextcloud-vue/issues/2097 is solved */
+.mx-datepicker-main.mx-datepicker-popup {
+ z-index: 10001 !important;
+}