@roqua/quby-frontend 0.1.5 → 0.3.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.
- package/CHANGELOG.md +11 -0
- package/lib/assets/assets/quby/application.css +0 -650
- package/lib/assets/quby/application.css +0 -650
- package/lib/components/AnswerPage.d.ts.map +1 -1
- package/lib/components/AnswerPage.js +24 -3
- package/lib/components/AnswerPage.js.map +1 -1
- package/lib/components/MainLabel.js +4 -2
- package/lib/components/MainLabel.js.map +1 -1
- package/lib/components/Paginator.js +21 -3
- package/lib/components/Paginator.js.map +1 -1
- package/lib/components/PanelContent.js +3 -1
- package/lib/components/PanelContent.js.map +1 -1
- package/lib/components/PanelItem.d.ts.map +1 -1
- package/lib/components/PanelItem.js +4 -4
- package/lib/components/PanelItem.js.map +1 -1
- package/lib/components/ProgressBar.d.ts.map +1 -1
- package/lib/components/ProgressBar.js +6 -4
- package/lib/components/ProgressBar.js.map +1 -1
- package/lib/components/Quby.js +3 -1
- package/lib/components/Quby.js.map +1 -1
- package/lib/components/QuestionDescription.js +3 -1
- package/lib/components/QuestionDescription.js.map +1 -1
- package/lib/components/QuestionWrapper.d.ts +2 -2
- package/lib/components/QuestionWrapper.d.ts.map +1 -1
- package/lib/components/QuestionWrapper.js +4 -2
- package/lib/components/QuestionWrapper.js.map +1 -1
- package/lib/components/ValidationErrors.d.ts +2 -2
- package/lib/components/ValidationErrors.d.ts.map +1 -1
- package/lib/components/ValidationErrors.js +6 -4
- package/lib/components/ValidationErrors.js.map +1 -1
- package/lib/components/index.js +12 -5
- package/lib/components/index.js.map +1 -1
- package/lib/components/items/HtmlItem.js +3 -1
- package/lib/components/items/HtmlItem.js.map +1 -1
- package/lib/components/items/QuestionItem.d.ts +4 -3
- package/lib/components/items/QuestionItem.d.ts.map +1 -1
- package/lib/components/items/QuestionItem.js +47 -6
- package/lib/components/items/QuestionItem.js.map +1 -1
- package/lib/components/items/UnknownItem.js +3 -1
- package/lib/components/items/UnknownItem.js.map +1 -1
- package/lib/components/questions/CheckBoxQuestion.d.ts +2 -1
- package/lib/components/questions/CheckBoxQuestion.d.ts.map +1 -1
- package/lib/components/questions/CheckBoxQuestion.js +22 -17
- package/lib/components/questions/CheckBoxQuestion.js.map +1 -1
- package/lib/components/questions/DatePartsQuestion.d.ts +9 -0
- package/lib/components/questions/DatePartsQuestion.d.ts.map +1 -0
- package/lib/components/questions/DatePartsQuestion.js +37 -0
- package/lib/components/questions/DatePartsQuestion.js.map +1 -0
- package/lib/components/questions/FloatQuestion.d.ts +1 -1
- package/lib/components/questions/FloatQuestion.d.ts.map +1 -1
- package/lib/components/questions/FloatQuestion.js +10 -5
- package/lib/components/questions/FloatQuestion.js.map +1 -1
- package/lib/components/questions/IntegerQuestion.d.ts +1 -1
- package/lib/components/questions/IntegerQuestion.d.ts.map +1 -1
- package/lib/components/questions/IntegerQuestion.js +9 -4
- package/lib/components/questions/IntegerQuestion.js.map +1 -1
- package/lib/components/questions/RadioQuestion.d.ts +1 -1
- package/lib/components/questions/RadioQuestion.d.ts.map +1 -1
- package/lib/components/questions/RadioQuestion.js +8 -6
- package/lib/components/questions/RadioQuestion.js.map +1 -1
- package/lib/components/questions/ScaleQuestion.d.ts +1 -1
- package/lib/components/questions/ScaleQuestion.d.ts.map +1 -1
- package/lib/components/questions/ScaleQuestion.js +7 -5
- package/lib/components/questions/ScaleQuestion.js.map +1 -1
- package/lib/components/questions/SelectQuestion.d.ts.map +1 -1
- package/lib/components/questions/SelectQuestion.js +8 -6
- package/lib/components/questions/SelectQuestion.js.map +1 -1
- package/lib/components/questions/SliderQuestion.d.ts +9 -0
- package/lib/components/questions/SliderQuestion.d.ts.map +1 -0
- package/lib/components/questions/SliderQuestion.js +123 -0
- package/lib/components/questions/SliderQuestion.js.map +1 -0
- package/lib/components/questions/StringQuestion.d.ts +1 -1
- package/lib/components/questions/StringQuestion.d.ts.map +1 -1
- package/lib/components/questions/StringQuestion.js +6 -5
- package/lib/components/questions/StringQuestion.js.map +1 -1
- package/lib/components/questions/TextareaQuestion.d.ts +1 -1
- package/lib/components/questions/TextareaQuestion.d.ts.map +1 -1
- package/lib/components/questions/TextareaQuestion.js +6 -4
- package/lib/components/questions/TextareaQuestion.js.map +1 -1
- package/lib/core/index.d.ts +1 -1
- package/lib/core/index.d.ts.map +1 -1
- package/lib/core/index.js +14 -6
- package/lib/core/index.js.map +1 -1
- package/lib/core/mock_helpers.d.ts +6 -0
- package/lib/core/mock_helpers.d.ts.map +1 -0
- package/lib/core/mock_helpers.js +41 -0
- package/lib/core/mock_helpers.js.map +1 -0
- package/lib/core/questionnaire.d.ts +3 -1
- package/lib/core/questionnaire.d.ts.map +1 -1
- package/lib/core/questionnaire.js +3 -0
- package/lib/core/questionnaire.js.map +1 -1
- package/lib/core/questionnaire_json.d.ts +48 -13
- package/lib/core/questionnaire_json.d.ts.map +1 -1
- package/lib/core/response.d.ts +31 -8
- package/lib/core/response.d.ts.map +1 -1
- package/lib/core/response.js +45 -4
- package/lib/core/response.js.map +1 -1
- package/lib/core/validators.d.ts +16 -9
- package/lib/core/validators.d.ts.map +1 -1
- package/lib/core/validators.js +166 -27
- package/lib/core/validators.js.map +1 -1
- package/lib/core/visibility_rules.js +5 -2
- package/lib/core/visibility_rules.js.map +1 -1
- package/lib/i18n.d.ts.map +1 -1
- package/lib/i18n.js +27 -18
- package/lib/i18n.js.map +1 -1
- package/lib/index.js +12 -5
- package/lib/index.js.map +1 -1
- package/package.json +4 -2
- package/lib/components/items/MarkdownItem.d.ts +0 -9
- package/lib/components/items/MarkdownItem.d.ts.map +0 -1
- package/lib/components/items/MarkdownItem.js +0 -13
- package/lib/components/items/MarkdownItem.js.map +0 -1
- package/lib/components/questions/DateQuestion.d.ts +0 -9
- package/lib/components/questions/DateQuestion.d.ts.map +0 -1
- package/lib/components/questions/DateQuestion.js +0 -29
- package/lib/components/questions/DateQuestion.js.map +0 -1
- package/lib/core/markdown.d.ts +0 -2
- package/lib/core/markdown.d.ts.map +0 -1
- package/lib/core/markdown.js +0 -7
- package/lib/core/markdown.js.map +0 -1
- package/lib/core/models.d.ts +0 -160
- package/lib/core/models.d.ts.map +0 -1
- package/lib/core/models.js +0 -3
- package/lib/core/models.js.map +0 -1
|
@@ -2372,7 +2372,6 @@ html.busy, html.busy * {
|
|
|
2372
2372
|
.paged .item.vertical.textarea textarea,
|
|
2373
2373
|
.single-page .item.vertical.textarea textarea {
|
|
2374
2374
|
width: 100%;
|
|
2375
|
-
float: right;
|
|
2376
2375
|
margin-right: 0;
|
|
2377
2376
|
*margin-left: -1em;
|
|
2378
2377
|
display: inline;
|
|
@@ -2841,7 +2840,6 @@ html.busy, html.busy * {
|
|
|
2841
2840
|
/* line 74, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
2842
2841
|
.paged .item.horizontal.string input, .single-page .item.horizontal.string input, .paged .item.horizontal.string textarea, .single-page .item.horizontal.string textarea, .paged .item.horizontal.textarea input, .single-page .item.horizontal.textarea input, .paged .item.horizontal.textarea textarea, .single-page .item.horizontal.textarea textarea {
|
|
2843
2842
|
width: 100%;
|
|
2844
|
-
float: right;
|
|
2845
2843
|
margin-right: 0;
|
|
2846
2844
|
}
|
|
2847
2845
|
/* line 75, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
@@ -3018,7 +3016,6 @@ html.busy, html.busy * {
|
|
|
3018
3016
|
/* line 155, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3019
3017
|
.paged .item.vertical.string input, .single-page .item.vertical.string input, .paged .item.vertical.string textarea, .single-page .item.vertical.string textarea, .paged .item.vertical.textarea input, .single-page .item.vertical.textarea input, .paged .item.vertical.textarea textarea, .single-page .item.vertical.textarea textarea {
|
|
3020
3018
|
width: 100%;
|
|
3021
|
-
float: right;
|
|
3022
3019
|
margin-right: 0;
|
|
3023
3020
|
}
|
|
3024
3021
|
/* line 156, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
@@ -3123,653 +3120,6 @@ html.busy, html.busy * {
|
|
|
3123
3120
|
text-align: right;
|
|
3124
3121
|
}
|
|
3125
3122
|
}
|
|
3126
|
-
/* line 2, /home/marten/rgoc/quby/app/assets/stylesheets/quby/general/desktop.scss */
|
|
3127
|
-
.lt-ie9 .paged #content, .lt-ie9 .single-page #content {
|
|
3128
|
-
margin: 6em auto 0em auto;
|
|
3129
|
-
}
|
|
3130
|
-
/* line 9, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3131
|
-
.lt-ie9 .paged tr, .lt-ie9 .single-page tr {
|
|
3132
|
-
border: none;
|
|
3133
|
-
}
|
|
3134
|
-
/* line 13, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3135
|
-
.lt-ie9 .paged .panel, .lt-ie9 .single-page .panel {
|
|
3136
|
-
*zoom: 1;
|
|
3137
|
-
max-width: 99em;
|
|
3138
|
-
_width: 99em;
|
|
3139
|
-
padding-left: 1em;
|
|
3140
|
-
padding-right: 1em;
|
|
3141
|
-
margin-left: auto;
|
|
3142
|
-
margin-right: auto;
|
|
3143
|
-
/* Overwrite width. New susy version seems to break this */
|
|
3144
|
-
max-width: 49.5em;
|
|
3145
|
-
border: 4px solid #dddddd;
|
|
3146
|
-
margin-top: 6em;
|
|
3147
|
-
padding: 3em 2em 1.5em;
|
|
3148
|
-
}
|
|
3149
|
-
/* line 38, /home/marten/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
|
|
3150
|
-
.lt-ie9 .paged .panel:after, .lt-ie9 .single-page .panel:after {
|
|
3151
|
-
content: "";
|
|
3152
|
-
display: table;
|
|
3153
|
-
clear: both;
|
|
3154
|
-
}
|
|
3155
|
-
/* line 40, /home/marten/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
3156
|
-
.lt-ie9 .paged .panel .table div, .lt-ie9 .single-page .panel .table div, .lt-ie9 .paged .panel .table span, .lt-ie9 .single-page .panel .table span, .lt-ie9 .paged .panel .table applet, .lt-ie9 .single-page .panel .table applet, .lt-ie9 .paged .panel .table object, .lt-ie9 .single-page .panel .table object, .lt-ie9 .paged .panel .table iframe, .lt-ie9 .single-page .panel .table iframe,
|
|
3157
|
-
.lt-ie9 .paged .panel .table h1,
|
|
3158
|
-
.lt-ie9 .single-page .panel .table h1, .lt-ie9 .paged .panel .table h2, .lt-ie9 .single-page .panel .table h2, .lt-ie9 .paged .panel .table h3, .lt-ie9 .single-page .panel .table h3, .lt-ie9 .paged .panel .table h4, .lt-ie9 .single-page .panel .table h4, .lt-ie9 .paged .panel .table h5, .lt-ie9 .single-page .panel .table h5, .lt-ie9 .paged .panel .table h6, .lt-ie9 .single-page .panel .table h6, .lt-ie9 .paged .panel .table p, .lt-ie9 .single-page .panel .table p, .lt-ie9 .paged .panel .table blockquote, .lt-ie9 .single-page .panel .table blockquote, .lt-ie9 .paged .panel .table pre, .lt-ie9 .single-page .panel .table pre,
|
|
3159
|
-
.lt-ie9 .paged .panel .table a,
|
|
3160
|
-
.lt-ie9 .single-page .panel .table a, .lt-ie9 .paged .panel .table abbr, .lt-ie9 .single-page .panel .table abbr, .lt-ie9 .paged .panel .table acronym, .lt-ie9 .single-page .panel .table acronym, .lt-ie9 .paged .panel .table address, .lt-ie9 .single-page .panel .table address, .lt-ie9 .paged .panel .table big, .lt-ie9 .single-page .panel .table big, .lt-ie9 .paged .panel .table cite, .lt-ie9 .single-page .panel .table cite, .lt-ie9 .paged .panel .table code, .lt-ie9 .single-page .panel .table code,
|
|
3161
|
-
.lt-ie9 .paged .panel .table del,
|
|
3162
|
-
.lt-ie9 .single-page .panel .table del, .lt-ie9 .paged .panel .table dfn, .lt-ie9 .single-page .panel .table dfn, .lt-ie9 .paged .panel .table em, .lt-ie9 .single-page .panel .table em, .lt-ie9 .paged .panel .table img, .lt-ie9 .single-page .panel .table img, .lt-ie9 .paged .panel .table ins, .lt-ie9 .single-page .panel .table ins, .lt-ie9 .paged .panel .table kbd, .lt-ie9 .single-page .panel .table kbd, .lt-ie9 .paged .panel .table q, .lt-ie9 .single-page .panel .table q, .lt-ie9 .paged .panel .table s, .lt-ie9 .single-page .panel .table s, .lt-ie9 .paged .panel .table samp, .lt-ie9 .single-page .panel .table samp,
|
|
3163
|
-
.lt-ie9 .paged .panel .table small,
|
|
3164
|
-
.lt-ie9 .single-page .panel .table small, .lt-ie9 .paged .panel .table strike, .lt-ie9 .single-page .panel .table strike, .lt-ie9 .paged .panel .table strong, .lt-ie9 .single-page .panel .table strong, .lt-ie9 .paged .panel .table sub, .lt-ie9 .single-page .panel .table sub, .lt-ie9 .paged .panel .table sup, .lt-ie9 .single-page .panel .table sup, .lt-ie9 .paged .panel .table tt, .lt-ie9 .single-page .panel .table tt, .lt-ie9 .paged .panel .table var, .lt-ie9 .single-page .panel .table var,
|
|
3165
|
-
.lt-ie9 .paged .panel .table b,
|
|
3166
|
-
.lt-ie9 .single-page .panel .table b, .lt-ie9 .paged .panel .table u, .lt-ie9 .single-page .panel .table u, .lt-ie9 .paged .panel .table i, .lt-ie9 .single-page .panel .table i, .lt-ie9 .paged .panel .table center, .lt-ie9 .single-page .panel .table center,
|
|
3167
|
-
.lt-ie9 .paged .panel .table dl,
|
|
3168
|
-
.lt-ie9 .single-page .panel .table dl, .lt-ie9 .paged .panel .table dt, .lt-ie9 .single-page .panel .table dt, .lt-ie9 .paged .panel .table dd, .lt-ie9 .single-page .panel .table dd, .lt-ie9 .paged .panel .table ol, .lt-ie9 .single-page .panel .table ol, .lt-ie9 .paged .panel .table ul, .lt-ie9 .single-page .panel .table ul, .lt-ie9 .paged .panel .table li, .lt-ie9 .single-page .panel .table li,
|
|
3169
|
-
.lt-ie9 .paged .panel .table fieldset,
|
|
3170
|
-
.lt-ie9 .single-page .panel .table fieldset, .lt-ie9 .paged .panel .table form, .lt-ie9 .single-page .panel .table form, .lt-ie9 .paged .panel .table label, .lt-ie9 .single-page .panel .table label, .lt-ie9 .paged .panel .table legend, .lt-ie9 .single-page .panel .table legend,
|
|
3171
|
-
.lt-ie9 .paged .panel .table table,
|
|
3172
|
-
.lt-ie9 .single-page .panel .table table, .lt-ie9 .paged .panel .table caption, .lt-ie9 .single-page .panel .table caption, .lt-ie9 .paged .panel .table tbody, .lt-ie9 .single-page .panel .table tbody, .lt-ie9 .paged .panel .table tfoot, .lt-ie9 .single-page .panel .table tfoot, .lt-ie9 .paged .panel .table thead, .lt-ie9 .single-page .panel .table thead, .lt-ie9 .paged .panel .table tr, .lt-ie9 .single-page .panel .table tr, .lt-ie9 .paged .panel .table th, .lt-ie9 .single-page .panel .table th, .lt-ie9 .paged .panel .table td, .lt-ie9 .single-page .panel .table td,
|
|
3173
|
-
.lt-ie9 .paged .panel .table article,
|
|
3174
|
-
.lt-ie9 .single-page .panel .table article, .lt-ie9 .paged .panel .table aside, .lt-ie9 .single-page .panel .table aside, .lt-ie9 .paged .panel .table canvas, .lt-ie9 .single-page .panel .table canvas, .lt-ie9 .paged .panel .table details, .lt-ie9 .single-page .panel .table details, .lt-ie9 .paged .panel .table embed, .lt-ie9 .single-page .panel .table embed,
|
|
3175
|
-
.lt-ie9 .paged .panel .table figure,
|
|
3176
|
-
.lt-ie9 .single-page .panel .table figure, .lt-ie9 .paged .panel .table figcaption, .lt-ie9 .single-page .panel .table figcaption, .lt-ie9 .paged .panel .table footer, .lt-ie9 .single-page .panel .table footer, .lt-ie9 .paged .panel .table header, .lt-ie9 .single-page .panel .table header, .lt-ie9 .paged .panel .table hgroup, .lt-ie9 .single-page .panel .table hgroup,
|
|
3177
|
-
.lt-ie9 .paged .panel .table menu,
|
|
3178
|
-
.lt-ie9 .single-page .panel .table menu, .lt-ie9 .paged .panel .table nav, .lt-ie9 .single-page .panel .table nav, .lt-ie9 .paged .panel .table output, .lt-ie9 .single-page .panel .table output, .lt-ie9 .paged .panel .table ruby, .lt-ie9 .single-page .panel .table ruby, .lt-ie9 .paged .panel .table section, .lt-ie9 .single-page .panel .table section, .lt-ie9 .paged .panel .table summary, .lt-ie9 .single-page .panel .table summary,
|
|
3179
|
-
.lt-ie9 .paged .panel .table time,
|
|
3180
|
-
.lt-ie9 .single-page .panel .table time, .lt-ie9 .paged .panel .table mark, .lt-ie9 .single-page .panel .table mark, .lt-ie9 .paged .panel .table audio, .lt-ie9 .single-page .panel .table audio, .lt-ie9 .paged .panel .table video, .lt-ie9 .single-page .panel .table video {
|
|
3181
|
-
margin: 0;
|
|
3182
|
-
padding: 0;
|
|
3183
|
-
border: 0;
|
|
3184
|
-
font: inherit;
|
|
3185
|
-
font-size: 100%;
|
|
3186
|
-
vertical-align: baseline;
|
|
3187
|
-
}
|
|
3188
|
-
/* line 55, /home/marten/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
3189
|
-
.lt-ie9 .paged .panel .table table, .lt-ie9 .single-page .panel .table table {
|
|
3190
|
-
border-collapse: collapse;
|
|
3191
|
-
border-spacing: 0;
|
|
3192
|
-
}
|
|
3193
|
-
/* line 57, /home/marten/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
3194
|
-
.lt-ie9 .paged .panel .table caption, .lt-ie9 .single-page .panel .table caption, .lt-ie9 .paged .panel .table th, .lt-ie9 .single-page .panel .table th, .lt-ie9 .paged .panel .table td, .lt-ie9 .single-page .panel .table td {
|
|
3195
|
-
text-align: left;
|
|
3196
|
-
font-weight: normal;
|
|
3197
|
-
vertical-align: middle;
|
|
3198
|
-
}
|
|
3199
|
-
/* line 59, /home/marten/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
3200
|
-
.lt-ie9 .paged .panel .table q, .lt-ie9 .single-page .panel .table q, .lt-ie9 .paged .panel .table blockquote, .lt-ie9 .single-page .panel .table blockquote {
|
|
3201
|
-
quotes: none;
|
|
3202
|
-
}
|
|
3203
|
-
/* line 103, /home/marten/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
3204
|
-
.lt-ie9 .paged .panel .table q:before, .lt-ie9 .single-page .panel .table q:before, .lt-ie9 .paged .panel .table q:after, .lt-ie9 .single-page .panel .table q:after, .lt-ie9 .paged .panel .table blockquote:before, .lt-ie9 .single-page .panel .table blockquote:before, .lt-ie9 .paged .panel .table blockquote:after, .lt-ie9 .single-page .panel .table blockquote:after {
|
|
3205
|
-
content: "";
|
|
3206
|
-
content: none;
|
|
3207
|
-
}
|
|
3208
|
-
/* line 61, /home/marten/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
3209
|
-
.lt-ie9 .paged .panel .table a img, .lt-ie9 .single-page .panel .table a img {
|
|
3210
|
-
border: none;
|
|
3211
|
-
}
|
|
3212
|
-
/* line 4, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3213
|
-
.lt-ie9 .paged .panel .table p, .lt-ie9 .single-page .panel .table p, .lt-ie9 .paged .panel .table div, .lt-ie9 .single-page .panel .table div {
|
|
3214
|
-
display: inline;
|
|
3215
|
-
}
|
|
3216
|
-
/* line 8, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3217
|
-
.lt-ie9 .paged .panel .table caption, .lt-ie9 .single-page .panel .table caption {
|
|
3218
|
-
margin-bottom: 0.5em;
|
|
3219
|
-
}
|
|
3220
|
-
/* line 12, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3221
|
-
.lt-ie9 .paged .panel .table .errors, .lt-ie9 .single-page .panel .table .errors {
|
|
3222
|
-
outline: 2px solid red !important;
|
|
3223
|
-
}
|
|
3224
|
-
/* line 16, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3225
|
-
.lt-ie9 .paged .panel .table .error, .lt-ie9 .single-page .panel .table .error {
|
|
3226
|
-
display: inline-block;
|
|
3227
|
-
background: #ffbbbb;
|
|
3228
|
-
outline: 1px solid #ff3333;
|
|
3229
|
-
}
|
|
3230
|
-
/* line 20, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3231
|
-
.lt-ie9 .paged .panel .table .error.hidden, .lt-ie9 .single-page .panel .table .error.hidden {
|
|
3232
|
-
display: none;
|
|
3233
|
-
}
|
|
3234
|
-
/* line 24, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3235
|
-
.lt-ie9 .paged .panel .table .noUi-target, .lt-ie9 .single-page .panel .table .noUi-target, .lt-ie9 .paged .panel .table .noUi-target div, .lt-ie9 .single-page .panel .table .noUi-target div {
|
|
3236
|
-
display: block;
|
|
3237
|
-
}
|
|
3238
|
-
/* line 27, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3239
|
-
.lt-ie9 .paged .panel .table table, .lt-ie9 .single-page .panel .table table {
|
|
3240
|
-
border-bottom: 1px solid black;
|
|
3241
|
-
border-collapse: collapse;
|
|
3242
|
-
margin: 0;
|
|
3243
|
-
}
|
|
3244
|
-
/* line 28, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3245
|
-
.lt-ie9 .paged .panel .table table *, .lt-ie9 .single-page .panel .table table * {
|
|
3246
|
-
width: auto;
|
|
3247
|
-
}
|
|
3248
|
-
/* line 32, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3249
|
-
.lt-ie9 .paged .panel .table table .option, .lt-ie9 .single-page .panel .table table .option {
|
|
3250
|
-
white-space: normal;
|
|
3251
|
-
}
|
|
3252
|
-
/* line 36, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3253
|
-
.lt-ie9 .paged .panel .table table td > div > *, .lt-ie9 .single-page .panel .table table td > div > * {
|
|
3254
|
-
margin-top: 0.5em;
|
|
3255
|
-
margin-bottom: 0.5em;
|
|
3256
|
-
}
|
|
3257
|
-
/* line 44, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3258
|
-
.lt-ie9 .paged .panel .table table .row, .lt-ie9 .single-page .panel .table table .row {
|
|
3259
|
-
width: 100%;
|
|
3260
|
-
float: right;
|
|
3261
|
-
margin-right: 0;
|
|
3262
|
-
*margin-left: -1em;
|
|
3263
|
-
display: inline;
|
|
3264
|
-
float: none;
|
|
3265
|
-
display: table-row;
|
|
3266
|
-
}
|
|
3267
|
-
/* line 45, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3268
|
-
.lt-ie9 .paged .panel .table table .row td, .lt-ie9 .single-page .panel .table table .row td, .lt-ie9 .paged .panel .table table .row th, .lt-ie9 .single-page .panel .table table .row th {
|
|
3269
|
-
display: table-cell;
|
|
3270
|
-
border: 0;
|
|
3271
|
-
border-bottom: 1px solid #bbb;
|
|
3272
|
-
vertical-align: top;
|
|
3273
|
-
float: none;
|
|
3274
|
-
}
|
|
3275
|
-
/* line 50, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3276
|
-
.lt-ie9 .paged .panel .table table .row td.main, .lt-ie9 .single-page .panel .table table .row td.main, .lt-ie9 .paged .panel .table table .row th.main, .lt-ie9 .single-page .panel .table table .row th.main {
|
|
3277
|
-
vertical-align: middle;
|
|
3278
|
-
}
|
|
3279
|
-
/* line 55, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3280
|
-
.lt-ie9 .paged .panel .table table .row.inner_row td, .lt-ie9 .single-page .panel .table table .row.inner_row td {
|
|
3281
|
-
border: 0;
|
|
3282
|
-
}
|
|
3283
|
-
/* line 56, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3284
|
-
.lt-ie9 .paged .panel .table table .row:first-child td, .lt-ie9 .single-page .panel .table table .row:first-child td {
|
|
3285
|
-
border-top: 1px solid #bbb;
|
|
3286
|
-
}
|
|
3287
|
-
/* line 62, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3288
|
-
.lt-ie9 .paged .panel .table table .row input, .lt-ie9 .single-page .panel .table table .row input {
|
|
3289
|
-
/* These properties get overriden by our table reset, so we have to re-apply them with a more specific selector */
|
|
3290
|
-
}
|
|
3291
|
-
/* line 63, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3292
|
-
.lt-ie9 .paged .panel .table table .row input.float, .lt-ie9 .single-page .panel .table table .row input.float, .lt-ie9 .paged .panel .table table .row input.integer, .lt-ie9 .single-page .panel .table table .row input.integer {
|
|
3293
|
-
width: 54px;
|
|
3294
|
-
}
|
|
3295
|
-
/* line 67, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3296
|
-
.lt-ie9 .paged .panel .table table .row input.string, .lt-ie9 .single-page .panel .table table .row input.string, .lt-ie9 .paged .panel .table table .row input.textarea, .lt-ie9 .single-page .panel .table table .row input.textarea {
|
|
3297
|
-
width: 92%;
|
|
3298
|
-
}
|
|
3299
|
-
/* line 70, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3300
|
-
.lt-ie9 .paged .panel .table table .row input.slider, .lt-ie9 .single-page .panel .table table .row input.slider {
|
|
3301
|
-
width: 80%;
|
|
3302
|
-
}
|
|
3303
|
-
/* line 73, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3304
|
-
.lt-ie9 .paged .panel .table table .row input.sized, .lt-ie9 .single-page .panel .table table .row input.sized {
|
|
3305
|
-
width: auto;
|
|
3306
|
-
}
|
|
3307
|
-
/* line 76, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3308
|
-
.lt-ie9 .paged .panel .table table .row input.fd-form-element-hidden, .lt-ie9 .single-page .panel .table table .row input.fd-form-element-hidden {
|
|
3309
|
-
display: none;
|
|
3310
|
-
}
|
|
3311
|
-
/* line 79, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3312
|
-
.lt-ie9 .paged .panel .table table .row .fd-slider, .lt-ie9 .single-page .panel .table table .row .fd-slider {
|
|
3313
|
-
/* These properties get overriden by our table reset, so we have to re-apply them with a more specific selector */
|
|
3314
|
-
width: 100%;
|
|
3315
|
-
}
|
|
3316
|
-
/* line 82, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3317
|
-
.lt-ie9 .paged .panel .table table .row .fd-slider .fd-slider-wrapper, .lt-ie9 .single-page .panel .table table .row .fd-slider .fd-slider-wrapper {
|
|
3318
|
-
width: 100%;
|
|
3319
|
-
}
|
|
3320
|
-
/* line 83, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3321
|
-
.lt-ie9 .paged .panel .table table .row .fd-slider .fd-slider-handle, .lt-ie9 .single-page .panel .table table .row .fd-slider .fd-slider-handle {
|
|
3322
|
-
width: 20px;
|
|
3323
|
-
}
|
|
3324
|
-
/* line 86, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3325
|
-
.lt-ie9 .paged .panel .table table .row .unit, .lt-ie9 .single-page .panel .table table .row .unit {
|
|
3326
|
-
vertical-align: -20%;
|
|
3327
|
-
padding-left: 4px;
|
|
3328
|
-
}
|
|
3329
|
-
/* line 93, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3330
|
-
.lt-ie9 .paged .panel .table .item, .lt-ie9 .single-page .panel .table .item {
|
|
3331
|
-
float: none;
|
|
3332
|
-
width: auto;
|
|
3333
|
-
margin-right: auto;
|
|
3334
|
-
*margin-left: auto;
|
|
3335
|
-
display: block;
|
|
3336
|
-
}
|
|
3337
|
-
/* line 96, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3338
|
-
.lt-ie9 .paged .panel .table .main, .lt-ie9 .single-page .panel .table .main {
|
|
3339
|
-
width: 33.33333%;
|
|
3340
|
-
float: none !important;
|
|
3341
|
-
display: table-cell !important;
|
|
3342
|
-
}
|
|
3343
|
-
/* line 100, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3344
|
-
.lt-ie9 .paged .panel .table .main label small, .lt-ie9 .single-page .panel .table .main label small {
|
|
3345
|
-
font-size: 0.7em;
|
|
3346
|
-
}
|
|
3347
|
-
/* line 102, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3348
|
-
.lt-ie9 .paged .panel .table .description, .lt-ie9 .single-page .panel .table .description {
|
|
3349
|
-
text-align: right;
|
|
3350
|
-
}
|
|
3351
|
-
/* line 107, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3352
|
-
.lt-ie9 .paged .panel .table .option_sets .option, .lt-ie9 .single-page .panel .table .option_sets .option {
|
|
3353
|
-
padding-left: 1em;
|
|
3354
|
-
padding-bottom: 0.5em;
|
|
3355
|
-
vertical-align: bottom;
|
|
3356
|
-
}
|
|
3357
|
-
/* line 113, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3358
|
-
.lt-ie9 .paged .panel .table .dark, .lt-ie9 .single-page .panel .table .dark {
|
|
3359
|
-
background-color: #eee;
|
|
3360
|
-
}
|
|
3361
|
-
/* line 116, /home/marten/rgoc/quby/app/assets/stylesheets/quby/table/layout.scss */
|
|
3362
|
-
.lt-ie9 .paged .panel .table .light, .lt-ie9 .single-page .panel .table .light {
|
|
3363
|
-
background-color: #fff;
|
|
3364
|
-
}
|
|
3365
|
-
/* line 25, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3366
|
-
.lt-ie9 .paged .item, .lt-ie9 .single-page .item {
|
|
3367
|
-
width: 100%;
|
|
3368
|
-
float: right;
|
|
3369
|
-
margin-right: 0;
|
|
3370
|
-
*margin-left: -1em;
|
|
3371
|
-
display: inline;
|
|
3372
|
-
margin-bottom: 18px;
|
|
3373
|
-
}
|
|
3374
|
-
/* line 34, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3375
|
-
.lt-ie9 .paged .item.horizontal.radio .option, .lt-ie9 .single-page .item.horizontal.radio .option, .lt-ie9 .paged .item.horizontal.check_box .option, .lt-ie9 .single-page .item.horizontal.check_box .option {
|
|
3376
|
-
width: 100%;
|
|
3377
|
-
float: right;
|
|
3378
|
-
margin-right: 0;
|
|
3379
|
-
*margin-left: -1em;
|
|
3380
|
-
display: inline;
|
|
3381
|
-
}
|
|
3382
|
-
/* line 37, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3383
|
-
.lt-ie9 .paged .item.horizontal.radio .option .radiocheckwrapper, .lt-ie9 .single-page .item.horizontal.radio .option .radiocheckwrapper, .lt-ie9 .paged .item.horizontal.check_box .option .radiocheckwrapper, .lt-ie9 .single-page .item.horizontal.check_box .option .radiocheckwrapper {
|
|
3384
|
-
width: 4.0404%;
|
|
3385
|
-
float: left;
|
|
3386
|
-
margin-right: 1.0101%;
|
|
3387
|
-
display: inline;
|
|
3388
|
-
}
|
|
3389
|
-
/* line 38, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3390
|
-
.lt-ie9 .paged .item.horizontal.radio .option .labelwrapper, .lt-ie9 .single-page .item.horizontal.radio .option .labelwrapper, .lt-ie9 .paged .item.horizontal.check_box .option .labelwrapper, .lt-ie9 .single-page .item.horizontal.check_box .option .labelwrapper {
|
|
3391
|
-
width: 94.94949%;
|
|
3392
|
-
float: right;
|
|
3393
|
-
margin-right: 0;
|
|
3394
|
-
*margin-left: -1em;
|
|
3395
|
-
display: inline;
|
|
3396
|
-
}
|
|
3397
|
-
/* line 43, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3398
|
-
.lt-ie9 .paged .item.horizontal.radio .option.show_values .value, .lt-ie9 .single-page .item.horizontal.radio .option.show_values .value, .lt-ie9 .paged .item.horizontal.check_box .option.show_values .value, .lt-ie9 .single-page .item.horizontal.check_box .option.show_values .value {
|
|
3399
|
-
width: 4.0404%;
|
|
3400
|
-
float: left;
|
|
3401
|
-
margin-right: 1.0101%;
|
|
3402
|
-
display: inline;
|
|
3403
|
-
}
|
|
3404
|
-
/* line 44, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3405
|
-
.lt-ie9 .paged .item.horizontal.radio .option.show_values .labelwrapper, .lt-ie9 .single-page .item.horizontal.radio .option.show_values .labelwrapper, .lt-ie9 .paged .item.horizontal.check_box .option.show_values .labelwrapper, .lt-ie9 .single-page .item.horizontal.check_box .option.show_values .labelwrapper {
|
|
3406
|
-
width: 89.89899%;
|
|
3407
|
-
float: right;
|
|
3408
|
-
margin-right: 0;
|
|
3409
|
-
*margin-left: -1em;
|
|
3410
|
-
display: inline;
|
|
3411
|
-
}
|
|
3412
|
-
/* line 49, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3413
|
-
.lt-ie9 .paged .item.horizontal.radio .option .subquestions, .lt-ie9 .single-page .item.horizontal.radio .option .subquestions, .lt-ie9 .paged .item.horizontal.check_box .option .subquestions, .lt-ie9 .single-page .item.horizontal.check_box .option .subquestions {
|
|
3414
|
-
margin-left: 5.05051%;
|
|
3415
|
-
width: 74.74747%;
|
|
3416
|
-
float: left;
|
|
3417
|
-
margin-right: 1.0101%;
|
|
3418
|
-
display: inline;
|
|
3419
|
-
}
|
|
3420
|
-
/* line 53, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3421
|
-
.lt-ie9 .paged .item.horizontal.radio .option .subquestions .item, .lt-ie9 .single-page .item.horizontal.radio .option .subquestions .item, .lt-ie9 .paged .item.horizontal.check_box .option .subquestions .item, .lt-ie9 .single-page .item.horizontal.check_box .option .subquestions .item {
|
|
3422
|
-
width: 74.74747%;
|
|
3423
|
-
float: left;
|
|
3424
|
-
margin-right: 1.0101%;
|
|
3425
|
-
display: inline;
|
|
3426
|
-
}
|
|
3427
|
-
/* line 55, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3428
|
-
.lt-ie9 .paged .item.horizontal.radio .option .subquestions .item input, .lt-ie9 .single-page .item.horizontal.radio .option .subquestions .item input, .lt-ie9 .paged .item.horizontal.check_box .option .subquestions .item input, .lt-ie9 .single-page .item.horizontal.check_box .option .subquestions .item input {
|
|
3429
|
-
width: auto;
|
|
3430
|
-
}
|
|
3431
|
-
/* line 58, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3432
|
-
.lt-ie9 .paged .item.horizontal.radio .option .subquestions .radiocheckwrapper, .lt-ie9 .single-page .item.horizontal.radio .option .subquestions .radiocheckwrapper, .lt-ie9 .paged .item.horizontal.check_box .option .subquestions .radiocheckwrapper, .lt-ie9 .single-page .item.horizontal.check_box .option .subquestions .radiocheckwrapper {
|
|
3433
|
-
width: 10px;
|
|
3434
|
-
padding-right: 20px;
|
|
3435
|
-
}
|
|
3436
|
-
/* line 62, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3437
|
-
.lt-ie9 .paged .item.horizontal.radio .option .subquestions .labelwrapper, .lt-ie9 .single-page .item.horizontal.radio .option .subquestions .labelwrapper, .lt-ie9 .paged .item.horizontal.check_box .option .subquestions .labelwrapper, .lt-ie9 .single-page .item.horizontal.check_box .option .subquestions .labelwrapper {
|
|
3438
|
-
width: auto;
|
|
3439
|
-
float: none;
|
|
3440
|
-
}
|
|
3441
|
-
/* line 69, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3442
|
-
.lt-ie9 .paged .item.horizontal.radio .inner-title, .lt-ie9 .single-page .item.horizontal.radio .inner-title, .lt-ie9 .paged .item.horizontal.check_box .inner-title, .lt-ie9 .single-page .item.horizontal.check_box .inner-title {
|
|
3443
|
-
width: 100%;
|
|
3444
|
-
float: right;
|
|
3445
|
-
margin-right: 0;
|
|
3446
|
-
*margin-left: -1em;
|
|
3447
|
-
display: inline;
|
|
3448
|
-
}
|
|
3449
|
-
/* line 74, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3450
|
-
.lt-ie9 .paged .item.horizontal.string input, .lt-ie9 .single-page .item.horizontal.string input, .lt-ie9 .paged .item.horizontal.string textarea, .lt-ie9 .single-page .item.horizontal.string textarea, .lt-ie9 .paged .item.horizontal.textarea input, .lt-ie9 .single-page .item.horizontal.textarea input, .lt-ie9 .paged .item.horizontal.textarea textarea, .lt-ie9 .single-page .item.horizontal.textarea textarea {
|
|
3451
|
-
width: 100%;
|
|
3452
|
-
float: right;
|
|
3453
|
-
margin-right: 0;
|
|
3454
|
-
*margin-left: -1em;
|
|
3455
|
-
display: inline;
|
|
3456
|
-
}
|
|
3457
|
-
/* line 75, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3458
|
-
.lt-ie9 .paged .item.horizontal.string .sized, .lt-ie9 .single-page .item.horizontal.string .sized, .lt-ie9 .paged .item.horizontal.textarea .sized, .lt-ie9 .single-page .item.horizontal.textarea .sized {
|
|
3459
|
-
width: auto;
|
|
3460
|
-
}
|
|
3461
|
-
/* line 80, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3462
|
-
.lt-ie9 .paged .item.horizontal.integer.slider .slider, .lt-ie9 .single-page .item.horizontal.integer.slider .slider, .lt-ie9 .paged .item.horizontal.float.slider .slider, .lt-ie9 .single-page .item.horizontal.float.slider .slider {
|
|
3463
|
-
width: 100%;
|
|
3464
|
-
float: right;
|
|
3465
|
-
margin-right: 0;
|
|
3466
|
-
*margin-left: -1em;
|
|
3467
|
-
display: inline;
|
|
3468
|
-
}
|
|
3469
|
-
/* line 81, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3470
|
-
.lt-ie9 .paged .item.horizontal.integer.slider .fd-form-element-hidden, .lt-ie9 .single-page .item.horizontal.integer.slider .fd-form-element-hidden, .lt-ie9 .paged .item.horizontal.float.slider .fd-form-element-hidden, .lt-ie9 .single-page .item.horizontal.float.slider .fd-form-element-hidden {
|
|
3471
|
-
display: none;
|
|
3472
|
-
}
|
|
3473
|
-
/* line 83, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3474
|
-
.lt-ie9 .paged .item.horizontal.integer.slider .labels, .lt-ie9 .single-page .item.horizontal.integer.slider .labels, .lt-ie9 .paged .item.horizontal.float.slider .labels, .lt-ie9 .single-page .item.horizontal.float.slider .labels {
|
|
3475
|
-
position: relative;
|
|
3476
|
-
height: 2em;
|
|
3477
|
-
padding-top: 4px;
|
|
3478
|
-
}
|
|
3479
|
-
/* line 87, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3480
|
-
.lt-ie9 .paged .item.horizontal.integer.slider .labels div, .lt-ie9 .single-page .item.horizontal.integer.slider .labels div, .lt-ie9 .paged .item.horizontal.float.slider .labels div, .lt-ie9 .single-page .item.horizontal.float.slider .labels div {
|
|
3481
|
-
text-align: center;
|
|
3482
|
-
width: 400px;
|
|
3483
|
-
margin-left: -200px;
|
|
3484
|
-
position: absolute;
|
|
3485
|
-
}
|
|
3486
|
-
/* line 93, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3487
|
-
.lt-ie9 .paged .item.horizontal.integer.slider .labels .first, .lt-ie9 .single-page .item.horizontal.integer.slider .labels .first, .lt-ie9 .paged .item.horizontal.integer.slider .labels :first-child, .lt-ie9 .single-page .item.horizontal.integer.slider .labels :first-child, .lt-ie9 .paged .item.horizontal.float.slider .labels .first, .lt-ie9 .single-page .item.horizontal.float.slider .labels .first, .lt-ie9 .paged .item.horizontal.float.slider .labels :first-child, .lt-ie9 .single-page .item.horizontal.float.slider .labels :first-child {
|
|
3488
|
-
text-align: left;
|
|
3489
|
-
margin-left: 0;
|
|
3490
|
-
}
|
|
3491
|
-
/* line 97, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3492
|
-
.lt-ie9 .paged .item.horizontal.integer.slider .labels .last, .lt-ie9 .single-page .item.horizontal.integer.slider .labels .last, .lt-ie9 .paged .item.horizontal.float.slider .labels .last, .lt-ie9 .single-page .item.horizontal.float.slider .labels .last {
|
|
3493
|
-
text-align: right;
|
|
3494
|
-
right: 0;
|
|
3495
|
-
}
|
|
3496
|
-
/* line 106, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3497
|
-
.lt-ie9 .paged .item.vertical .main, .lt-ie9 .single-page .item.vertical .main {
|
|
3498
|
-
width: 39.39394%;
|
|
3499
|
-
float: left;
|
|
3500
|
-
margin-right: 1.0101%;
|
|
3501
|
-
display: inline;
|
|
3502
|
-
}
|
|
3503
|
-
/* line 110, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3504
|
-
.lt-ie9 .paged .item.vertical .description-and-fields, .lt-ie9 .single-page .item.vertical .description-and-fields {
|
|
3505
|
-
width: 59.59596%;
|
|
3506
|
-
float: right;
|
|
3507
|
-
margin-right: 0;
|
|
3508
|
-
*margin-left: -1em;
|
|
3509
|
-
display: inline;
|
|
3510
|
-
float: left;
|
|
3511
|
-
}
|
|
3512
|
-
/* line 4, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3513
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description h2, .lt-ie9 .single-page .item.vertical .description-and-fields .description h2 {
|
|
3514
|
-
font-size: 1.2em;
|
|
3515
|
-
font-weight: bold;
|
|
3516
|
-
border-top: 8px solid #ddd;
|
|
3517
|
-
padding-top: 16px;
|
|
3518
|
-
}
|
|
3519
|
-
/* line 11, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3520
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description small, .lt-ie9 .single-page .item.vertical .description-and-fields .description small {
|
|
3521
|
-
font-size: 80%;
|
|
3522
|
-
}
|
|
3523
|
-
/* line 12, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3524
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description strong, .lt-ie9 .single-page .item.vertical .description-and-fields .description strong {
|
|
3525
|
-
font-style: italic;
|
|
3526
|
-
}
|
|
3527
|
-
/* line 13, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3528
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description em, .lt-ie9 .single-page .item.vertical .description-and-fields .description em {
|
|
3529
|
-
font-weight: bold;
|
|
3530
|
-
}
|
|
3531
|
-
/* line 15, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3532
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description p, .lt-ie9 .single-page .item.vertical .description-and-fields .description p {
|
|
3533
|
-
margin-bottom: 18px;
|
|
3534
|
-
}
|
|
3535
|
-
/* line 17, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3536
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description ul, .lt-ie9 .single-page .item.vertical .description-and-fields .description ul {
|
|
3537
|
-
margin-top: 1em;
|
|
3538
|
-
margin-left: 1em;
|
|
3539
|
-
margin-bottom: 2em;
|
|
3540
|
-
}
|
|
3541
|
-
/* line 21, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3542
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description ul li, .lt-ie9 .single-page .item.vertical .description-and-fields .description ul li {
|
|
3543
|
-
list-style-type: disc;
|
|
3544
|
-
margin-bottom: 1em !important;
|
|
3545
|
-
}
|
|
3546
|
-
/* line 25, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3547
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description ul li p, .lt-ie9 .single-page .item.vertical .description-and-fields .description ul li p {
|
|
3548
|
-
margin-bottom: 0;
|
|
3549
|
-
}
|
|
3550
|
-
/* line 27, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3551
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description ul li ul, .lt-ie9 .single-page .item.vertical .description-and-fields .description ul li ul {
|
|
3552
|
-
margin-bottom: 1em;
|
|
3553
|
-
margin-left: 1.5em;
|
|
3554
|
-
}
|
|
3555
|
-
/* line 30, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3556
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description ul li ul li, .lt-ie9 .single-page .item.vertical .description-and-fields .description ul li ul li {
|
|
3557
|
-
margin-bottom: 0 !important;
|
|
3558
|
-
list-style-type: none;
|
|
3559
|
-
}
|
|
3560
|
-
/* line 38, /home/marten/rgoc/quby/app/assets/stylesheets/quby/partials/_text.scss */
|
|
3561
|
-
.lt-ie9 .paged .item.vertical .description-and-fields .description ol li, .lt-ie9 .single-page .item.vertical .description-and-fields .description ol li {
|
|
3562
|
-
list-style-type: lower-alpha;
|
|
3563
|
-
}
|
|
3564
|
-
/* line 118, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3565
|
-
.lt-ie9 .paged .item.vertical.radio .option, .lt-ie9 .single-page .item.vertical.radio .option, .lt-ie9 .paged .item.vertical.check_box .option, .lt-ie9 .single-page .item.vertical.check_box .option {
|
|
3566
|
-
width: 100%;
|
|
3567
|
-
float: right;
|
|
3568
|
-
margin-right: 0;
|
|
3569
|
-
*margin-left: -1em;
|
|
3570
|
-
display: inline;
|
|
3571
|
-
}
|
|
3572
|
-
/* line 121, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3573
|
-
.lt-ie9 .paged .item.vertical.radio .option .radiocheckwrapper, .lt-ie9 .single-page .item.vertical.radio .option .radiocheckwrapper, .lt-ie9 .paged .item.vertical.check_box .option .radiocheckwrapper, .lt-ie9 .single-page .item.vertical.check_box .option .radiocheckwrapper {
|
|
3574
|
-
width: 6.77966%;
|
|
3575
|
-
float: left;
|
|
3576
|
-
margin-right: 1.69492%;
|
|
3577
|
-
display: inline;
|
|
3578
|
-
}
|
|
3579
|
-
/* line 122, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3580
|
-
.lt-ie9 .paged .item.vertical.radio .option .labelwrapper, .lt-ie9 .single-page .item.vertical.radio .option .labelwrapper, .lt-ie9 .paged .item.vertical.check_box .option .labelwrapper, .lt-ie9 .single-page .item.vertical.check_box .option .labelwrapper {
|
|
3581
|
-
width: 91.52542%;
|
|
3582
|
-
float: right;
|
|
3583
|
-
margin-right: 0;
|
|
3584
|
-
*margin-left: -1em;
|
|
3585
|
-
display: inline;
|
|
3586
|
-
}
|
|
3587
|
-
/* line 125, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3588
|
-
.lt-ie9 .paged .item.vertical.radio .option.show_values .value, .lt-ie9 .single-page .item.vertical.radio .option.show_values .value, .lt-ie9 .paged .item.vertical.check_box .option.show_values .value, .lt-ie9 .single-page .item.vertical.check_box .option.show_values .value {
|
|
3589
|
-
width: 6.77966%;
|
|
3590
|
-
float: left;
|
|
3591
|
-
margin-right: 1.69492%;
|
|
3592
|
-
display: inline;
|
|
3593
|
-
}
|
|
3594
|
-
/* line 126, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3595
|
-
.lt-ie9 .paged .item.vertical.radio .option.show_values .labelwrapper, .lt-ie9 .single-page .item.vertical.radio .option.show_values .labelwrapper, .lt-ie9 .paged .item.vertical.check_box .option.show_values .labelwrapper, .lt-ie9 .single-page .item.vertical.check_box .option.show_values .labelwrapper {
|
|
3596
|
-
width: 83.05085%;
|
|
3597
|
-
float: right;
|
|
3598
|
-
margin-right: 0;
|
|
3599
|
-
*margin-left: -1em;
|
|
3600
|
-
display: inline;
|
|
3601
|
-
}
|
|
3602
|
-
/* line 129, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3603
|
-
.lt-ie9 .paged .item.vertical.radio .option .subquestions, .lt-ie9 .single-page .item.vertical.radio .option .subquestions, .lt-ie9 .paged .item.vertical.check_box .option .subquestions, .lt-ie9 .single-page .item.vertical.check_box .option .subquestions {
|
|
3604
|
-
margin-left: 5.05051%;
|
|
3605
|
-
width: 91.52542%;
|
|
3606
|
-
float: left;
|
|
3607
|
-
margin-right: 1.69492%;
|
|
3608
|
-
display: inline;
|
|
3609
|
-
}
|
|
3610
|
-
/* line 133, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3611
|
-
.lt-ie9 .paged .item.vertical.radio .option .subquestions .item, .lt-ie9 .single-page .item.vertical.radio .option .subquestions .item, .lt-ie9 .paged .item.vertical.check_box .option .subquestions .item, .lt-ie9 .single-page .item.vertical.check_box .option .subquestions .item {
|
|
3612
|
-
width: 91.52542%;
|
|
3613
|
-
float: left;
|
|
3614
|
-
margin-right: 1.69492%;
|
|
3615
|
-
display: inline;
|
|
3616
|
-
}
|
|
3617
|
-
/* line 135, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3618
|
-
.lt-ie9 .paged .item.vertical.radio .option .subquestions .item .main, .lt-ie9 .single-page .item.vertical.radio .option .subquestions .item .main, .lt-ie9 .paged .item.vertical.check_box .option .subquestions .item .main, .lt-ie9 .single-page .item.vertical.check_box .option .subquestions .item .main {
|
|
3619
|
-
width: 100%;
|
|
3620
|
-
float: right;
|
|
3621
|
-
margin-right: 0;
|
|
3622
|
-
*margin-left: -1em;
|
|
3623
|
-
display: inline;
|
|
3624
|
-
}
|
|
3625
|
-
/* line 136, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3626
|
-
.lt-ie9 .paged .item.vertical.radio .option .subquestions .item input, .lt-ie9 .single-page .item.vertical.radio .option .subquestions .item input, .lt-ie9 .paged .item.vertical.check_box .option .subquestions .item input, .lt-ie9 .single-page .item.vertical.check_box .option .subquestions .item input {
|
|
3627
|
-
width: auto;
|
|
3628
|
-
}
|
|
3629
|
-
/* line 139, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3630
|
-
.lt-ie9 .paged .item.vertical.radio .option .subquestions .radiocheckwrapper, .lt-ie9 .single-page .item.vertical.radio .option .subquestions .radiocheckwrapper, .lt-ie9 .paged .item.vertical.check_box .option .subquestions .radiocheckwrapper, .lt-ie9 .single-page .item.vertical.check_box .option .subquestions .radiocheckwrapper {
|
|
3631
|
-
width: 10px;
|
|
3632
|
-
padding-right: 20px;
|
|
3633
|
-
}
|
|
3634
|
-
/* line 143, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3635
|
-
.lt-ie9 .paged .item.vertical.radio .option .subquestions .labelwrapper, .lt-ie9 .single-page .item.vertical.radio .option .subquestions .labelwrapper, .lt-ie9 .paged .item.vertical.check_box .option .subquestions .labelwrapper, .lt-ie9 .single-page .item.vertical.check_box .option .subquestions .labelwrapper {
|
|
3636
|
-
width: auto;
|
|
3637
|
-
float: none;
|
|
3638
|
-
}
|
|
3639
|
-
/* line 150, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3640
|
-
.lt-ie9 .paged .item.vertical.radio .inner-title, .lt-ie9 .single-page .item.vertical.radio .inner-title, .lt-ie9 .paged .item.vertical.check_box .inner-title, .lt-ie9 .single-page .item.vertical.check_box .inner-title {
|
|
3641
|
-
width: 100%;
|
|
3642
|
-
float: right;
|
|
3643
|
-
margin-right: 0;
|
|
3644
|
-
*margin-left: -1em;
|
|
3645
|
-
display: inline;
|
|
3646
|
-
}
|
|
3647
|
-
/* line 155, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3648
|
-
.lt-ie9 .paged .item.vertical.string input, .lt-ie9 .single-page .item.vertical.string input, .lt-ie9 .paged .item.vertical.string textarea, .lt-ie9 .single-page .item.vertical.string textarea, .lt-ie9 .paged .item.vertical.textarea input, .lt-ie9 .single-page .item.vertical.textarea input, .lt-ie9 .paged .item.vertical.textarea textarea, .lt-ie9 .single-page .item.vertical.textarea textarea {
|
|
3649
|
-
width: 100%;
|
|
3650
|
-
float: right;
|
|
3651
|
-
margin-right: 0;
|
|
3652
|
-
*margin-left: -1em;
|
|
3653
|
-
display: inline;
|
|
3654
|
-
}
|
|
3655
|
-
/* line 156, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3656
|
-
.lt-ie9 .paged .item.vertical.string .sized, .lt-ie9 .single-page .item.vertical.string .sized, .lt-ie9 .paged .item.vertical.textarea .sized, .lt-ie9 .single-page .item.vertical.textarea .sized {
|
|
3657
|
-
width: auto;
|
|
3658
|
-
}
|
|
3659
|
-
/* line 161, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3660
|
-
.lt-ie9 .paged .item.vertical.integer.slider .slider, .lt-ie9 .single-page .item.vertical.integer.slider .slider, .lt-ie9 .paged .item.vertical.float.slider .slider, .lt-ie9 .single-page .item.vertical.float.slider .slider {
|
|
3661
|
-
width: 100%;
|
|
3662
|
-
float: right;
|
|
3663
|
-
margin-right: 0;
|
|
3664
|
-
*margin-left: -1em;
|
|
3665
|
-
display: inline;
|
|
3666
|
-
}
|
|
3667
|
-
/* line 163, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3668
|
-
.lt-ie9 .paged .item.vertical.integer.slider .slider-label-left, .lt-ie9 .single-page .item.vertical.integer.slider .slider-label-left, .lt-ie9 .paged .item.vertical.float.slider .slider-label-left, .lt-ie9 .single-page .item.vertical.float.slider .slider-label-left {
|
|
3669
|
-
width: 49.15254%;
|
|
3670
|
-
float: left;
|
|
3671
|
-
margin-right: 1.69492%;
|
|
3672
|
-
display: inline;
|
|
3673
|
-
text-align: left;
|
|
3674
|
-
}
|
|
3675
|
-
/* line 168, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3676
|
-
.lt-ie9 .paged .item.vertical.integer.slider .slider-label-right, .lt-ie9 .single-page .item.vertical.integer.slider .slider-label-right, .lt-ie9 .paged .item.vertical.float.slider .slider-label-right, .lt-ie9 .single-page .item.vertical.float.slider .slider-label-right {
|
|
3677
|
-
width: 49.15254%;
|
|
3678
|
-
float: right;
|
|
3679
|
-
margin-right: 0;
|
|
3680
|
-
*margin-left: -1em;
|
|
3681
|
-
display: inline;
|
|
3682
|
-
text-align: right;
|
|
3683
|
-
}
|
|
3684
|
-
/* line 175, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3685
|
-
.lt-ie9 .paged .progress-bar, .lt-ie9 .single-page .progress-bar {
|
|
3686
|
-
width: 100%;
|
|
3687
|
-
float: right;
|
|
3688
|
-
margin-right: 0;
|
|
3689
|
-
*margin-left: -1em;
|
|
3690
|
-
display: inline;
|
|
3691
|
-
margin: 1.5em -2em -1.5em;
|
|
3692
|
-
padding: 1.5em 2em;
|
|
3693
|
-
}
|
|
3694
|
-
/* line 181, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3695
|
-
.lt-ie9 .paged .progress-bar .progress-wrapper .progress-slider, .lt-ie9 .single-page .progress-bar .progress-wrapper .progress-slider {
|
|
3696
|
-
background-position: 0 4px;
|
|
3697
|
-
display: inline-block;
|
|
3698
|
-
zoom: 1;
|
|
3699
|
-
*display: inline;
|
|
3700
|
-
}
|
|
3701
|
-
/* line 184, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3702
|
-
.lt-ie9 .paged .progress-bar .progress-wrapper .progress-slider .progress-stop, .lt-ie9 .single-page .progress-bar .progress-wrapper .progress-slider .progress-stop {
|
|
3703
|
-
margin: 0 3px;
|
|
3704
|
-
width: 10px;
|
|
3705
|
-
height: 10px;
|
|
3706
|
-
}
|
|
3707
|
-
/* line 189, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3708
|
-
.lt-ie9 .paged .progress-bar .progress-wrapper .progress-slider.long-list, .lt-ie9 .single-page .progress-bar .progress-wrapper .progress-slider.long-list {
|
|
3709
|
-
display: inline-block;
|
|
3710
|
-
zoom: 1;
|
|
3711
|
-
*display: inline;
|
|
3712
|
-
}
|
|
3713
|
-
/* line 196, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3714
|
-
.lt-ie9 .paged .buttons, .lt-ie9 .single-page .buttons {
|
|
3715
|
-
width: 100%;
|
|
3716
|
-
float: right;
|
|
3717
|
-
margin-right: 0;
|
|
3718
|
-
*margin-left: -1em;
|
|
3719
|
-
display: inline;
|
|
3720
|
-
margin: 1.5em -2em -1.5em;
|
|
3721
|
-
padding: 1.5em 2em;
|
|
3722
|
-
border-bottom: 0;
|
|
3723
|
-
}
|
|
3724
|
-
/* line 202, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3725
|
-
.lt-ie9 .paged .buttons .back, .lt-ie9 .single-page .buttons .back {
|
|
3726
|
-
width: 24.24242%;
|
|
3727
|
-
float: left;
|
|
3728
|
-
margin-right: 1.0101%;
|
|
3729
|
-
display: inline;
|
|
3730
|
-
}
|
|
3731
|
-
/* line 203, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3732
|
-
.lt-ie9 .paged .buttons .prev, .lt-ie9 .single-page .buttons .prev {
|
|
3733
|
-
width: 24.24242%;
|
|
3734
|
-
float: left;
|
|
3735
|
-
margin-right: 1.0101%;
|
|
3736
|
-
display: inline;
|
|
3737
|
-
}
|
|
3738
|
-
/* line 204, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3739
|
-
.lt-ie9 .paged .buttons .abort, .lt-ie9 .single-page .buttons .abort {
|
|
3740
|
-
width: 24.24242%;
|
|
3741
|
-
float: left;
|
|
3742
|
-
margin-right: 1.0101%;
|
|
3743
|
-
display: inline;
|
|
3744
|
-
text-align: center;
|
|
3745
|
-
display: block;
|
|
3746
|
-
}
|
|
3747
|
-
/* line 205, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3748
|
-
.lt-ie9 .paged .buttons .print, .lt-ie9 .single-page .buttons .print {
|
|
3749
|
-
width: 100%;
|
|
3750
|
-
float: left;
|
|
3751
|
-
margin-right: 1.0101%;
|
|
3752
|
-
display: inline;
|
|
3753
|
-
text-align: right;
|
|
3754
|
-
}
|
|
3755
|
-
/* line 206, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3756
|
-
.lt-ie9 .paged .buttons .next, .lt-ie9 .single-page .buttons .next {
|
|
3757
|
-
width: 24.24242%;
|
|
3758
|
-
float: right;
|
|
3759
|
-
margin-right: 0;
|
|
3760
|
-
*margin-left: -1em;
|
|
3761
|
-
display: inline;
|
|
3762
|
-
text-align: right;
|
|
3763
|
-
}
|
|
3764
|
-
/* line 207, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged/desktop.scss */
|
|
3765
|
-
.lt-ie9 .paged .buttons .save, .lt-ie9 .single-page .buttons .save {
|
|
3766
|
-
width: 24.24242%;
|
|
3767
|
-
float: right;
|
|
3768
|
-
margin-right: 0;
|
|
3769
|
-
*margin-left: -1em;
|
|
3770
|
-
display: inline;
|
|
3771
|
-
text-align: right;
|
|
3772
|
-
}
|
|
3773
3123
|
/* line 41, /home/marten/rgoc/quby/app/assets/stylesheets/quby/paged.scss */
|
|
3774
3124
|
.paged .panel, .single-page .panel {
|
|
3775
3125
|
margin-bottom: 2em;
|