From 80b299e8c4f290e3b16f35eea922cac989b6e767 Mon Sep 17 00:00:00 2001 From: seshukm Date: Wed, 8 Mar 2017 11:54:56 +0530 Subject: VnfMarket place refactor IssueId : CLIENT-4 Change-Id: Ia1b076400f9c3bedf9db714099a608ece392aa59 Signed-off-by: seshukm --- .../bootstrap/less/mixins/border-radius.less | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 vnfmarket/src/main/webapp/common/thirdparty/bootstrap/less/mixins/border-radius.less (limited to 'vnfmarket/src/main/webapp/common/thirdparty/bootstrap/less/mixins/border-radius.less') diff --git a/vnfmarket/src/main/webapp/common/thirdparty/bootstrap/less/mixins/border-radius.less b/vnfmarket/src/main/webapp/common/thirdparty/bootstrap/less/mixins/border-radius.less new file mode 100644 index 00000000..ca05dbf4 --- /dev/null +++ b/vnfmarket/src/main/webapp/common/thirdparty/bootstrap/less/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 1.2.3-korg