summaryrefslogtreecommitdiffstats
path: root/js/vendor/angular-ui/common/stylesheets
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/angular-ui/common/stylesheets')
-rw-r--r--js/vendor/angular-ui/common/stylesheets/angular-ui.less7
-rw-r--r--js/vendor/angular-ui/common/stylesheets/mixins.less11
2 files changed, 18 insertions, 0 deletions
diff --git a/js/vendor/angular-ui/common/stylesheets/angular-ui.less b/js/vendor/angular-ui/common/stylesheets/angular-ui.less
new file mode 100644
index 000000000..c388a8eae
--- /dev/null
+++ b/js/vendor/angular-ui/common/stylesheets/angular-ui.less
@@ -0,0 +1,7 @@
+/**
+ * import components to builds angular-ui.css
+ */
+@import "mixins.less";
+@import "modules/directives/reset/stylesheets/reset.less";
+@import "modules/directives/currency/stylesheets/currency.less";
+@import "modules/filters/highlight/highlight.less"; \ No newline at end of file
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