@fullsession.io/fs-feedback-widget 1.3.2 → 1.3.5

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.
@@ -1,4 +1,4 @@
1
- container{
1
+ fsContainer{
2
2
  width: 100%;
3
3
  display: flex;
4
4
  flex-direction: var(--wgPositionVertical);
@@ -9,8 +9,9 @@ container{
9
9
  align-items: var(--wgPositionHorizintal);
10
10
  padding: 0;
11
11
  z-index: 100000;
12
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
12
13
  }
13
- .widget {
14
+ .fsWidget {
14
15
  pointer-events: auto;
15
16
  background-color: var(--widgetColor);
16
17
  width: 34px;
@@ -27,12 +28,12 @@ container{
27
28
  cursor: pointer;
28
29
  margin-top: 5px;
29
30
  }
30
- #mainIcon {
31
+ #fsMainIcon {
31
32
  width: 60%;
32
33
  margin-left: 4%;
33
34
  cursor: pointer;
34
35
  }
35
- #feedbackTxt {
36
+ #fsFeedbackTxt {
36
37
  color: var(--widgetTextColor);
37
38
  font-size: 15px;
38
39
  writing-mode: vertical-lr;
@@ -40,12 +41,12 @@ container{
40
41
  cursor: pointer;
41
42
  font-size-adjust: 0.40;
42
43
  }
43
- .widget:hover {
44
+ .fsWidget:hover {
44
45
  width: 35px;
45
46
  -webkit-box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.24);
46
47
  box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.24);
47
48
  }
48
- .cont {
49
+ .fsCont {
49
50
  pointer-events: auto;
50
51
  width: 320px;
51
52
  height: fit-content;
@@ -55,7 +56,7 @@ container{
55
56
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
56
57
  box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
57
58
  }
58
- .thanksMessageCont{
59
+ .fsThanksMessageCont{
59
60
  pointer-events: auto;
60
61
  width: 320px;
61
62
  height: 104px;
@@ -65,15 +66,14 @@ container{
65
66
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
66
67
  box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
67
68
  }
68
- #closeIcon{
69
- font-size: 16px;
69
+ #fsCloseIcon{
70
+ font-size: 15px;
70
71
  color: #ffff;
71
72
  font-weight: 600;
72
- font-family: system-ui;
73
- cursor: pointer;
73
+ cursor: pointer;
74
74
 
75
75
  }
76
- .closeCont{
76
+ .fsCloseCont{
77
77
  pointer-events: auto;
78
78
  background-color: #4d5167;
79
79
  width: 27px;
@@ -91,8 +91,8 @@ container{
91
91
 
92
92
 
93
93
 
94
- @media (min-width: 640px) {
94
+ /* @media (min-width: 640px) {
95
95
  body {
96
96
  max-width: none;
97
97
  }
98
- }
98
+ } */
@@ -3,6 +3,7 @@
3
3
  import Icons from "../Icons/reactionIcons.svelte";
4
4
  import "../widgetPages/reactionpage.css"
5
5
  export let feedbackData;
6
+ console.log("hiiih")
6
7
  $: widgetComponent = 1;
7
8
  let reactionNames = ["hate","dislike","neutral","like","love"];
8
9
  let changingReactionNames = reactionNames;
@@ -34,42 +35,53 @@
34
35
  let checkEmailAreaInterval;
35
36
 
36
37
  export let closeHandler = (email,comment,reactionType) => {};
37
-
38
+ export let closeHandlerBeforeFinishing = (email,comment,reactionType) => {};
39
+
38
40
 
39
- const commentButtonDisable = () =>{
41
+ // const commentButtonDisable = () =>{
40
42
 
41
- let input = document.querySelector(".textArea");
43
+ // let source = document.querySelector(".fsTextArea");
42
44
 
43
- checkTextAreaInterval = setInterval(() => {
44
- console.log(input.value)
45
- if (input.value=== "") {
45
+ // source.addEventListener('propertychange', commentHandler);
46
+
47
+
48
+ // }
49
+ const commentHandler = () => {
50
+ let input = document.querySelector(".fsTextArea");
51
+
52
+ if (input.value=== "") {
46
53
  buttonState = false; //button remains disabled
47
54
  } else {
48
55
  buttonState = true; //button is enabled
49
56
  }
50
- }, 500);
51
-
52
-
53
- }
57
+ comment = "";
58
+ comment = input.value;
59
+ console.log(input.value)
60
+ }
54
61
 
55
- const EmailButtonDisable = () =>{
62
+ // const EmailButtonDisable = () =>{
56
63
 
57
- let input = document.querySelector("#EmailTextArea");
64
+ // let source = document.querySelector("#fsEmailTextArea");
58
65
 
59
- checkEmailAreaInterval = setInterval(() => {
60
- console.log(input.value)
61
- if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(input.value)) || input.value ==="") {
66
+ // source.addEventListener('propertychange', emailHandler);
67
+
68
+
69
+ // }
70
+
71
+ const emailHandler = ()=> {
72
+ let input = document.querySelector("#fsEmailTextArea");
73
+
74
+ if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(input.value)) || input.value ==="") {
62
75
  buttonState = false; //button remains disabled
63
76
  } else {
64
77
  buttonState = true; //button is enabled
78
+ email = "";
79
+ email = document.getElementById("fsEmailTextArea").value;
65
80
  }
66
- email = "";
67
- email = document.getElementById("EmailTextArea").value;
68
-
69
- }, 500);
70
81
 
71
-
72
- }
82
+
83
+
84
+ }
73
85
 
74
86
 
75
87
  const changeStyle = (prevState) =>{
@@ -96,7 +108,7 @@
96
108
  widgetComponent = state;
97
109
  reactionType = String(rating);
98
110
  changingReactionNames = ["unSelectedHate","unSelectedDislike","unSelectedNeutral","unSelectedLike","unSelectedLove"];
99
-
111
+ closeHandlerBeforeFinishing(email,comment,reactionType)
100
112
  if(count >0){
101
113
  changeStyle(prevName)
102
114
  }
@@ -133,54 +145,60 @@
133
145
 
134
146
  const openEmailCont = (state) =>{
135
147
  clearInterval(checkTextAreaInterval);
148
+ document.querySelector(".fsTextArea").value="";
136
149
  buttonState = false
137
150
  widgetComponent = state;
138
- comment = document.getElementsByClassName("textArea")[0].value;
151
+
139
152
  }
140
153
 
141
-
154
+ const endEmailInterval =()=> {
155
+ console.log("444")
156
+ clearInterval(checkEmailAreaInterval);
157
+ document.querySelector("#fsEmailTextArea").value="";
158
+
159
+ }
142
160
 
143
161
  </script>
144
162
 
145
163
 
146
164
 
147
165
  {#if widgetComponent === 1}
148
- <div class="container">
149
- <div id="txt">{feedbackData.wgQuestion}</div>
150
- <div class="icons">
151
- <div class="iconTextCont" on:click={() =>openComment(2,1,"hate")}>
152
- <div class="reactionIcon">
166
+ <div class="fsReactionsContainer">
167
+ <div id="fsTxt">{feedbackData.wgQuestion}</div>
168
+ <div class="fsIcons">
169
+ <div class="fsIconTextCont" on:click={() =>openComment(2,1,"hate")}>
170
+ <div class="fsReactionIcon">
153
171
  <Icons bind:name={changingReactionNames[0]}/>
154
172
  </div>
155
173
 
156
- <p class="reactionText">Hate</p>
174
+ <p class="fsReactionText">Hate</p>
157
175
  </div>
158
176
 
159
- <div class="iconTextCont" on:click={() =>openComment(2,2,"dislike")}>
160
- <div class="reactionIcon">
177
+ <div class="fsIconTextCont" on:click={() =>openComment(2,2,"dislike")}>
178
+ <div class="fsReactionIcon">
161
179
  <Icons bind:name={changingReactionNames[1]} />
162
180
  </div>
163
181
 
164
- <p class="reactionText">Dislike</p>
182
+ <p class="fsReactionText">Dislike</p>
165
183
  </div>
166
- <div class="iconTextCont" on:click={() =>openComment(2,3,"neutral")}>
167
- <div class="reactionIcon">
184
+ <div class="fsIconTextCont" on:click={() =>openComment(2,3,"neutral")}>
185
+ <div class="fsReactionIcon">
168
186
  <Icons bind:name={changingReactionNames[2]} />
169
187
  </div>
170
188
 
171
- <p class="reactionText">Neutral</p>
189
+ <p class="fsReactionText">Neutral</p>
172
190
  </div>
173
- <div class="iconTextCont" on:click={() =>openComment(2,4,"like")}>
174
- <div class="reactionIcon">
191
+ <div class="fsIconTextCont" on:click={() =>openComment(2,4,"like")}>
192
+ <div class="fsReactionIcon">
175
193
  <Icons bind:name={changingReactionNames[3]} />
176
194
  </div>
177
- <p class="reactionText">Like</p>
195
+ <p class="fsReactionText">Like</p>
178
196
  </div>
179
- <div class="iconTextCont" on:click={() =>openComment(2,5,"love")}>
180
- <div class="reactionIcon">
197
+ <div class="fsIconTextCont" on:click={() =>openComment(2,5,"love")}>
198
+ <div class="fsReactionIcon">
181
199
  <Icons bind:name={changingReactionNames[4]} />
182
200
  </div>
183
- <p class="reactionText" >Love</p>
201
+ <p class="fsReactionText" >Love</p>
184
202
  </div>
185
203
  </div>
186
204
  <p id ="test"></p>
@@ -188,10 +206,10 @@
188
206
 
189
207
 
190
208
  {:else if widgetComponent === 2}
191
- <div class="commentContainer">
192
- <div class="icons-second">
193
- <div class="iconTextCont" on:click={() =>openComment(2,1,"hate")}>
194
- <div class="reactionIcon">
209
+ <div class="fsCommentContainer">
210
+ <div class="fsIcons-second">
211
+ <div class="fsIconTextCont" on:click={() =>openComment(2,1,"hate")}>
212
+ <div class="fsReactionIcon">
195
213
  {#if reactionState}
196
214
  <Icons bind:name={changingReactionNames[0]}/>
197
215
  {:else if reactionState==false}
@@ -199,11 +217,11 @@
199
217
  {/if}
200
218
  </div>
201
219
 
202
- <p class="reactionText" id="hateDiv">Hate</p>
220
+ <p class="fsReactionText" id="fsHateDiv">Hate</p>
203
221
  </div>
204
222
 
205
- <div class="iconTextCont" on:click={() =>openComment(2,2,"dislike")}>
206
- <div class="reactionIcon">
223
+ <div class="fsIconTextCont" on:click={() =>openComment(2,2,"dislike")}>
224
+ <div class="fsReactionIcon">
207
225
  {#if reactionState}
208
226
  <Icons bind:name={changingReactionNames[1]}/>
209
227
  {:else if reactionState==false}
@@ -211,10 +229,10 @@
211
229
  {/if}
212
230
  </div>
213
231
 
214
- <p class="reactionText" id="dislikeDiv">Dislike</p>
232
+ <p class="fsReactionText" id="fsDislikeDiv">Dislike</p>
215
233
  </div>
216
- <div class="iconTextCont" on:click={() =>openComment(2,3,"neutral")}>
217
- <div class="reactionIcon">
234
+ <div class="fsIconTextCont" on:click={() =>openComment(2,3,"neutral")}>
235
+ <div class="fsReactionIcon">
218
236
  {#if reactionState}
219
237
  <Icons bind:name={changingReactionNames[2]}/>
220
238
  {:else if reactionState==false}
@@ -222,65 +240,65 @@
222
240
  {/if}
223
241
  </div>
224
242
 
225
- <p class="reactionText" id="neutralDiv">Neutral</p>
243
+ <p class="fsReactionText" id="fsNeutralDiv">Neutral</p>
226
244
  </div>
227
- <div class="iconTextCont" on:click={() =>openComment(2,4,"like")}>
228
- <div class="reactionIcon">
245
+ <div class="fsIconTextCont" on:click={() =>openComment(2,4,"like")}>
246
+ <div class="fsReactionIcon">
229
247
  {#if reactionState}
230
248
  <Icons bind:name={changingReactionNames[3]}/>
231
249
  {:else if reactionState==false}
232
250
  <Icons bind:name={changingReactionNames[3]}/>
233
251
  {/if}
234
252
  </div>
235
- <p class="reactionText" id="likeDiv">Like</p>
253
+ <p class="fsReactionText" id="fsLikeDiv">Like</p>
236
254
  </div>
237
- <div class="iconTextCont">
238
- <div class="reactionIcon" on:click={() =>openComment(2,5,"love")}>
255
+ <div class="fsIconTextCont">
256
+ <div class="fsReactionIcon" on:click={() =>openComment(2,5,"love")}>
239
257
  {#if reactionState}
240
258
  <Icons bind:name={changingReactionNames[4]}/>
241
259
  {:else if reactionState==false}
242
260
  <Icons bind:name={changingReactionNames[4]}/>
243
261
  {/if}
244
262
  </div>
245
- <p class="reactionText" id="loveDiv">Love</p>
263
+ <p class="fsReactionText" id="fsLoveDiv">Love</p>
246
264
  </div>
247
265
  </div>
248
266
 
249
- <div class="textAreaCont" >
250
- <div class="pointerDiv" id="pointer" ></div>
251
- <textarea class="textArea" placeholder="Tell us your experience..." on:click={() => commentButtonDisable()}></textarea>
267
+ <div class="fsTextAreaCont" >
268
+ <div class="fsPointerDiv" id="fsPointer" ></div>
269
+ <textarea class="fsTextArea" placeholder="Tell us your experience..." on:keyup={() => commentHandler()}></textarea>
252
270
  </div>
253
271
 
254
- <div class="footer">
272
+ <div class="fsFooter">
255
273
  {#if buttonState == false}
256
- <button class="CommentButtonContDisable" disabled>
257
- <p class="CommentButtonTxtDisable">Send</p>
274
+ <button class="fsCommentButtonContDisable" disabled>
275
+ <p class="fsCommentButtonTxtDisable">Send</p>
258
276
  </button>
259
277
  {:else if buttonState == true}
260
- <button class="sendButtonContCommentComp" on:click={() => openEmailCont(3)} >
261
- <p class="SendButtonCommentComponent">Send</p>
278
+ <button class="fsSendButtonContCommentComp" on:click={() => openEmailCont(3)} >
279
+ <p class="fsSendButtonCommentComponent">Send</p>
262
280
  </button>
263
281
  {/if}
264
282
  </div>
265
283
  </div>
266
284
  {:else if widgetComponent === 3}
267
- <div class="emailContainer">
268
- <div id="emailText">
285
+ <div class="fsEmailContainer">
286
+ <div id="fsEmailText">
269
287
  {feedbackData.wgEmailReqMsg}
270
288
  </div>
271
- <div id="emailInputCont" on:click={() => EmailButtonDisable()}>
272
- <input type="text" id="EmailTextArea" placeholder="email@domain.com">
289
+ <div id="fsEmailInputCont">
290
+ <input type="text" id="fsEmailTextArea" placeholder="email@domain.com" on:keyup={() => emailHandler()}>
273
291
  </div>
274
- <div class="emailFooter">
275
- <p id="skipText" on:click={() => closeHandler(email,comment,reactionType)}><u>Skip</u></p>
292
+ <div class="fsEmailFooter">
293
+ <p id="fsSkipText" on:click={() => closeHandler(email,comment,reactionType)}><u>Skip</u></p>
276
294
  {#if buttonState == false}
277
- <button class="CommentButtonContDisable" disabled>
278
- <p class="CommentButtonTxtDisable">Send</p>
295
+ <button class="fsCommentButtonContDisable" disabled>
296
+ <p class="fsCommentButtonTxtDisable">Send</p>
279
297
  </button>
280
298
  {:else if buttonState == true}
281
- <button class="sendButtonContCommentComp" on:click={() => closeHandler(email,comment,reactionType)}>
282
- <p class="SendButtonCommentComponent" >Send</p>
283
- </button>
299
+ <button class="fsSendButtonContCommentComp" on:click={() => closeHandler(email,comment,reactionType)} on:click={()=>endEmailInterval() }>
300
+ <p class="fsSendButtonCommentComponent" >Send</p>
301
+ </button>
284
302
  {/if}
285
303
 
286
304
  </div>
@@ -1,16 +1,17 @@
1
- .container {
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
- .icons {
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
- #txt {
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
- .iconTextCont {
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
- .reactionText {
32
+ .fsReactionText {
31
33
  font-size: 12px;
32
34
  display: none;
33
- margin-top: 9.5%;
35
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
36
+ margin-top: 0px;
34
37
 
35
38
  }
36
- .iconTextCont:hover{
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
- .reactionIcon:hover + .reactionText {
44
+ .fsReactionIcon:hover + .fsReactionText {
41
45
  display: block;
42
46
  opacity: 0.8;
43
47
  }
44
48
 
45
- .commentContainer{
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
- .textAreaCont{
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
- .textArea{
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
- .SendButtonCommentComponent{
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
- .sendButtonContCommentComp{
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
- .CommentButtonContDisable{
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
- .CommentButtonTxtDisable{
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
- .footer{
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
- .icons-second{
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
- .pointerDiv{
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
- #hateDiv{
153
+ #fsHateDiv{
136
154
  display: var(--hateDisplay);
137
155
  }
138
- #dislikeDiv{
156
+ #fsDislikeDiv{
139
157
  display: var(--dislikeDisplay);
140
158
  }
141
- #neutralDiv{
159
+ #fsNeutralDiv{
142
160
  display: var(--neutralDisplay);
143
161
  }
144
- #likeDiv{
162
+ #fsLikeDiv{
145
163
  display: var(--likeDisplay);
146
164
  }
147
- #loveDiv{
165
+ #fsLoveDiv{
148
166
  display: var(--loveDisplay);
149
167
  }
150
- .emailContainer{
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
- #emailInputCont{
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
- #EmailTextArea{
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
- #emailText{
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
- .emailFooter{
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
- #skipText{
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
- #skipText:hover{
228
+ #fsSkipText:hover{
199
229
  color: #666666;
230
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
231
+
200
232
  }