summaryrefslogtreecommitdiff
path: root/searx/static/less/mixins.less
diff options
context:
space:
mode:
authorThomas Pointhuber <thomas.pointhuber@gmx.at>2014-03-13 16:51:15 +0100
committerThomas Pointhuber <thomas.pointhuber@gmx.at>2014-03-13 16:51:15 +0100
commitc8a1e0bda4db2132c14a914bbf7ed1426ba9a903 (patch)
tree10cfa8d5a6490ac8b6c79cc8a65101cd83700e8a /searx/static/less/mixins.less
parent0fc481f47ed8116b3acd4dd11c0527994582d526 (diff)
move *.less files into seperate directory
Diffstat (limited to 'searx/static/less/mixins.less')
-rw-r--r--searx/static/less/mixins.less27
1 files changed, 27 insertions, 0 deletions
diff --git a/searx/static/less/mixins.less b/searx/static/less/mixins.less
new file mode 100644
index 000000000..dbccce6e3
--- /dev/null
+++ b/searx/static/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;
+}