aboutsummaryrefslogtreecommitdiffstats
path: root/uikit/static/css/components/sortable.gradient.css
diff options
context:
space:
mode:
authorValentin Heinz <inktrap@users.noreply.github.com>2017-04-08 14:03:25 +0200
committerAlexis Metaireau <alexis@notmyidea.org>2017-04-08 14:03:25 +0200
commit5c231ceade17e7f5b1bba90e845dd2d17e54da1c (patch)
treef4f07dbbac2c51c8a0af1e1a24f11e030a2e4155 /uikit/static/css/components/sortable.gradient.css
parent00986ab80df4b6be2d1306671907e2b2378e487f (diff)
downloadpelican-themes-5c231ceade17e7f5b1bba90e845dd2d17e54da1c.tar.gz
uikit demo theme ported to pelican (#385)
Diffstat (limited to 'uikit/static/css/components/sortable.gradient.css')
-rw-r--r--uikit/static/css/components/sortable.gradient.css62
1 files changed, 62 insertions, 0 deletions
diff --git a/uikit/static/css/components/sortable.gradient.css b/uikit/static/css/components/sortable.gradient.css
new file mode 100644
index 0000000..862682c
--- /dev/null
+++ b/uikit/static/css/components/sortable.gradient.css
@@ -0,0 +1,62 @@
+/*! UIkit 2.21.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
+/* ========================================================================
+ Component: Sortable
+ ========================================================================== */
+.uk-sortable {
+ position: relative;
+}
+/*
+ * Deactivate browser touch actions in IE11
+ */
+.uk-sortable > * {
+ touch-action: none;
+}
+/*
+ * Disables the default callout shown when you touch and hold a touch target
+ * Currently only works in Webkit
+ */
+.uk-sortable a,
+.uk-sortable img {
+ -webkit-touch-callout: none;
+}
+/*
+ * Remove margin from the last-child
+ */
+.uk-sortable > :last-child {
+ margin-bottom: 0;
+}
+/* Sub-modifier `uk-sortable-dragged`
+ ========================================================================== */
+.uk-sortable-dragged {
+ position: absolute;
+ z-index: 1050;
+ pointer-events: none;
+}
+/* Sub-modifier `uk-sortable-placeholder`
+ ========================================================================== */
+.uk-sortable-placeholder {
+ opacity: 0;
+}
+/* Empty List
+ ========================================================================== */
+.uk-sortable:empty {
+ min-height: 30px;
+}
+/* Sub-object `uk-sortable-handle`
+ ========================================================================== */
+/*
+ * Deactivate browser touch actions in IE11
+ */
+.uk-sortable-handle {
+ touch-action: none;
+}
+/* Hover */
+.uk-sortable-handle:hover {
+ cursor: move;
+}
+/* Sub-object `uk-sortable-moving`
+ ========================================================================== */
+.uk-sortable-moving,
+.uk-sortable-moving * {
+ cursor: move;
+}