Merge "NonCentralizedAppException-junits"
[portal.git] / portal-FE-common / src / styles / bootstrap / utilities / _borders.scss
1 // stylelint-disable declaration-no-important
2
3 //
4 // Border
5 //
6
7 .border          { border: $border-width solid $border-color !important; }
8 .border-0        { border: 0 !important; }
9 .border-top-0    { border-top: 0 !important; }
10 .border-right-0  { border-right: 0 !important; }
11 .border-bottom-0 { border-bottom: 0 !important; }
12 .border-left-0   { border-left: 0 !important; }
13
14 @each $color, $value in $theme-colors {
15   .border-#{$color} {
16     border-color: $value !important;
17   }
18 }
19
20 .border-white {
21   border-color: $white !important;
22 }
23
24 //
25 // Border-radius
26 //
27
28 .rounded {
29   border-radius: $border-radius !important;
30 }
31 .rounded-top {
32   border-top-left-radius: $border-radius !important;
33   border-top-right-radius: $border-radius !important;
34 }
35 .rounded-right {
36   border-top-right-radius: $border-radius !important;
37   border-bottom-right-radius: $border-radius !important;
38 }
39 .rounded-bottom {
40   border-bottom-right-radius: $border-radius !important;
41   border-bottom-left-radius: $border-radius !important;
42 }
43 .rounded-left {
44   border-top-left-radius: $border-radius !important;
45   border-bottom-left-radius: $border-radius !important;
46 }
47
48 .rounded-circle {
49   border-radius: 50% !important;
50 }
51
52 .rounded-0 {
53   border-radius: 0 !important;
54 }