AdminLTE/build/bootstrap-less/mixins/border-radius.less

22 lines
463 B
Plaintext
Raw Normal View History

2015-02-01 22:25:09 +01:00
// Single side border-radius
.border-top-radius(@radius) {
border-top-right-radius: @radius;
2015-09-19 20:05:54 +02:00
border-top-left-radius: @radius;
2015-02-01 22:25:09 +01:00
}
2015-09-19 20:05:54 +02:00
2015-02-01 22:25:09 +01:00
.border-right-radius(@radius) {
border-bottom-right-radius: @radius;
2015-09-19 20:05:54 +02:00
border-top-right-radius: @radius;
2015-02-01 22:25:09 +01:00
}
2015-09-19 20:05:54 +02:00
2015-02-01 22:25:09 +01:00
.border-bottom-radius(@radius) {
border-bottom-right-radius: @radius;
2015-09-19 20:05:54 +02:00
border-bottom-left-radius: @radius;
2015-02-01 22:25:09 +01:00
}
2015-09-19 20:05:54 +02:00
2015-02-01 22:25:09 +01:00
.border-left-radius(@radius) {
border-bottom-left-radius: @radius;
2015-09-19 20:05:54 +02:00
border-top-left-radius: @radius;
2015-02-01 22:25:09 +01:00
}