1 |
efrain |
1 |
// stylelint-disable property-disallowed-list, declaration-no-important
|
|
|
2 |
|
|
|
3 |
//
|
|
|
4 |
// Border
|
|
|
5 |
//
|
|
|
6 |
|
|
|
7 |
.border { border: $border-width solid $border-color !important; }
|
|
|
8 |
.border-top { border-top: $border-width solid $border-color !important; }
|
|
|
9 |
.border-right { border-right: $border-width solid $border-color !important; }
|
|
|
10 |
.border-bottom { border-bottom: $border-width solid $border-color !important; }
|
|
|
11 |
.border-left { border-left: $border-width solid $border-color !important; }
|
|
|
12 |
|
|
|
13 |
|
|
|
14 |
.theme-dark {
|
|
|
15 |
.border { border: $border-width solid $dm-border-color !important; }
|
|
|
16 |
.border-top { border-top: $border-width solid $dm-border-color !important; }
|
|
|
17 |
.border-right { border-right: $border-width solid $dm-border-color !important; }
|
|
|
18 |
.border-bottom { border-bottom: $border-width solid $dm-border-color !important; }
|
|
|
19 |
.border-left { border-left: $border-width solid $dm-border-color !important; }
|
|
|
20 |
}
|
|
|
21 |
|
|
|
22 |
|
|
|
23 |
.border-0 { border: 0 !important; }
|
|
|
24 |
.border-top-0 { border-top: 0 !important; }
|
|
|
25 |
.border-right-0 { border-right: 0 !important; }
|
|
|
26 |
.border-bottom-0 { border-bottom: 0 !important; }
|
|
|
27 |
.border-left-0 { border-left: 0 !important; }
|
|
|
28 |
|
|
|
29 |
@each $color, $value in $theme-colors {
|
|
|
30 |
.border-#{$color} {
|
|
|
31 |
border-color: $value !important;
|
|
|
32 |
}
|
|
|
33 |
}
|
|
|
34 |
|
|
|
35 |
.border-white {
|
|
|
36 |
border-color: $white !important;
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
//
|
|
|
40 |
// Border-radius
|
|
|
41 |
//
|
|
|
42 |
|
|
|
43 |
.rounded-sm {
|
|
|
44 |
border-radius: $btn-border-radius-sm !important;
|
|
|
45 |
}
|
|
|
46 |
|
|
|
47 |
.rounded {
|
|
|
48 |
border-radius: $btn-border-radius !important;
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
.rounded-top {
|
|
|
52 |
border-top-left-radius: $btn-border-radius !important;
|
|
|
53 |
border-top-right-radius: $btn-border-radius !important;
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
.rounded-right {
|
|
|
57 |
border-top-right-radius: $btn-border-radius !important;
|
|
|
58 |
border-bottom-right-radius: $btn-border-radius !important;
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
.rounded-bottom {
|
|
|
62 |
border-bottom-right-radius: $btn-border-radius !important;
|
|
|
63 |
border-bottom-left-radius: $btn-border-radius !important;
|
|
|
64 |
}
|
|
|
65 |
|
|
|
66 |
.rounded-left {
|
|
|
67 |
border-top-left-radius: $btn-border-radius !important;
|
|
|
68 |
border-bottom-left-radius: $btn-border-radius !important;
|
|
|
69 |
}
|
|
|
70 |
|
|
|
71 |
.rounded-lg {
|
|
|
72 |
border-radius: $btn-border-radius-lg !important;
|
|
|
73 |
}
|
|
|
74 |
|
|
|
75 |
.rounded-circle {
|
|
|
76 |
border-radius: 50% !important;
|
|
|
77 |
}
|
|
|
78 |
|
|
|
79 |
.rounded-pill {
|
|
|
80 |
border-radius: $rounded-pill !important;
|
|
|
81 |
}
|
|
|
82 |
|
|
|
83 |
.rounded-0 {
|
|
|
84 |
border-radius: 0 !important;
|
|
|
85 |
}
|