summaryrefslogtreecommitdiff
path: root/searx/static/themes/pix-art/less/mixins.less
diff options
context:
space:
mode:
authorCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-02-15 19:09:17 +0100
committerCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-02-15 19:09:17 +0100
commitd740e7384a95c6a7d80e5f492f4dd7edb312175e (patch)
tree9cf8a96ec7d0834603290dde93ef5f45a68ef08a /searx/static/themes/pix-art/less/mixins.less
parent3ff269c84c936a3ffc2e8e3168a4ac017047015b (diff)
New Theme, Pix-art.
First commit
Diffstat (limited to 'searx/static/themes/pix-art/less/mixins.less')
-rw-r--r--searx/static/themes/pix-art/less/mixins.less27
1 files changed, 27 insertions, 0 deletions
diff --git a/searx/static/themes/pix-art/less/mixins.less b/searx/static/themes/pix-art/less/mixins.less
new file mode 100644
index 000000000..dbccce6e3
--- /dev/null
+++ b/searx/static/themes/pix-art/less/mixins.less
@@ -0,0 +1,27 @@
+/*
+ * searx, A privacy-respecting, hackable metasearch engine
+ */
+
+// Mixins
+
+.text-size-adjust (@property: 100%) {
+ -webkit-text-size-adjust: @property;
+ -ms-text-size-adjust: @property;
+ -moz-text-size-adjust: @property;
+ text-size-adjust: @property;
+}
+
+.rounded-corners (@radius: 4px) {
+ -webkit-border-radius: @radius;
+ -moz-border-radius: @radius;
+ border-radius: @radius;
+}
+
+.user-select () {
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}