@fullsession.io/fs-feedback-widget 1.0.6 → 1.0.7
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 +273 -1
- 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/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/App.svelte +1 -94
- package/src/main.js +2 -2
- package/src/widgetPages/App.css +92 -0
- package/src/widgetPages/reactionPage.svelte +2 -184
- package/src/widgetPages/reactionpage.css +182 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
.container {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
height: 190px;
|
|
5
|
+
}
|
|
6
|
+
.icons {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: row;
|
|
9
|
+
justify-content: space-evenly;
|
|
10
|
+
margin-top: 11%;
|
|
11
|
+
}
|
|
12
|
+
#txt {
|
|
13
|
+
font-size: 17px;
|
|
14
|
+
display: flex;
|
|
15
|
+
text-align: center;
|
|
16
|
+
margin-top: 5%;
|
|
17
|
+
width: 61%;
|
|
18
|
+
margin-left: 19%;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.iconTextCont {
|
|
22
|
+
display: flex;
|
|
23
|
+
flex-direction: column;
|
|
24
|
+
align-items: center;
|
|
25
|
+
height: 22px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.reactionText {
|
|
29
|
+
font-size: 9px;
|
|
30
|
+
display: none;
|
|
31
|
+
}
|
|
32
|
+
.iconTextCont:hover{
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
}
|
|
35
|
+
.reactionIcon:hover + .reactionText {
|
|
36
|
+
display: block;
|
|
37
|
+
opacity: 0.8;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.commentContainer{
|
|
41
|
+
display: flex;
|
|
42
|
+
flex-direction: column;
|
|
43
|
+
height: 291px;
|
|
44
|
+
}
|
|
45
|
+
.textAreaCont{
|
|
46
|
+
width: 100%;
|
|
47
|
+
height: 140px;
|
|
48
|
+
background-color: #eaeaeb;
|
|
49
|
+
margin-top: 17%;
|
|
50
|
+
}
|
|
51
|
+
.textArea{
|
|
52
|
+
border: 0px;
|
|
53
|
+
width: 85%;
|
|
54
|
+
height: 120px;
|
|
55
|
+
background-color: #eaeaeb;
|
|
56
|
+
margin-left: 6%;
|
|
57
|
+
outline: none;
|
|
58
|
+
margin-top: 4%;
|
|
59
|
+
resize: none;
|
|
60
|
+
|
|
61
|
+
}
|
|
62
|
+
.SendButtonCommentComponent{
|
|
63
|
+
color: #ffff;
|
|
64
|
+
font-size: 12px;
|
|
65
|
+
text-align: center;
|
|
66
|
+
margin-top: 1px;
|
|
67
|
+
|
|
68
|
+
}
|
|
69
|
+
.sendButtonContCommentComp{
|
|
70
|
+
background-color: var(--buttonColor);
|
|
71
|
+
width: 50px;
|
|
72
|
+
height: 29px;
|
|
73
|
+
box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 3px 0px;
|
|
74
|
+
border-radius: 3px;
|
|
75
|
+
margin-top: 13px;
|
|
76
|
+
margin-right: 11px;
|
|
77
|
+
cursor: pointer;
|
|
78
|
+
border: 0px;
|
|
79
|
+
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.CommentButtonContDisable{
|
|
83
|
+
background-color: #cccccc;
|
|
84
|
+
width: 50px;
|
|
85
|
+
height: 29px;
|
|
86
|
+
box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 3px 0px;
|
|
87
|
+
border-radius: 3px;
|
|
88
|
+
margin-top: 13px;
|
|
89
|
+
margin-right: 11px;
|
|
90
|
+
cursor:not-allowed;
|
|
91
|
+
border: 0px;
|
|
92
|
+
}
|
|
93
|
+
.CommentButtonTxtDisable{
|
|
94
|
+
color: black;
|
|
95
|
+
font-size: 12px;
|
|
96
|
+
text-align: center;
|
|
97
|
+
margin-top: 2px;
|
|
98
|
+
}
|
|
99
|
+
.footer{
|
|
100
|
+
display: flex;
|
|
101
|
+
justify-content: flex-end;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.icons-second{
|
|
105
|
+
display: flex;
|
|
106
|
+
flex-direction: row;
|
|
107
|
+
justify-content: space-evenly;
|
|
108
|
+
margin-top: 6%;
|
|
109
|
+
}
|
|
110
|
+
.pointerDiv{
|
|
111
|
+
width: 0;
|
|
112
|
+
height: 0;
|
|
113
|
+
border-left: 3px solid transparent;
|
|
114
|
+
margin-top: -8px;
|
|
115
|
+
border-right: 5px solid transparent;
|
|
116
|
+
border-bottom: 8px solid #eaeaeb;
|
|
117
|
+
margin-left: var(--pointerMargin);
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
}
|
|
121
|
+
#hateDiv{
|
|
122
|
+
display: var(--hateDisplay);
|
|
123
|
+
}
|
|
124
|
+
#dislikeDiv{
|
|
125
|
+
display: var(--dislikeDisplay);
|
|
126
|
+
}
|
|
127
|
+
#neutralDiv{
|
|
128
|
+
display: var(--neutralDisplay);
|
|
129
|
+
}
|
|
130
|
+
#likeDiv{
|
|
131
|
+
display: var(--likeDisplay);
|
|
132
|
+
}
|
|
133
|
+
#loveDiv{
|
|
134
|
+
display: var(--loveDisplay);
|
|
135
|
+
}
|
|
136
|
+
.emailContainer{
|
|
137
|
+
display: flex;
|
|
138
|
+
flex-direction: column;
|
|
139
|
+
height: 220px;
|
|
140
|
+
}
|
|
141
|
+
#emailInputCont{
|
|
142
|
+
width: 100%;
|
|
143
|
+
height: 46px;
|
|
144
|
+
background-color: #eaeaeb;
|
|
145
|
+
display: flex;
|
|
146
|
+
/* align-items: center; */
|
|
147
|
+
justify-content: center;
|
|
148
|
+
margin-top: 10%;
|
|
149
|
+
|
|
150
|
+
}
|
|
151
|
+
#EmailTextArea{
|
|
152
|
+
text-align: center;
|
|
153
|
+
border: 0px;
|
|
154
|
+
background-color: #eaeaeb;
|
|
155
|
+
margin-top:3%;
|
|
156
|
+
outline: none;
|
|
157
|
+
}
|
|
158
|
+
#emailText{
|
|
159
|
+
width: 80%;
|
|
160
|
+
text-align: center;
|
|
161
|
+
margin-left: 11%;
|
|
162
|
+
margin-top: 8%;
|
|
163
|
+
line-height: 1.29;
|
|
164
|
+
font-size: 17px;
|
|
165
|
+
}
|
|
166
|
+
.emailFooter{
|
|
167
|
+
display: flex;
|
|
168
|
+
justify-content: flex-end;
|
|
169
|
+
flex-direction: row;
|
|
170
|
+
}
|
|
171
|
+
#skipText{
|
|
172
|
+
color: #908f8f;
|
|
173
|
+
cursor: pointer;
|
|
174
|
+
font-size: 13px;
|
|
175
|
+
margin-top: 6%;
|
|
176
|
+
margin-right: 4%;
|
|
177
|
+
letter-spacing: normal;
|
|
178
|
+
|
|
179
|
+
}
|
|
180
|
+
#skipText:hover{
|
|
181
|
+
color: #666666;
|
|
182
|
+
}
|