From 410dbc573bbb873a447710e122faefd11075b6df Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Mon, 12 Jan 2015 14:54:16 +0100 Subject: [enh] static content generalization --- searx/static/less/bootstrap/mixins/border-radius.less | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 searx/static/less/bootstrap/mixins/border-radius.less (limited to 'searx/static/less/bootstrap/mixins/border-radius.less') diff --git a/searx/static/less/bootstrap/mixins/border-radius.less b/searx/static/less/bootstrap/mixins/border-radius.less new file mode 100644 index 000000000..ca05dbf45 --- /dev/null +++ b/searx/static/less/bootstrap/mixins/border-radius.less @@ -0,0 +1,18 @@ +// Single side border-radius + +.border-top-radius(@radius) { + border-top-right-radius: @radius; + border-top-left-radius: @radius; +} +.border-right-radius(@radius) { + border-bottom-right-radius: @radius; + border-top-right-radius: @radius; +} +.border-bottom-radius(@radius) { + border-bottom-right-radius: @radius; + border-bottom-left-radius: @radius; +} +.border-left-radius(@radius) { + border-bottom-left-radius: @radius; + border-top-left-radius: @radius; +} -- cgit v1.2.3