iov-design 2.15.28 → 2.15.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -1
- package/lib/iov-design.common.js +2 -2
- package/lib/select.js +1 -1
- package/lib/theme-chalk/autocomplete.css +1 -1
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/cascader.css +1 -1
- package/lib/theme-chalk/date-picker.css +1 -1
- package/lib/theme-chalk/dropdown.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/iovfont.css +1 -1
- package/lib/theme-chalk/pagination.css +1 -1
- package/lib/theme-chalk/popover.css +1 -1
- package/lib/theme-chalk/popper.css +1 -1
- package/lib/theme-chalk/select-dropdown.css +1 -1
- package/lib/theme-chalk/select.css +1 -1
- package/lib/theme-chalk/time-picker.css +1 -1
- package/lib/theme-chalk/time-select.css +1 -1
- package/package.json +1 -1
- package/packages/select/src/select.vue +1 -1
- package/packages/theme-chalk/src/iovfont.scss +4 -0
- package/packages/theme-chalk/src/popper.scss +59 -58
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.popper__arrow {
|
|
16
|
+
display: none;
|
|
16
17
|
border-width: $--popover-arrow-size;
|
|
17
18
|
filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03))
|
|
18
19
|
}
|
|
@@ -23,79 +24,79 @@
|
|
|
23
24
|
}
|
|
24
25
|
|
|
25
26
|
&[x-placement^="top"] {
|
|
26
|
-
margin-bottom:
|
|
27
|
+
margin-bottom: 4px;
|
|
27
28
|
}
|
|
28
29
|
|
|
29
|
-
&[x-placement^="top"] .popper__arrow {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
30
|
+
// &[x-placement^="top"] .popper__arrow {
|
|
31
|
+
// bottom: -$--popover-arrow-size;
|
|
32
|
+
// left: 50%;
|
|
33
|
+
// margin-right: #{$--tooltip-arrow-size / 2};
|
|
34
|
+
// border-top-color: $--popover-border-color;
|
|
35
|
+
// border-bottom-width: 0;
|
|
35
36
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
37
|
+
// &::after {
|
|
38
|
+
// bottom: 1px;
|
|
39
|
+
// margin-left: -$--popover-arrow-size;
|
|
40
|
+
// border-top-color: $--popover-background-color;
|
|
41
|
+
// border-bottom-width: 0;
|
|
42
|
+
// }
|
|
43
|
+
// }
|
|
43
44
|
|
|
44
45
|
&[x-placement^="bottom"] {
|
|
45
|
-
margin-top:
|
|
46
|
+
margin-top: 4px;
|
|
46
47
|
}
|
|
47
48
|
|
|
48
|
-
&[x-placement^="bottom"] .popper__arrow {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
49
|
+
// &[x-placement^="bottom"] .popper__arrow {
|
|
50
|
+
// top: -$--popover-arrow-size;
|
|
51
|
+
// left: 50%;
|
|
52
|
+
// margin-right: #{$--tooltip-arrow-size / 2};
|
|
53
|
+
// border-top-width: 0;
|
|
54
|
+
// border-bottom-color: $--popover-border-color;
|
|
54
55
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}
|
|
56
|
+
// &::after {
|
|
57
|
+
// top: 1px;
|
|
58
|
+
// margin-left: -$--popover-arrow-size;
|
|
59
|
+
// border-top-width: 0;
|
|
60
|
+
// border-bottom-color: $--popover-background-color;
|
|
61
|
+
// }
|
|
62
|
+
// }
|
|
62
63
|
|
|
63
64
|
&[x-placement^="right"] {
|
|
64
|
-
margin-left:
|
|
65
|
+
margin-left: 4px;
|
|
65
66
|
}
|
|
66
67
|
|
|
67
|
-
&[x-placement^="right"] .popper__arrow {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
68
|
+
// &[x-placement^="right"] .popper__arrow {
|
|
69
|
+
// top: 50%;
|
|
70
|
+
// left: -$--popover-arrow-size;
|
|
71
|
+
// margin-bottom: #{$--tooltip-arrow-size / 2};
|
|
72
|
+
// border-right-color: $--popover-border-color;
|
|
73
|
+
// border-left-width: 0;
|
|
73
74
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
75
|
+
// &::after {
|
|
76
|
+
// bottom: -$--popover-arrow-size;
|
|
77
|
+
// left: 1px;
|
|
78
|
+
// border-right-color: $--popover-background-color;
|
|
79
|
+
// border-left-width: 0;
|
|
80
|
+
// }
|
|
81
|
+
// }
|
|
81
82
|
|
|
82
83
|
&[x-placement^="left"] {
|
|
83
|
-
margin-right:
|
|
84
|
+
margin-right: 4px;
|
|
84
85
|
}
|
|
85
86
|
|
|
86
|
-
&[x-placement^="left"] .popper__arrow {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
87
|
+
// &[x-placement^="left"] .popper__arrow {
|
|
88
|
+
// top: 50%;
|
|
89
|
+
// right: -$--popover-arrow-size;
|
|
90
|
+
// margin-bottom: #{$--tooltip-arrow-size / 2};
|
|
91
|
+
// border-right-width: 0;
|
|
92
|
+
// border-left-color: $--popover-border-color;
|
|
92
93
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
101
|
-
}
|
|
94
|
+
// &::after {
|
|
95
|
+
// right: 1px;
|
|
96
|
+
// bottom: -$--popover-arrow-size;
|
|
97
|
+
// margin-left: -$--popover-arrow-size;
|
|
98
|
+
// border-right-width: 0;
|
|
99
|
+
// border-left-color: $--popover-background-color;
|
|
100
|
+
// }
|
|
101
|
+
// }
|
|
102
|
+
}
|