@fullsession.io/fs-feedback-widget 1.3.3 → 1.3.6
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/bundle.css +329 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/publicextra.css +298 -0
- package/package.json +1 -1
- package/src/App.svelte +140 -114
- package/src/main.js +32 -32
- package/src/widgetPages/App.css +14 -14
- package/src/widgetPages/reactionPage.svelte +93 -76
- package/src/widgetPages/reactionpage.css +64 -32
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
.
|
|
1
|
+
.fsReactionsContainer {
|
|
2
2
|
pointer-events: auto;
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
5
|
height: 190px;
|
|
6
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
6
7
|
}
|
|
7
|
-
.
|
|
8
|
+
.fsIcons {
|
|
8
9
|
display: flex;
|
|
9
10
|
flex-direction: row;
|
|
10
11
|
justify-content: space-evenly;
|
|
11
12
|
margin-top: 11%;
|
|
12
13
|
}
|
|
13
|
-
#
|
|
14
|
+
#fsTxt {
|
|
14
15
|
font-size: 17px;
|
|
15
16
|
display: flex;
|
|
16
17
|
text-align: center;
|
|
@@ -19,44 +20,50 @@
|
|
|
19
20
|
margin-left: 19%;
|
|
20
21
|
}
|
|
21
22
|
|
|
22
|
-
.
|
|
23
|
+
.fsIconTextCont {
|
|
23
24
|
pointer-events: auto;
|
|
24
25
|
display: flex;
|
|
25
26
|
flex-direction: column;
|
|
26
27
|
align-items: center;
|
|
27
28
|
height: 22px;
|
|
29
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
28
30
|
}
|
|
29
31
|
|
|
30
|
-
.
|
|
32
|
+
.fsReactionText {
|
|
31
33
|
font-size: 12px;
|
|
32
34
|
display: none;
|
|
33
|
-
|
|
35
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
36
|
+
margin-top: 0px;
|
|
34
37
|
|
|
35
38
|
}
|
|
36
|
-
.
|
|
39
|
+
.fsIconTextCont:hover{
|
|
37
40
|
pointer-events: auto;
|
|
38
41
|
cursor: pointer;
|
|
42
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
39
43
|
}
|
|
40
|
-
.
|
|
44
|
+
.fsReactionIcon:hover + .fsReactionText {
|
|
41
45
|
display: block;
|
|
42
46
|
opacity: 0.8;
|
|
43
47
|
}
|
|
44
48
|
|
|
45
|
-
.
|
|
49
|
+
.fsCommentContainer{
|
|
46
50
|
pointer-events: auto;
|
|
47
51
|
display: flex;
|
|
48
52
|
flex-direction: column;
|
|
49
53
|
height: 291px;
|
|
50
54
|
pointer-events: auto;
|
|
55
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
51
56
|
}
|
|
52
|
-
.
|
|
57
|
+
.fsTextAreaCont{
|
|
53
58
|
pointer-events: auto;
|
|
54
59
|
width: 100%;
|
|
55
60
|
height: 140px;
|
|
56
61
|
background-color: #eaeaeb;
|
|
57
62
|
margin-top: 17%;
|
|
63
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
64
|
+
|
|
58
65
|
}
|
|
59
|
-
.
|
|
66
|
+
.fsTextArea{
|
|
60
67
|
border: 0px;
|
|
61
68
|
width: 85%;
|
|
62
69
|
height: 120px;
|
|
@@ -65,17 +72,19 @@
|
|
|
65
72
|
outline: none;
|
|
66
73
|
margin-top: 4%;
|
|
67
74
|
resize: none;
|
|
75
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
68
76
|
|
|
69
77
|
}
|
|
70
|
-
.
|
|
78
|
+
.fsSendButtonCommentComponent{
|
|
71
79
|
pointer-events: auto;
|
|
72
80
|
color: #ffff;
|
|
73
81
|
font-size: 12px;
|
|
74
82
|
text-align: center;
|
|
75
83
|
margin-top: 7px;
|
|
76
|
-
|
|
84
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
85
|
+
|
|
77
86
|
}
|
|
78
|
-
.
|
|
87
|
+
.fsSendButtonContCommentComp{
|
|
79
88
|
pointer-events: auto;
|
|
80
89
|
background-color: var(--buttonColor);
|
|
81
90
|
width: 50px;
|
|
@@ -86,10 +95,11 @@
|
|
|
86
95
|
margin-right: 11px;
|
|
87
96
|
cursor: pointer;
|
|
88
97
|
border: 0px;
|
|
89
|
-
|
|
98
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
99
|
+
|
|
90
100
|
}
|
|
91
101
|
|
|
92
|
-
.
|
|
102
|
+
.fsCommentButtonContDisable{
|
|
93
103
|
pointer-events: auto;
|
|
94
104
|
background-color: #cccccc;
|
|
95
105
|
width: 50px;
|
|
@@ -100,28 +110,36 @@
|
|
|
100
110
|
margin-right: 11px;
|
|
101
111
|
cursor:not-allowed;
|
|
102
112
|
border: 0px;
|
|
113
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
114
|
+
|
|
103
115
|
}
|
|
104
|
-
.
|
|
116
|
+
.fsCommentButtonTxtDisable{
|
|
105
117
|
pointer-events: auto;
|
|
106
118
|
color: black;
|
|
107
119
|
font-size: 12px;
|
|
108
120
|
text-align: center;
|
|
109
121
|
margin-top: 7px;
|
|
122
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
123
|
+
|
|
110
124
|
}
|
|
111
|
-
.
|
|
125
|
+
.fsFooter{
|
|
112
126
|
pointer-events: auto;
|
|
113
127
|
display: flex;
|
|
114
128
|
justify-content: flex-end;
|
|
129
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
130
|
+
|
|
115
131
|
}
|
|
116
132
|
|
|
117
|
-
.
|
|
133
|
+
.fsIcons-second{
|
|
118
134
|
|
|
119
135
|
display: flex;
|
|
120
136
|
flex-direction: row;
|
|
121
137
|
justify-content: space-evenly;
|
|
122
138
|
margin-top: 6%;
|
|
139
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
140
|
+
|
|
123
141
|
}
|
|
124
|
-
.
|
|
142
|
+
.fsPointerDiv{
|
|
125
143
|
width: 0;
|
|
126
144
|
height: 0;
|
|
127
145
|
border-left: 3px solid transparent;
|
|
@@ -132,28 +150,30 @@
|
|
|
132
150
|
|
|
133
151
|
|
|
134
152
|
}
|
|
135
|
-
#
|
|
153
|
+
#fsHateDiv{
|
|
136
154
|
display: var(--hateDisplay);
|
|
137
155
|
}
|
|
138
|
-
#
|
|
156
|
+
#fsDislikeDiv{
|
|
139
157
|
display: var(--dislikeDisplay);
|
|
140
158
|
}
|
|
141
|
-
#
|
|
159
|
+
#fsNeutralDiv{
|
|
142
160
|
display: var(--neutralDisplay);
|
|
143
161
|
}
|
|
144
|
-
#
|
|
162
|
+
#fsLikeDiv{
|
|
145
163
|
display: var(--likeDisplay);
|
|
146
164
|
}
|
|
147
|
-
#
|
|
165
|
+
#fsLoveDiv{
|
|
148
166
|
display: var(--loveDisplay);
|
|
149
167
|
}
|
|
150
|
-
.
|
|
168
|
+
.fsEmailContainer{
|
|
151
169
|
pointer-events: auto;
|
|
152
170
|
display: flex;
|
|
153
171
|
flex-direction: column;
|
|
154
172
|
height: 220px;
|
|
173
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
174
|
+
|
|
155
175
|
}
|
|
156
|
-
#
|
|
176
|
+
#fsEmailInputCont{
|
|
157
177
|
pointer-events: auto;
|
|
158
178
|
pointer-events: auto;
|
|
159
179
|
width: 100%;
|
|
@@ -163,38 +183,50 @@
|
|
|
163
183
|
/* align-items: center; */
|
|
164
184
|
justify-content: center;
|
|
165
185
|
margin-top: 10%;
|
|
186
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
187
|
+
|
|
166
188
|
|
|
167
189
|
}
|
|
168
|
-
#
|
|
190
|
+
#fsEmailTextArea{
|
|
169
191
|
pointer-events: auto;
|
|
170
192
|
text-align: center;
|
|
171
193
|
border: 0px;
|
|
172
194
|
background-color: #eaeaeb;
|
|
173
195
|
outline: none;
|
|
196
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
197
|
+
|
|
174
198
|
}
|
|
175
|
-
#
|
|
199
|
+
#fsEmailText{
|
|
176
200
|
width: 80%;
|
|
177
201
|
text-align: center;
|
|
178
202
|
margin-left: 11%;
|
|
179
203
|
margin-top: 8%;
|
|
180
204
|
line-height: 1.29;
|
|
181
205
|
font-size: 17px;
|
|
206
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
207
|
+
|
|
182
208
|
}
|
|
183
|
-
.
|
|
209
|
+
.fsEmailFooter{
|
|
184
210
|
pointer-events: auto;
|
|
185
211
|
display: flex;
|
|
186
212
|
justify-content: flex-end;
|
|
187
213
|
flex-direction: row;
|
|
214
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
215
|
+
|
|
188
216
|
}
|
|
189
|
-
#
|
|
217
|
+
#fsSkipText{
|
|
190
218
|
color: #908f8f;
|
|
191
219
|
cursor: pointer;
|
|
192
220
|
font-size: 13px;
|
|
193
221
|
margin-top: 6%;
|
|
194
222
|
margin-right: 4%;
|
|
195
223
|
letter-spacing: normal;
|
|
224
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
225
|
+
|
|
196
226
|
|
|
197
227
|
}
|
|
198
|
-
#
|
|
228
|
+
#fsSkipText:hover{
|
|
199
229
|
color: #666666;
|
|
230
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
231
|
+
|
|
200
232
|
}
|