cft-builder 0.1.84 → 0.1.86
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/cft-builder.js +1 -1
- package/dist/cft-builder.umd.cjs +206 -206
- package/dist/likert.css +64 -0
- package/dist/likertEmoji.css +63 -0
- package/dist/{main-BvT_Y_VB.js → main-xLHVYpWw.js} +7818 -7818
- package/dist/pdf.css +34 -0
- package/dist/{quill-D3turcM3.js → quill-DDuxQmVm.js} +1 -1
- package/dist/style.scss +181 -0
- package/package.json +1 -1
package/dist/likert.css
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
|
|
2
|
+
.likert {
|
|
3
|
+
--likert-rows: 11;
|
|
4
|
+
/* display: inline-grid;
|
|
5
|
+
max-width: 900px; */
|
|
6
|
+
display: grid;
|
|
7
|
+
|
|
8
|
+
grid-auto-rows: 1fr;
|
|
9
|
+
/* gap: 1em; */
|
|
10
|
+
grid-template-columns: repeat(var(--likert-rows), minmax(0, 1fr));
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@media only screen and (max-width: 680px) {
|
|
14
|
+
.likert {
|
|
15
|
+
grid-template-columns: minmax(0, 400px);
|
|
16
|
+
justify-content: center;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
.likert label {
|
|
22
|
+
border: 1px solid var(--primary-color) !important;
|
|
23
|
+
border-radius: 5px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.likert input {
|
|
27
|
+
max-width: 250px;
|
|
28
|
+
position: fixed;
|
|
29
|
+
opacity: 0;
|
|
30
|
+
pointer-events: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
.likert span {
|
|
35
|
+
|
|
36
|
+
/* border-radius: 5px; */
|
|
37
|
+
display: flex;
|
|
38
|
+
justify-content: center;
|
|
39
|
+
align-items: center;
|
|
40
|
+
text-align: center;
|
|
41
|
+
box-sizing: border-box;
|
|
42
|
+
width: 100%;
|
|
43
|
+
height: 100%;
|
|
44
|
+
padding: 10px;
|
|
45
|
+
background: #dcdcdc00;
|
|
46
|
+
transition: background .2s ease-in-out;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.likert input:checked+span {
|
|
50
|
+
outline: var(--primary-color) auto 1px;
|
|
51
|
+
background: var(--primary-color) !important;
|
|
52
|
+
color:#fff;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.likert input:focus+span {
|
|
56
|
+
/* outline: -webkit-focus-ring-color auto 1px; */
|
|
57
|
+
background: var(--primary-color)
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.likert span:hover {
|
|
61
|
+
background:var(--primary-color);
|
|
62
|
+
color:#fff;
|
|
63
|
+
/* outline: #0F8BFD auto 0.5px; */
|
|
64
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
.emoji {
|
|
2
|
+
--emoji-rows: 5;
|
|
3
|
+
/* display: inline-grid;
|
|
4
|
+
max-width: 900px; */
|
|
5
|
+
display: grid;
|
|
6
|
+
|
|
7
|
+
grid-auto-rows: 1fr;
|
|
8
|
+
/* gap: 1em; */
|
|
9
|
+
grid-template-columns: repeat(var(--emoji-rows), minmax(0, 1fr));
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@media only screen and (max-width: 680px) {
|
|
13
|
+
.emoji {
|
|
14
|
+
grid-template-columns: minmax(0, 400px);
|
|
15
|
+
justify-content: center;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
.emoji label {
|
|
21
|
+
border: 1px solid var(--primary-color) !important;
|
|
22
|
+
/* border-radius: 5px; */
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.emoji input {
|
|
26
|
+
max-width: 250px;
|
|
27
|
+
position: fixed;
|
|
28
|
+
opacity: 0;
|
|
29
|
+
pointer-events: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
.emoji span {
|
|
34
|
+
|
|
35
|
+
/* border-radius: 5px; */
|
|
36
|
+
display: flex;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
align-items: center;
|
|
39
|
+
text-align: center;
|
|
40
|
+
box-sizing: border-box;
|
|
41
|
+
width: 100%;
|
|
42
|
+
height: 100%;
|
|
43
|
+
padding: 10px;
|
|
44
|
+
background: #dcdcdc00;
|
|
45
|
+
transition: background .2s ease-in-out;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.emoji input:checked+span {
|
|
49
|
+
outline: var(--primary-color) auto 1px;
|
|
50
|
+
background: var(--primary-color) !important;
|
|
51
|
+
color:#fff;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.emoji input:focus+span {
|
|
55
|
+
/* outline: -webkit-focus-ring-color auto 1px; */
|
|
56
|
+
background: var(--primary-color)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.emoji span:hover {
|
|
60
|
+
background:var(--primary-color);
|
|
61
|
+
color:#fff;
|
|
62
|
+
/* outline: #0F8BFD auto 0.5px; */
|
|
63
|
+
}
|