summaryrefslogtreecommitdiffstats
path: root/js/vendor/angular-ui/common/stylesheets/mixins.less
blob: 46728ec7f0388bfe12a52ee9183df7e94e903bf0 (plain)
1
2
3
4
5
6
7
8
9
10
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;
}