summaryrefslogtreecommitdiff
path: root/searx/static/css/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/css/mixins.less
parent0fc481f47ed8116b3acd4dd11c0527994582d526 (diff)
move *.less files into seperate directory
Diffstat (limited to 'searx/static/css/mixins.less')
-rw-r--r--searx/static/css/mixins.less27
1 files changed, 0 insertions, 27 deletions
diff --git a/searx/static/css/mixins.less b/searx/static/css/mixins.less
deleted file mode 100644
index dbccce6e3..000000000
--- a/searx/static/css/mixins.less
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * 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;
-}