forked from olton/metroui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathborder.less
More file actions
98 lines (87 loc) · 3.02 KB
/
Copy pathborder.less
File metadata and controls
98 lines (87 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
:root {
--border-radius: 4px;
}
.no-border {border: 0 !important;}
.no-border-left {border-left: none !important;}
.no-border-right {border-right: none !important;}
.no-border-top {border-top: none !important;}
.no-border-bottom {border-bottom: none !important;}
.no-border-visible {border-color: transparent !important;}
.border-none {border: 0 !important;}
.border-left-none {border-left: none !important;}
.border-right-none {border-right: none !important;}
.border-top-none {border-top: none !important;}
.border-bottom-none {border-bottom: none !important;}
.border-visible-none {border-color: transparent !important;}
.border {border: 1px solid transparent;}
.border-left {border-left: 1px solid transparent;}
.border-right {border-right: 1px solid transparent;}
.border-top {border-top: 1px solid transparent;}
.border-bottom {border-bottom: 1px solid transparent;}
.border-top-left, .border-left-top {
border-top: 1px solid transparent;
border-left: 1px solid transparent;
}
.border-top-right, .border-right-top {
border-top: 1px solid transparent;
border-right: 1px solid transparent;
}
.border-bottom-right, .border-right-bottom {
border-bottom: 1px solid transparent;
border-right: 1px solid transparent;
}
.border-bottom-left, .border-left-bottom {
border-bottom: 1px solid transparent;
border-left: 1px solid transparent;
}
.border-top-bottom, .border-bottom-top {
border-bottom: 1px solid transparent;
border-top: 1px solid transparent;
}
.border-right-left, .border-left-right {
border-right: 1px solid transparent;
border-left: 1px solid transparent;
}
.border-top-right-bottom {
border-top: 1px solid transparent;
border-right: 1px solid transparent;
border-bottom: 1px solid transparent;
}
.border-right-bottom-left {
border-left: 1px solid transparent;
border-right: 1px solid transparent;
border-bottom: 1px solid transparent;
}
.border-bottom-left-top {
border-left: 1px solid transparent;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
}
.border-left-top-right {
border-left: 1px solid transparent;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
}
.border-radius {border-radius: var(--border-radius);}
.border-radius-half {border-radius: 50%;}
.generate-border-width(20);
.generate-border-width(@i) when (@i > 0) {
.border-@{i} {border-width: unit(@i, px);}
.border-size-@{i} {border-width: unit(@i, px);}
.border-radius-@{i} {border-radius: unit(@i, px);}
.generate-border-width(@i - 1);
}
.rounded {
border-radius: var(--border-radius) !important;
}
.border-50 {
border-radius: 50% !important;
}
.border-solid {border-style: solid!important;}
.border-dashed {border-style: dashed!important;}
.border-dotted {border-style: dotted!important;}
.border-double {border-style: double!important;}
.border-groove {border-style: groove!important;}
.border-inset {border-style: inset!important;}
.border-outset {border-style: outset!important;}
.border-ridge {border-style: ridge!important;}