2017-10-02 23:34:56 -04:00
|
|
|
// stylelint-disable declaration-no-important
|
|
|
|
|
2016-09-09 02:21:40 -04:00
|
|
|
//
|
2016-11-26 19:44:16 -05:00
|
|
|
// Border
|
2016-09-09 02:21:40 -04:00
|
|
|
//
|
|
|
|
|
2017-12-16 04:13:10 -05:00
|
|
|
.border { border: $border-width solid $border-color !important; }
|
|
|
|
.border-top { border-top: $border-width solid $border-color !important; }
|
|
|
|
.border-right { border-right: $border-width solid $border-color !important; }
|
|
|
|
.border-bottom { border-bottom: $border-width solid $border-color !important; }
|
|
|
|
.border-left { border-left: $border-width solid $border-color !important; }
|
|
|
|
|
2016-11-28 01:23:12 -05:00
|
|
|
.border-0 { border: 0 !important; }
|
|
|
|
.border-top-0 { border-top: 0 !important; }
|
|
|
|
.border-right-0 { border-right: 0 !important; }
|
2016-11-26 19:44:16 -05:00
|
|
|
.border-bottom-0 { border-bottom: 0 !important; }
|
2016-11-28 01:23:12 -05:00
|
|
|
.border-left-0 { border-left: 0 !important; }
|
2016-09-09 02:21:40 -04:00
|
|
|
|
2017-06-25 21:39:00 -04:00
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
.border-#{$color} {
|
|
|
|
border-color: $value !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-08 00:36:08 -04:00
|
|
|
.border-white {
|
|
|
|
border-color: $white !important;
|
|
|
|
}
|
|
|
|
|
2016-09-09 02:21:40 -04:00
|
|
|
//
|
|
|
|
// Border-radius
|
|
|
|
//
|
|
|
|
|
|
|
|
.rounded {
|
2017-06-17 22:05:36 -04:00
|
|
|
border-radius: $border-radius !important;
|
2016-09-09 02:21:40 -04:00
|
|
|
}
|
|
|
|
.rounded-top {
|
2017-06-17 22:05:36 -04:00
|
|
|
border-top-left-radius: $border-radius !important;
|
|
|
|
border-top-right-radius: $border-radius !important;
|
2016-09-09 02:21:40 -04:00
|
|
|
}
|
|
|
|
.rounded-right {
|
2017-06-17 22:05:36 -04:00
|
|
|
border-top-right-radius: $border-radius !important;
|
|
|
|
border-bottom-right-radius: $border-radius !important;
|
2016-09-09 02:21:40 -04:00
|
|
|
}
|
|
|
|
.rounded-bottom {
|
2017-06-17 22:05:36 -04:00
|
|
|
border-bottom-right-radius: $border-radius !important;
|
2017-06-18 01:39:54 -04:00
|
|
|
border-bottom-left-radius: $border-radius !important;
|
2016-09-09 02:21:40 -04:00
|
|
|
}
|
|
|
|
.rounded-left {
|
2017-06-17 22:05:36 -04:00
|
|
|
border-top-left-radius: $border-radius !important;
|
|
|
|
border-bottom-left-radius: $border-radius !important;
|
2016-09-09 02:21:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.rounded-circle {
|
2017-09-07 13:36:01 -04:00
|
|
|
border-radius: 50% !important;
|
2016-09-09 02:21:40 -04:00
|
|
|
}
|
2016-11-26 19:47:53 -05:00
|
|
|
|
|
|
|
.rounded-0 {
|
2017-09-07 13:36:01 -04:00
|
|
|
border-radius: 0 !important;
|
2016-11-26 19:47:53 -05:00
|
|
|
}
|