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

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-09 16:50:46 +0300
committerGitHub <noreply@github.com>2018-01-09 16:50:46 +0300
commit372035e8428406e87c6ffbcc3502d693e2ed0217 (patch)
treeec8d698b1b311477bbeca437c8cab48a48ae0be6
parentb8bb4ac2773fc0b86b988935c24f979a0bbfdbac (diff)
parent48f16e4439a253a99251b75db2a62e8e79e6be0b (diff)
Merge pull request #349 from nextcloud/fix-date-picker-not-visible-in-slideshow-sharing-dialogv13.0.0RC1
Fix date picker not visible in slideshow sharing dialog
-rw-r--r--css/slideshow.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/css/slideshow.css b/css/slideshow.css
index dad3296a..ee50edaf 100644
--- a/css/slideshow.css
+++ b/css/slideshow.css
@@ -200,3 +200,10 @@
/** above slideshow buttons */
z-index: 100001;
}
+
+#slideshow ~ .ui-datepicker {
+ /* Larger than the slideshow share dropdown z-index, and important
+ to override both the important z-index from the server and the
+ value set in the element by jQuery UI Datepicker Widget */
+ z-index: 100010 !important;
+}