-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
82 lines (79 loc) · 3.77 KB
/
index.js
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
const _ = require('lodash');
module.exports = function () {
return function ({addUtilities, e, theme}) {
addUtilities(_.map(theme('tooltipArrows'), ({borderColor, backgroundColor, size, offset, borderWidth}, key) => {
return {
[`.${e(key)}`]: {
'&-top': {
position: 'relative',
'&:before, &:after': {
content: '""',
position: 'absolute',
left: offset + 'px',
top: '-' + size * 2 + 'px',
borderTop: size + 'px solid transparent',
borderRight: size + 'px solid transparent',
borderBottom: size + 'px solid ' + borderColor,
borderLeft: size + 'px solid transparent',
},
'&:after': {
borderBottom: size + 'px solid ' + backgroundColor,
top: '-' + (2 * size - borderWidth) + 'px'
},
},
'&-right': {
position: 'relative',
'&:before, &:after': {
content: '""',
position: 'absolute',
top: offset + 'px',
right: '-' + size * 2 + 'px',
borderTop: size + 'px solid transparent',
borderRight: size + 'px solid transparent',
borderBottom: size + 'px solid transparent',
borderLeft: size + 'px solid ' + borderColor,
},
'&:after': {
borderLeft: size + 'px solid ' + backgroundColor,
right: '-' + (2 * size - borderWidth) + 'px'
},
},
'&-bottom': {
position: 'relative',
'&:before, &:after': {
content: '""',
position: 'absolute',
left: offset + 'px',
bottom: '-' + size * 2 + 'px',
borderTop: size + 'px solid ' + borderColor,
borderRight: size + 'px solid transparent',
borderBottom: size + 'px solid transparent',
borderLeft: size + 'px solid transparent',
},
'&:after': {
borderTop: size + 'px solid ' + backgroundColor,
bottom: '-' + (2 * size - borderWidth) + 'px'
},
},
'&-left': {
position: 'relative',
'&:before, &:after': {
content: '""',
position: 'absolute',
top: offset + 'px',
left: '-' + size * 2 + 'px',
borderTop: size + 'px solid transparent',
borderRight: size + 'px solid ' + borderColor,
borderBottom: size + 'px solid transparent',
borderLeft: size + 'px solid transparent',
},
'&:after': {
borderRight: size + 'px solid ' + backgroundColor,
left: '-' + (2 * size - borderWidth) + 'px'
},
},
}
};
}));
}
}