freemium-survey-components 2.0.481 → 2.0.482
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/lib/bundle.css +45 -8
- package/lib/index.cjs.js +1 -1
- package/lib/index.esm.js +1 -1
- package/package.json +1 -1
package/lib/bundle.css
CHANGED
|
@@ -4937,8 +4937,10 @@ div.surveyserv-widget-container.compact-container-style .fsc-radio-group button.
|
|
|
4937
4937
|
}
|
|
4938
4938
|
.facebook-wrapper .fb-question-container {
|
|
4939
4939
|
align-self: flex-start;
|
|
4940
|
+
box-sizing: border-box;
|
|
4941
|
+
width: max-content;
|
|
4940
4942
|
max-width: 90%;
|
|
4941
|
-
min-width:
|
|
4943
|
+
min-width: 0;
|
|
4942
4944
|
display: flex;
|
|
4943
4945
|
flex-direction: column;
|
|
4944
4946
|
pointer-events: none;
|
|
@@ -5086,16 +5088,44 @@ div.surveyserv-widget-container.compact-container-style .fsc-radio-group button.
|
|
|
5086
5088
|
hyphens: auto;
|
|
5087
5089
|
}
|
|
5088
5090
|
.facebook-wrapper .choices {
|
|
5091
|
+
box-sizing: border-box;
|
|
5089
5092
|
display: flex;
|
|
5090
5093
|
flex-direction: column;
|
|
5091
5094
|
gap: 6px;
|
|
5092
5095
|
margin-top: 0px;
|
|
5093
5096
|
list-style-type: none;
|
|
5094
5097
|
padding: 0;
|
|
5098
|
+
min-width: 0;
|
|
5099
|
+
width: 100%;
|
|
5095
5100
|
overflow-wrap: break-word;
|
|
5096
5101
|
word-break: break-word;
|
|
5097
5102
|
hyphens: auto;
|
|
5098
5103
|
}
|
|
5104
|
+
.facebook-wrapper .choices .ellipsis-wrapper {
|
|
5105
|
+
min-width: 0;
|
|
5106
|
+
max-width: 100%;
|
|
5107
|
+
overflow: hidden;
|
|
5108
|
+
text-overflow: ellipsis;
|
|
5109
|
+
white-space: nowrap;
|
|
5110
|
+
word-break: normal;
|
|
5111
|
+
overflow-wrap: normal;
|
|
5112
|
+
}
|
|
5113
|
+
.facebook-wrapper .choices .star-rating-wrapper {
|
|
5114
|
+
display: flex;
|
|
5115
|
+
align-items: center;
|
|
5116
|
+
min-width: 0;
|
|
5117
|
+
max-width: 100%;
|
|
5118
|
+
overflow: hidden;
|
|
5119
|
+
}
|
|
5120
|
+
.facebook-wrapper .choices .star-rating-wrapper .star-rating-label {
|
|
5121
|
+
flex: 1 1 0;
|
|
5122
|
+
min-width: 0;
|
|
5123
|
+
overflow: hidden;
|
|
5124
|
+
text-overflow: ellipsis;
|
|
5125
|
+
white-space: nowrap;
|
|
5126
|
+
word-break: normal;
|
|
5127
|
+
overflow-wrap: normal;
|
|
5128
|
+
}
|
|
5099
5129
|
.facebook-wrapper .choices svg:not(#star) {
|
|
5100
5130
|
width: 25px;
|
|
5101
5131
|
height: 25px;
|
|
@@ -5113,10 +5143,9 @@ div.surveyserv-widget-container.compact-container-style .fsc-radio-group button.
|
|
|
5113
5143
|
padding-right: 15px;
|
|
5114
5144
|
}
|
|
5115
5145
|
.facebook-wrapper .choices.boolean-choices:has(.choice:nth-child(2):last-child) {
|
|
5116
|
-
flex-direction:
|
|
5146
|
+
flex-direction: column;
|
|
5117
5147
|
}
|
|
5118
5148
|
.facebook-wrapper .choices.boolean-choices:has(.choice:nth-child(2):last-child) .boolean-choice {
|
|
5119
|
-
width: calc(80% - 16px);
|
|
5120
5149
|
border-radius: 8px;
|
|
5121
5150
|
}
|
|
5122
5151
|
.facebook-wrapper .choices.boolean-choices .boolean-choice {
|
|
@@ -5127,15 +5156,19 @@ div.surveyserv-widget-container.compact-container-style .fsc-radio-group button.
|
|
|
5127
5156
|
font-weight: 500;
|
|
5128
5157
|
gap: 8px;
|
|
5129
5158
|
width: 100%;
|
|
5130
|
-
|
|
5159
|
+
min-width: 0;
|
|
5160
|
+
max-width: 100%;
|
|
5161
|
+
padding: 6px;
|
|
5131
5162
|
border: none;
|
|
5132
5163
|
display: flex;
|
|
5133
5164
|
justify-content: center;
|
|
5134
5165
|
align-items: center;
|
|
5166
|
+
overflow: hidden;
|
|
5167
|
+
height: 32px;
|
|
5135
5168
|
}
|
|
5136
5169
|
.facebook-wrapper .choices.dropdown-choices {
|
|
5137
5170
|
display: grid;
|
|
5138
|
-
grid-template-columns:
|
|
5171
|
+
grid-template-columns: minmax(0, 1fr);
|
|
5139
5172
|
padding: 0 12px;
|
|
5140
5173
|
gap: 8px;
|
|
5141
5174
|
}
|
|
@@ -5143,23 +5176,27 @@ div.surveyserv-widget-container.compact-container-style .fsc-radio-group button.
|
|
|
5143
5176
|
border-radius: 8px;
|
|
5144
5177
|
padding: 2px;
|
|
5145
5178
|
display: flex;
|
|
5179
|
+
min-width: 0;
|
|
5180
|
+
max-width: 100%;
|
|
5181
|
+
overflow: hidden;
|
|
5146
5182
|
text-align: center;
|
|
5147
5183
|
align-items: center;
|
|
5148
5184
|
background-color: #e2e5ea !important;
|
|
5149
5185
|
}
|
|
5150
|
-
.facebook-wrapper .choices.dropdown-choices .dropdown-choice:first-child {
|
|
5151
|
-
grid-column: span 2;
|
|
5152
|
-
}
|
|
5153
5186
|
.facebook-wrapper .choices.dropdown-choices .dropdown-choice button {
|
|
5154
5187
|
font-size: 14px;
|
|
5155
5188
|
font-weight: 500;
|
|
5156
5189
|
gap: 8px;
|
|
5157
5190
|
width: 100%;
|
|
5191
|
+
min-width: 0;
|
|
5192
|
+
max-width: 100%;
|
|
5158
5193
|
padding: 6px;
|
|
5159
5194
|
border: none;
|
|
5160
5195
|
display: flex;
|
|
5161
5196
|
justify-content: center;
|
|
5162
5197
|
align-items: center;
|
|
5198
|
+
overflow: hidden;
|
|
5199
|
+
height: 32px;
|
|
5163
5200
|
}
|
|
5164
5201
|
.facebook-wrapper .choices.dropdown-choices .dropdown-choice button .fb-star-rating-wrapper {
|
|
5165
5202
|
align-items: center;
|