From 2115f6565e66c51d0110e23a5ce625c48f43b652 Mon Sep 17 00:00:00 2001 From: Monty Date: Wed, 30 Mar 2022 17:09:40 +0200 Subject: [mod] simple theme: colors, autocomplete, border * change colors, autocomplete, delete border in some places --- searx/static/themes/simple/src/less/style-rtl.less | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'searx/static/themes/simple/src/less/style-rtl.less') diff --git a/searx/static/themes/simple/src/less/style-rtl.less b/searx/static/themes/simple/src/less/style-rtl.less index cf105702b..aa97e039c 100644 --- a/searx/static/themes/simple/src/less/style-rtl.less +++ b/searx/static/themes/simple/src/less/style-rtl.less @@ -46,10 +46,26 @@ border-radius: 0 @radius @radius 0; } +.ltr-rounded-top-left-corners(@radius) { + border-radius: 0 @radius 0 0; +} + +.ltr-rounded-bottom-left-corners(@radius) { + border-radius: 0 0 @radius 0; +} + .ltr-rounded-right-corners(@radius) { border-radius: @radius 0 0 @radius; } +.ltr-rounded-top-right-corners(@radius) { + border-radius: @radius 0 0 0; +} + +.ltr-rounded-bottom-right-corners(@radius) { + border-radius: 0 0 0 @radius; +} + .ltr-text-align-left() { text-align: right; } -- cgit v1.2.3