microboard-temp 0.1.20 → 0.1.22
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/dist/cjs/browser.css +73 -0
- package/dist/cjs/browser.js +492 -596
- package/dist/cjs/index.css +73 -0
- package/dist/cjs/index.js +492 -515
- package/dist/cjs/node.css +73 -0
- package/dist/cjs/node.js +492 -515
- package/dist/esm/browser.css +73 -0
- package/dist/esm/browser.js +492 -596
- package/dist/esm/index.css +73 -0
- package/dist/esm/index.js +492 -515
- package/dist/esm/node.css +73 -0
- package/dist/esm/node.js +492 -515
- package/dist/types/api/initDefaultI18N.d.ts +11 -0
- package/dist/types/api/initI18N.d.ts +6 -11
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/dist/types/api/initI18NBrowser.d.ts +0 -2
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/* src/Selection/QuickAddButtons/QuickAddButtons.module.css */
|
|
2
|
+
.quickAddButton_Z11Ztg {
|
|
3
|
+
position: absolute;
|
|
4
|
+
transform-origin: center;
|
|
5
|
+
z-index: 2;
|
|
6
|
+
background-color: #93aff6;
|
|
7
|
+
border: 1px solid #fff;
|
|
8
|
+
border-radius: 50%;
|
|
9
|
+
margin: auto;
|
|
10
|
+
padding: 14px;
|
|
11
|
+
transition: transform .2s, border 0s .2s;
|
|
12
|
+
transform: translate(-50%, -50%)scale(.25);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.invisible_Z11Ztg {
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.quickAddButtonActive_Z11Ztg {
|
|
20
|
+
background-color: #924fe8;
|
|
21
|
+
border: none;
|
|
22
|
+
transform: translate(-50%, -50%)scale(1);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.quickAddButton_Z11Ztg:after {
|
|
26
|
+
content: "";
|
|
27
|
+
position: absolute;
|
|
28
|
+
opacity: 1;
|
|
29
|
+
border-radius: 50%;
|
|
30
|
+
transition: all .2s .2s;
|
|
31
|
+
inset: 0;
|
|
32
|
+
transform: scale(4);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.quickAddButtonActive_Z11Ztg:after {
|
|
36
|
+
opacity: 0;
|
|
37
|
+
transform: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.quickAddButton_Z11Ztg:before {
|
|
41
|
+
content: "";
|
|
42
|
+
position: absolute;
|
|
43
|
+
--quick-add-button-width: 17px;
|
|
44
|
+
--quick-add-button-height: 10px;
|
|
45
|
+
width: var(--quick-add-button-width);
|
|
46
|
+
height: var(--quick-add-button-height);
|
|
47
|
+
opacity: 0;
|
|
48
|
+
transform-origin: center;
|
|
49
|
+
background: url("data:image/svg+xml;utf8,<svg width=\"var(--quick-add-button-width)\" height=\"var(--quick-add-button-height)\" viewBox=\"0 0 17 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16.7593 5.00009L10.5339 9.58329L9.68819 8.30677L12.9245 5.83329H0.0415039V4.16663H12.9241L9.68819 1.69341L10.5339 0.416626L16.7593 5.00009Z\" fill=\"white\"/></svg>") no-repeat;
|
|
50
|
+
transition: opacity .2s;
|
|
51
|
+
top: 35%;
|
|
52
|
+
left: 20%;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.quickAddButtonActive_Z11Ztg:before {
|
|
56
|
+
opacity: 1;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.quickAddButton_Z11Ztg.left_Z11Ztg:before {
|
|
60
|
+
rotate: 180deg;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.quickAddButton_Z11Ztg.right_Z11Ztg:before {
|
|
64
|
+
rotate: none;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.quickAddButton_Z11Ztg.top_Z11Ztg:before {
|
|
68
|
+
rotate: 270deg;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.quickAddButton_Z11Ztg.bottom_Z11Ztg:before {
|
|
72
|
+
rotate: 90deg;
|
|
73
|
+
}
|