X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fgeedmo%2Fyamm3%2Fdemo%2Fcomponents%2Fbootstrap%2Fless%2Fmixins%2Fborder-radius.less;fp=vendor%2Fgeedmo%2Fyamm3%2Fdemo%2Fcomponents%2Fbootstrap%2Fless%2Fmixins%2Fborder-radius.less;h=ca05dbf457000d122a3b8afcc3847e44cffea421;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/vendor/geedmo/yamm3/demo/components/bootstrap/less/mixins/border-radius.less b/vendor/geedmo/yamm3/demo/components/bootstrap/less/mixins/border-radius.less new file mode 100644 index 000000000..ca05dbf45 --- /dev/null +++ b/vendor/geedmo/yamm3/demo/components/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; +}