diff options
author | Monty <aroxus@protonmail.com> | 2022-03-30 17:09:40 +0200 |
---|---|---|
committer | mrpaulblack <paul@paulgo.io> | 2022-05-10 21:56:43 +0200 |
commit | 2115f6565e66c51d0110e23a5ce625c48f43b652 (patch) | |
tree | b9fff19f4a7955e01882bc45ffef183247f9c1a7 /searx/static/themes/simple/src/less/style-ltr.less | |
parent | 2bc836e85d25a3bf50a2004a56100e4b090e79f9 (diff) | |
download | searxng-2115f6565e66c51d0110e23a5ce625c48f43b652.tar.gz searxng-2115f6565e66c51d0110e23a5ce625c48f43b652.zip |
[mod] simple theme: colors, autocomplete, border
* change colors, autocomplete, delete border in some places
Diffstat (limited to 'searx/static/themes/simple/src/less/style-ltr.less')
-rw-r--r-- | searx/static/themes/simple/src/less/style-ltr.less | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/searx/static/themes/simple/src/less/style-ltr.less b/searx/static/themes/simple/src/less/style-ltr.less index 4810d771a..6f7218b02 100644 --- a/searx/static/themes/simple/src/less/style-ltr.less +++ b/searx/static/themes/simple/src/less/style-ltr.less @@ -46,10 +46,26 @@ border-radius: @radius 0 0 @radius; } +.ltr-rounded-top-left-corners(@radius) { + border-radius: @radius 0 0 0; +} + +.ltr-rounded-bottom-left-corners(@radius) { + border-radius: 0 0 0 @radius; +} + .ltr-rounded-right-corners(@radius) { border-radius: 0 @radius @radius 0; } +.ltr-rounded-top-right-corners(@radius) { + border-radius: 0 @radius 0 0; +} + +.ltr-rounded-bottom-right-corners(@radius) { + border-radius: 0 0 @radius 0; +} + .ltr-text-align-left() { text-align: left; } |