diff options
| author | mrpaulblack <paul@paulgo.io> | 2022-01-17 22:35:02 +0100 |
|---|---|---|
| committer | mrpaulblack <paul@paulgo.io> | 2022-01-17 22:35:02 +0100 |
| commit | 7a0f5e6b1992b475d6ab9df1ba4f663090e39a8e (patch) | |
| tree | 8e068f6760fb098db907cd95ef6651411cf79944 /searx/static/themes/simple/src/less/style-rtl.less | |
| parent | 96ab5e57ff92aba4ab0fedeb4e5fbfa09e9fc2e2 (diff) | |
[simple theme] dynamic border radius in CSS
Diffstat (limited to 'searx/static/themes/simple/src/less/style-rtl.less')
| -rw-r--r-- | searx/static/themes/simple/src/less/style-rtl.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/static/themes/simple/src/less/style-rtl.less b/searx/static/themes/simple/src/less/style-rtl.less index 92eda0c10..6d3e9f525 100644 --- a/searx/static/themes/simple/src/less/style-rtl.less +++ b/searx/static/themes/simple/src/less/style-rtl.less @@ -42,11 +42,11 @@ text-align: left; } -.ltr-rounded-left-corners(@radius: 10px) { +.ltr-rounded-left-corners(@radius) { border-radius: 0 @radius @radius 0; } -.ltr-rounded-right-corners(@radius: 10px) { +.ltr-rounded-right-corners(@radius) { border-radius: @radius 0 0 @radius; } |