summaryrefslogtreecommitdiffstats
path: root/js/vendor/angular-ui/common/stylesheets/mixins.less
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/angular-ui/common/stylesheets/mixins.less')
-rw-r--r--js/vendor/angular-ui/common/stylesheets/mixins.less11
1 files changed, 11 insertions, 0 deletions
diff --git a/js/vendor/angular-ui/common/stylesheets/mixins.less b/js/vendor/angular-ui/common/stylesheets/mixins.less
new file mode 100644
index 000000000..46728ec7f
--- /dev/null
+++ b/js/vendor/angular-ui/common/stylesheets/mixins.less
@@ -0,0 +1,11 @@
+.border-radius(@radius: 5px) {
+ -webkit-border-radius: @radius;
+ -moz-border-radius: @radius;
+ border-radius: @radius;
+}
+
+.box-shadow(@shadow: 0 1px 3px rgba(0,0,0,.25)) {
+ -webkit-box-shadow: @shadow;
+ -moz-box-shadow: @shadow;
+ box-shadow: @shadow;
+} \ No newline at end of file