@fullsession.io/fs-feedback-widget 1.6.0 → 1.7.0

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,112 +1,158 @@
1
- fsContainer{
2
- width: 100%;
3
- display: flex;
4
- flex-direction: var(--wgPositionVertical);
5
- position: var(--positionState);
6
- top: 0; right: 0; bottom: 0; left: 0;
7
- height: 100%;
8
- pointer-events: none;
9
- align-items: var(--wgPositionHorizintal);
10
- padding: 0;
11
- z-index: 100000;
12
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
13
- }
14
- fsContainerApp{
15
- width: 776px;
16
- height: 415px;
17
- display: flex;
18
- flex-direction: var(--wgPositionVertical);
19
- position: fixed;
20
- top: 0; right: 0; bottom: 0; left: 0;
21
- pointer-events: none;
22
- align-items: var(--wgPositionHorizintal);
23
- padding: 0;
24
- z-index: 100000;
25
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
26
- }
27
- .fsWidget {
28
- pointer-events: auto;
29
- background-color: var(--widgetColor);
30
- width: 34px;
31
- height: 112px;
32
- border-top-left-radius:var(--widgetLeftSideBorder) ;
33
- border-bottom-left-radius: var(--widgetLeftSideBorder);
34
- border-top-right-radius: var(--widgetRightSideBorder) ;
35
- border-bottom-right-radius: var(--widgetRightSideBorder);
36
- box-shadow: 0.2px 0.2px 0.2px rgb(133, 130, 130);
37
- display: flex;
38
- flex-direction: column;
39
- align-items: center;
40
- justify-content: space-evenly;
41
- cursor: pointer;
42
- margin-top: 5px;
43
- }
44
- #fsMainIcon {
45
- width: 60%;
46
- margin-left: 4%;
47
- cursor: pointer;
48
- }
49
- #fsFeedbackTxt {
50
- color: var(--widgetTextColor);
51
- font-size: 15px;
52
- writing-mode: vertical-lr;
53
- transform: rotate(180deg);
54
- cursor: pointer;
55
- font-size-adjust: 0.40;
56
- }
57
- .fsWidget:hover {
58
- width: 35px;
59
- -webkit-box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.24);
60
- box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.24);
61
- }
62
- .fsCont {
63
- pointer-events: auto;
64
- width: 320px;
65
- height: fit-content;
66
- background-color: rgb(255, 255, 255);
67
- margin-right: var(--widgetMarginRight);
68
- margin-left: var(--widgetMarginLeft);
69
- -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
70
- box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
71
- }
72
- .fsThanksMessageCont{
73
- pointer-events: auto;
74
- width: 320px;
75
- height: auto;
76
- background-color: rgb(255, 255, 255);
77
- margin-right: var(--widgetMarginRight);
78
- margin-left: var(--widgetMarginLeft);
79
- -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
80
- box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
81
- }
82
- #fsCloseIcon{
83
- font-size: 15px;
84
- color: #ffff;
85
- font-weight: 600;
86
- cursor: pointer;
87
- margin-top: 2px;
88
-
89
- }
90
- .fsCloseCont{
91
- pointer-events: auto;
92
- background-color: #4d5167;
93
- width: 27px;
94
- height: 27px;
95
- border-radius: 50%;
96
- display: flex;
97
- justify-content: center;
98
- /* align-items: center; */
99
- margin-top: -15px;
100
- margin-left: 85%;
101
- cursor: pointer;
102
- }
103
-
104
-
105
-
106
-
107
-
108
- /* @media (min-width: 640px) {
109
- body {
110
- max-width: none;
111
- }
1
+ .side {
2
+ width: 100%;
3
+ display: flex;
4
+ flex-direction: var(--wgPositionVertical);
5
+ position: var(--positionState);
6
+ top: 0;
7
+ right: 0;
8
+ bottom: 0;
9
+ left: 0;
10
+ height: 100%;
11
+ pointer-events: none;
12
+ align-items: var(--wgPositionHorizintal);
13
+ padding: 0;
14
+ z-index: 100000;
15
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
16
+ }
17
+
18
+ .modal {
19
+ display: flex !important;
20
+ justify-content: center;
21
+ align-items: center;
22
+ width: 100%;
23
+ height: 100%;
24
+ position: var(--positionState);
25
+ background-color: rgba(0, 0, 0, 0.5);
26
+ z-index: 1;
27
+ pointer-events: none;
28
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
29
+ }
30
+
31
+ .thanks-txt {
32
+ width: 61%;
33
+ padding: 20px 0;
34
+ text-align: center;
35
+ align-self: center;
36
+ padding-bottom: 20px;
37
+ overflow: hidden;
38
+ }
39
+
40
+ fsContainerApp {
41
+ width: 776px;
42
+ height: 415px;
43
+ display: flex;
44
+ flex-direction: var(--wgPositionVertical);
45
+ position: fixed;
46
+ top: 0;
47
+ right: 0;
48
+ bottom: 0;
49
+ left: 0;
50
+ pointer-events: none;
51
+ align-items: var(--wgPositionHorizintal);
52
+ padding: 0;
53
+ z-index: 100000;
54
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
55
+ }
56
+
57
+ .fsWidget {
58
+ pointer-events: auto;
59
+ background-color: var(--widgetColor);
60
+ width: 34px;
61
+ height: 112px;
62
+ border-top-left-radius: var(--widgetLeftSideBorder);
63
+ border-bottom-left-radius: var(--widgetLeftSideBorder);
64
+ border-top-right-radius: var(--widgetRightSideBorder);
65
+ border-bottom-right-radius: var(--widgetRightSideBorder);
66
+ box-shadow: 0.2px 0.2px 0.2px rgb(133, 130, 130);
67
+ display: flex;
68
+ flex-direction: column;
69
+ align-items: center;
70
+ justify-content: space-evenly;
71
+ cursor: pointer;
72
+ margin-top: 5px;
73
+ }
74
+
75
+ #fsMainIcon {
76
+ width: 60%;
77
+ margin-left: 4%;
78
+ cursor: pointer;
79
+ }
80
+
81
+ #fsFeedbackTxt {
82
+ color: var(--widgetTextColor);
83
+ font-size: 15px;
84
+ writing-mode: vertical-lr;
85
+ transform: rotate(180deg);
86
+ cursor: pointer;
87
+ font-size-adjust: 0.40;
88
+ }
89
+
90
+ .fsWidget:hover {
91
+ width: 35px;
92
+ -webkit-box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.24);
93
+ box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.24);
94
+ }
95
+
96
+ .fsCont {
97
+ display: flex;
98
+ flex-direction: column;
99
+ pointer-events: auto;
100
+ border-radius: 5px;
101
+ width: 320px;
102
+ height: fit-content;
103
+ background-color: rgb(255, 255, 255);
104
+ margin-right: var(--widgetMarginRight);
105
+ margin-left: var(--widgetMarginLeft);
106
+ -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
107
+ box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
108
+ }
109
+
110
+ .fsContModal {
111
+ margin: 0;
112
+ }
113
+
114
+ .fsThanksMessageCont {
115
+ display: flex;
116
+ flex-direction: column;
117
+ pointer-events: auto;
118
+ width: 320px;
119
+ height: auto;
120
+ background-color: rgb(255, 255, 255);
121
+ margin-right: var(--widgetMarginRight);
122
+ margin-left: var(--widgetMarginLeft);
123
+ -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
124
+ box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 100px 0px;
125
+ }
126
+
127
+ #fsCloseIcon {
128
+ font-size: 15px;
129
+ color: #ffff;
130
+ font-weight: 600;
131
+ cursor: pointer;
132
+ margin-top: 2px;
133
+
134
+ }
135
+
136
+ .fsCloseCont {
137
+ pointer-events: auto;
138
+ background-color: #4d5167;
139
+ width: 27px;
140
+ height: 27px;
141
+ border-radius: 50%;
142
+ display: flex;
143
+ justify-content: center;
144
+ /* align-items: center; */
145
+ margin-top: -15px;
146
+ margin-left: 85%;
147
+ cursor: pointer;
148
+ }
149
+
150
+
151
+
152
+
153
+
154
+ /* @media (min-width: 640px) {
155
+ body {
156
+ max-width: none;
157
+ }
112
158
  } */