summaryrefslogtreecommitdiff
path: root/searx/static/themes/simple/src/less/mixins.less
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2025-01-23 11:10:40 +0100
committerMarkus Heiser <markus.heiser@darmarIT.de>2025-02-28 12:27:41 +0100
commita1132deaa4618f228e82252397247a150081a5f3 (patch)
tree0445fbe04c8932acdfbe5362db40ea1782f38539 /searx/static/themes/simple/src/less/mixins.less
parentb6487b70aaa199aba6ae999a9c99b340b5e98884 (diff)
[web-client] simple theme: move sources to client/simple/src
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/static/themes/simple/src/less/mixins.less')
-rw-r--r--searx/static/themes/simple/src/less/mixins.less40
1 files changed, 0 insertions, 40 deletions
diff --git a/searx/static/themes/simple/src/less/mixins.less b/searx/static/themes/simple/src/less/mixins.less
deleted file mode 100644
index a4bae7128..000000000
--- a/searx/static/themes/simple/src/less/mixins.less
+++ /dev/null
@@ -1,40 +0,0 @@
-// SPDX-License-Identifier: AGPL-3.0-or-later
-
-// 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: 10px) {
- border-radius: @radius;
-}
-
-.rounded-right-corners (@radius: 0 10px 10px 0) {
- border-radius: @radius;
-}
-
-.rounded-corners-tiny (@radius: 5px) {
- border-radius: @radius;
-}
-
-// disable user selection
-.disable-user-select () {
- -webkit-touch-callout: none;
- user-select: none;
-}
-
-.show-content-button() {
- padding: 5px 10px;
- .rounded-corners-tiny;
- background: var(--color-show-btn-background);
- color: var(--color-show-btn-font);
- cursor: pointer;
-
- &:hover {
- background: var(--color-btn-background);
- color: var(--color-btn-font);
- }
-}