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