summaryrefslogtreecommitdiff
path: root/searx/static/themes/simple/src/less/style-rtl.less
diff options
context:
space:
mode:
authorPaul Braeuning <paul@paulgo.io>2022-05-10 22:05:26 +0200
committerGitHub <noreply@github.com>2022-05-10 22:05:26 +0200
commite869cbed5b385a489a2104024789210690890a12 (patch)
tree12456d8392893dd0537b68ebcd982f03ee2740f3 /searx/static/themes/simple/src/less/style-rtl.less
parent2bc836e85d25a3bf50a2004a56100e4b090e79f9 (diff)
parent6b124e5120d8570a33d470b9537eac4df54c27bc (diff)
Merge pull request #1026 from MontyQI/themes
Update simple theme
Diffstat (limited to 'searx/static/themes/simple/src/less/style-rtl.less')
-rw-r--r--searx/static/themes/simple/src/less/style-rtl.less16
1 files changed, 16 insertions, 0 deletions
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;
}