affectiva-surveyor 1.5.0.pre.disco.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +28 -0
- data/.rspec +1 -0
- data/CHANGELOG.md +198 -0
- data/Gemfile +5 -0
- data/Gemfile.rails_version +27 -0
- data/MIT-LICENSE +20 -0
- data/README.md +166 -0
- data/Rakefile +106 -0
- data/app/controllers/surveyor_controller.rb +5 -0
- data/app/helpers/results_helper.rb +20 -0
- data/app/helpers/survey_form_builder.rb +37 -0
- data/app/helpers/surveyor_helper.rb +3 -0
- data/app/inputs/quiet_input.rb +5 -0
- data/app/inputs/surveyor_check_boxes_input.rb +35 -0
- data/app/inputs/surveyor_radio_input.rb +18 -0
- data/app/models/answer.rb +3 -0
- data/app/models/dependency.rb +3 -0
- data/app/models/dependency_condition.rb +3 -0
- data/app/models/question.rb +3 -0
- data/app/models/question_group.rb +4 -0
- data/app/models/response.rb +4 -0
- data/app/models/response_set.rb +3 -0
- data/app/models/survey.rb +3 -0
- data/app/models/survey_section.rb +4 -0
- data/app/models/survey_section_sweeper.rb +15 -0
- data/app/models/survey_translation.rb +4 -0
- data/app/models/validation.rb +3 -0
- data/app/models/validation_condition.rb +3 -0
- data/app/views/layouts/results.html.erb +13 -0
- data/app/views/layouts/surveyor_default.html.erb +12 -0
- data/app/views/partials/_answer.html.haml +25 -0
- data/app/views/partials/_dependents.html.haml +5 -0
- data/app/views/partials/_question.html.haml +28 -0
- data/app/views/partials/_question_group.html.haml +44 -0
- data/app/views/partials/_section.html.haml +12 -0
- data/app/views/partials/_section_menu.html.haml +12 -0
- data/app/views/surveyor/edit.html.haml +24 -0
- data/app/views/surveyor/export.json.rabl +85 -0
- data/app/views/surveyor/new.html.haml +24 -0
- data/app/views/surveyor/show.html.haml +74 -0
- data/app/views/surveyor/show.json.rabl +15 -0
- data/ci-exec.sh +56 -0
- data/config/routes.rb +8 -0
- data/cucumber.yml +10 -0
- data/doc/REPRESENTATIONS.md +34 -0
- data/doc/api_id_schema.json +7 -0
- data/doc/question types.png +0 -0
- data/doc/response_set_schema.json +54 -0
- data/doc/surveyor question combinations.png +0 -0
- data/doc/surveyor reject or delete decision matrix.png +0 -0
- data/doc/surveyor_models.png +0 -0
- data/doc/surveyor_models2.png +0 -0
- data/doc/surveyor_timestamp_schema.json +9 -0
- data/features/ajax_submissions.feature +140 -0
- data/features/export_to_json.feature +344 -0
- data/features/internationalization.feature +121 -0
- data/features/no_duplicates.feature +110 -0
- data/features/show_survey.feature +71 -0
- data/features/step_definitions/parser_steps.rb +145 -0
- data/features/step_definitions/surveyor_steps.rb +325 -0
- data/features/step_definitions/ui_steps.rb +25 -0
- data/features/step_definitions/web_steps.rb +225 -0
- data/features/support/REDCapDemoDatabase_DataDictionary.csv +127 -0
- data/features/support/database_cleaner.rb +16 -0
- data/features/support/env.rb +56 -0
- data/features/support/hooks.rb +4 -0
- data/features/support/paths.rb +39 -0
- data/features/support/redcap_new_headers.csv +1 -0
- data/features/support/redcap_siblings.csv +1 -0
- data/features/support/redcap_whitespace.csv +1 -0
- data/features/support/selectors.rb +39 -0
- data/features/support/simultaneous_ajax.rb +101 -0
- data/features/support/single_quit_selenium_driver.rb +23 -0
- data/features/support/slow_updates.rb +18 -0
- data/features/surveyor.feature +895 -0
- data/features/surveyor_dependencies.feature +476 -0
- data/features/surveyor_parser.feature +504 -0
- data/features/z_redcap_parser.feature +62 -0
- data/lib/assets/images/surveyor/next.gif +0 -0
- data/lib/assets/images/surveyor/prev.gif +0 -0
- data/lib/assets/images/surveyor/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/assets/images/surveyor/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/lib/assets/images/surveyor/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/lib/assets/images/surveyor/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/lib/assets/images/surveyor/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/lib/assets/images/surveyor/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/lib/assets/images/surveyor/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/assets/images/surveyor/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/lib/assets/images/surveyor/ui-icons_222222_256x240.png +0 -0
- data/lib/assets/images/surveyor/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/assets/images/surveyor/ui-icons_454545_256x240.png +0 -0
- data/lib/assets/images/surveyor/ui-icons_888888_256x240.png +0 -0
- data/lib/assets/images/surveyor/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/assets/javascripts/surveyor/jquery-1.9.0.js +9555 -0
- data/lib/assets/javascripts/surveyor/jquery-ui-1.10.0.custom.js +14850 -0
- data/lib/assets/javascripts/surveyor/jquery-ui-timepicker-addon.js +1919 -0
- data/lib/assets/javascripts/surveyor/jquery.maskedinput.js +338 -0
- data/lib/assets/javascripts/surveyor/jquery.selectToUISlider.js +240 -0
- data/lib/assets/javascripts/surveyor/jquery.surveyor.js +154 -0
- data/lib/assets/stylesheets/surveyor.sass +132 -0
- data/lib/assets/stylesheets/surveyor/jquery-ui-1.10.0.custom.css +1174 -0
- data/lib/assets/stylesheets/surveyor/jquery-ui-timepicker-addon.css +11 -0
- data/lib/assets/stylesheets/surveyor/reset.css +48 -0
- data/lib/assets/stylesheets/surveyor/results.css +125 -0
- data/lib/assets/stylesheets/surveyor/ui.slider.extras.css +110 -0
- data/lib/generators/surveyor/custom_generator.rb +18 -0
- data/lib/generators/surveyor/install_generator.rb +101 -0
- data/lib/generators/surveyor/templates/app/assets/javascripts/surveyor_all.js +6 -0
- data/lib/generators/surveyor/templates/app/assets/stylesheets/surveyor_all.css +9 -0
- data/lib/generators/surveyor/templates/app/controllers/surveyor_controller.rb +40 -0
- data/lib/generators/surveyor/templates/app/views/layouts/surveyor_custom.html.erb +13 -0
- data/lib/generators/surveyor/templates/config/locales/surveyor_en.yml +19 -0
- data/lib/generators/surveyor/templates/config/locales/surveyor_es.yml +19 -0
- data/lib/generators/surveyor/templates/config/locales/surveyor_he.yml +19 -0
- data/lib/generators/surveyor/templates/config/locales/surveyor_ko.yml +19 -0
- data/lib/generators/surveyor/templates/db/migrate/add_api_id_to_question_groups.rb +10 -0
- data/lib/generators/surveyor/templates/db/migrate/add_api_ids.rb +14 -0
- data/lib/generators/surveyor/templates/db/migrate/add_api_ids_to_response_sets_and_responses.rb +12 -0
- data/lib/generators/surveyor/templates/db/migrate/add_correct_answer_id_to_questions.rb +10 -0
- data/lib/generators/surveyor/templates/db/migrate/add_default_value_to_answers.rb +10 -0
- data/lib/generators/surveyor/templates/db/migrate/add_display_order_to_surveys.rb +10 -0
- data/lib/generators/surveyor/templates/db/migrate/add_display_type_to_answers.rb +14 -0
- data/lib/generators/surveyor/templates/db/migrate/add_index_to_response_sets.rb +10 -0
- data/lib/generators/surveyor/templates/db/migrate/add_index_to_surveys.rb +10 -0
- data/lib/generators/surveyor/templates/db/migrate/add_input_mask_attributes_to_answer.rb +12 -0
- data/lib/generators/surveyor/templates/db/migrate/add_section_id_to_responses.rb +12 -0
- data/lib/generators/surveyor/templates/db/migrate/add_unique_index_on_access_code_and_version_in_surveys.rb +10 -0
- data/lib/generators/surveyor/templates/db/migrate/add_unique_indicies.rb +18 -0
- data/lib/generators/surveyor/templates/db/migrate/add_version_to_surveys.rb +10 -0
- data/lib/generators/surveyor/templates/db/migrate/api_ids_must_be_unique.rb +23 -0
- data/lib/generators/surveyor/templates/db/migrate/create_answers.rb +38 -0
- data/lib/generators/surveyor/templates/db/migrate/create_dependencies.rb +23 -0
- data/lib/generators/surveyor/templates/db/migrate/create_dependency_conditions.rb +30 -0
- data/lib/generators/surveyor/templates/db/migrate/create_question_groups.rb +28 -0
- data/lib/generators/surveyor/templates/db/migrate/create_questions.rb +37 -0
- data/lib/generators/surveyor/templates/db/migrate/create_response_sets.rb +23 -0
- data/lib/generators/surveyor/templates/db/migrate/create_responses.rb +34 -0
- data/lib/generators/surveyor/templates/db/migrate/create_survey_sections.rb +30 -0
- data/lib/generators/surveyor/templates/db/migrate/create_survey_translations.rb +19 -0
- data/lib/generators/surveyor/templates/db/migrate/create_surveys.rb +32 -0
- data/lib/generators/surveyor/templates/db/migrate/create_validation_conditions.rb +33 -0
- data/lib/generators/surveyor/templates/db/migrate/create_validations.rb +21 -0
- data/lib/generators/surveyor/templates/db/migrate/drop_unique_index_on_access_code_in_surveys.rb +10 -0
- data/lib/generators/surveyor/templates/db/migrate/update_blank_api_ids_on_question_group.rb +22 -0
- data/lib/generators/surveyor/templates/db/migrate/update_blank_versions_on_surveys.rb +13 -0
- data/lib/generators/surveyor/templates/surveys/EXTENDING_SURVEYOR.md +52 -0
- data/lib/generators/surveyor/templates/surveys/MODIFYING_SURVEYOR.md +91 -0
- data/lib/generators/surveyor/templates/surveys/date_survey.rb +16 -0
- data/lib/generators/surveyor/templates/surveys/kitchen_sink_survey.rb +280 -0
- data/lib/generators/surveyor/templates/surveys/languages.rb +14 -0
- data/lib/generators/surveyor/templates/surveys/quiz.rb +11 -0
- data/lib/generators/surveyor/templates/surveys/translations/languages.es.yml +18 -0
- data/lib/generators/surveyor/templates/surveys/translations/languages.he.yml +18 -0
- data/lib/generators/surveyor/templates/surveys/translations/languages.ko.yml +18 -0
- data/lib/generators/surveyor/templates/vendor/assets/stylesheets/custom.sass +5 -0
- data/lib/surveyor.rb +13 -0
- data/lib/surveyor/acts_as_response.rb +17 -0
- data/lib/surveyor/common.rb +59 -0
- data/lib/surveyor/engine.rb +10 -0
- data/lib/surveyor/helpers/asset_pipeline.rb +18 -0
- data/lib/surveyor/helpers/formtastic_custom_input.rb +13 -0
- data/lib/surveyor/helpers/surveyor_helper_methods.rb +103 -0
- data/lib/surveyor/models/answer_methods.rb +83 -0
- data/lib/surveyor/models/dependency_condition_methods.rb +69 -0
- data/lib/surveyor/models/dependency_methods.rb +57 -0
- data/lib/surveyor/models/question_group_methods.rb +58 -0
- data/lib/surveyor/models/question_methods.rb +112 -0
- data/lib/surveyor/models/response_methods.rb +126 -0
- data/lib/surveyor/models/response_set_methods.rb +188 -0
- data/lib/surveyor/models/survey_methods.rb +100 -0
- data/lib/surveyor/models/survey_section_methods.rb +53 -0
- data/lib/surveyor/models/survey_translation_methods.rb +30 -0
- data/lib/surveyor/models/validation_condition_methods.rb +54 -0
- data/lib/surveyor/models/validation_methods.rb +45 -0
- data/lib/surveyor/mustache_context.rb +11 -0
- data/lib/surveyor/parser.rb +427 -0
- data/lib/surveyor/redcap_parser.rb +288 -0
- data/lib/surveyor/surveyor_controller_methods.rb +236 -0
- data/lib/surveyor/unparser.rb +147 -0
- data/lib/surveyor/version.rb +3 -0
- data/lib/tasks/surveyor_tasks.rake +88 -0
- data/rails/init.rb +1 -0
- data/spec/controllers/surveyor_controller_spec.rb +311 -0
- data/spec/factories.rb +166 -0
- data/spec/helpers/formtastic_custom_input_spec.rb +15 -0
- data/spec/helpers/surveyor_helper_spec.rb +117 -0
- data/spec/lib/benchmark_spec.rb +22 -0
- data/spec/lib/chinese_survey.rb +14 -0
- data/spec/lib/common_spec.rb +34 -0
- data/spec/lib/parser_spec.rb +204 -0
- data/spec/lib/rake_kitchen_sink.rb +40 -0
- data/spec/lib/redcap_parser_spec.rb +75 -0
- data/spec/lib/tasks_spec.rake +26 -0
- data/spec/lib/unparser_spec.rb +126 -0
- data/spec/models/answer_spec.rb +174 -0
- data/spec/models/dependency_condition_spec.rb +439 -0
- data/spec/models/dependency_spec.rb +101 -0
- data/spec/models/question_group_spec.rb +93 -0
- data/spec/models/question_spec.rb +206 -0
- data/spec/models/response_set_spec.rb +477 -0
- data/spec/models/response_spec.rb +218 -0
- data/spec/models/survey_section_spec.rb +85 -0
- data/spec/models/survey_spec.rb +191 -0
- data/spec/models/validation_condition_spec.rb +113 -0
- data/spec/models/validation_spec.rb +74 -0
- data/spec/rcov.opts +2 -0
- data/spec/spec.opts +4 -0
- data/spec/spec_helper.rb +56 -0
- data/stacktests.sh +65 -0
- data/surveyor.gemspec +53 -0
- metadata +601 -0
@@ -0,0 +1,154 @@
|
|
1
|
+
// Javascript UI for surveyor
|
2
|
+
jQuery(document).ready(function(){
|
3
|
+
// if(jQuery.browser.msie){
|
4
|
+
// // IE has trouble with the change event for form radio/checkbox elements - bind click instead
|
5
|
+
// jQuery("form#survey_form input[type=radio], form#survey_form [type=checkbox]").bind("click", function(){
|
6
|
+
// jQuery(this).parents("form").ajaxSubmit({dataType: 'json', success: successfulSave});
|
7
|
+
// });
|
8
|
+
// // IE fires the change event for all other (not radio/checkbox) elements of the form
|
9
|
+
// jQuery("form#survey_form *").not("input[type=radio], input[type=checkbox]").bind("change", function(){
|
10
|
+
// jQuery(this).parents("form").ajaxSubmit({dataType: 'json', success: successfulSave});
|
11
|
+
// });
|
12
|
+
// }else{
|
13
|
+
// // Other browsers just use the change event on the form
|
14
|
+
|
15
|
+
//
|
16
|
+
// Uncomment the following to use the jQuery Tools Datepicker (http://jquerytools.org/demos/dateinput/index.html)
|
17
|
+
// instead of the default jQuery UI Datepicker (http://jqueryui.com/demos/datepicker/)
|
18
|
+
//
|
19
|
+
// For a date input, i.e. using dateinput from jQuery tools, the value is not updated
|
20
|
+
// before the onChange or change event is fired, so we hang this in before the update is
|
21
|
+
// sent to the server and set the correct value from the dateinput object.
|
22
|
+
// jQuery('li.date input').change(function(){
|
23
|
+
// if ( $(this).data('dateinput') ) {
|
24
|
+
// var date_obj = $(this).data('dateinput').getValue();
|
25
|
+
// this.value = date_obj.getFullYear() + "-" + (date_obj.getMonth()+1) + "-" +
|
26
|
+
// date_obj.getDate() + " 00:00:00 UTC";
|
27
|
+
// }
|
28
|
+
// });
|
29
|
+
//
|
30
|
+
// $('li input.date').dateinput({
|
31
|
+
// format: 'dd mmm yyyy'
|
32
|
+
// });
|
33
|
+
|
34
|
+
// Default Datepicker uses jQuery UI Datepicker
|
35
|
+
jQuery("input[type='text'].datetime").datetimepicker({
|
36
|
+
showSecond: true,
|
37
|
+
showMillisec: false,
|
38
|
+
timeFormat: 'HH:mm:ss',
|
39
|
+
dateFormat: 'yy-mm-dd',
|
40
|
+
changeMonth: true,
|
41
|
+
changeYear: true
|
42
|
+
});
|
43
|
+
jQuery("li.date input").datepicker({
|
44
|
+
dateFormat: 'yy-mm-dd',
|
45
|
+
changeMonth: true,
|
46
|
+
changeYear: true
|
47
|
+
});
|
48
|
+
jQuery("input[type='text'].date").datepicker({
|
49
|
+
dateFormat: 'yy-mm-dd',
|
50
|
+
changeMonth: true,
|
51
|
+
changeYear: true
|
52
|
+
});
|
53
|
+
jQuery("input[type='text'].datepicker").datepicker({
|
54
|
+
dateFormat: 'yy-mm-dd',
|
55
|
+
changeMonth: true,
|
56
|
+
changeYear: true
|
57
|
+
});
|
58
|
+
jQuery("input[type='text'].time").timepicker({});
|
59
|
+
|
60
|
+
jQuery('.surveyor_check_boxes input[type=text]').change(function(){
|
61
|
+
var textValue = $(this).val()
|
62
|
+
if (textValue.length > 0) {
|
63
|
+
$(this).parent().children().has('input[type="checkbox"]')[0].children[0].checked = true;
|
64
|
+
}
|
65
|
+
});
|
66
|
+
|
67
|
+
jQuery('.surveyor_radio input[type=text]').change(function(){
|
68
|
+
var textValue = $(this).val()
|
69
|
+
if (textValue.length > 0) {
|
70
|
+
$(this).parent().children().has('input[type="radio"]')[0].children[0].checked = true;
|
71
|
+
}
|
72
|
+
});
|
73
|
+
|
74
|
+
jQuery("form#survey_form input, form#survey_form select, form#survey_form textarea").change(function(){
|
75
|
+
var elements = [$('[type="submit"]').parent(), $('[name="' + this.name +'"]').closest('li')];
|
76
|
+
|
77
|
+
question_data = $(this).parents('fieldset[id^="q_"],tr[id^="q_"]').
|
78
|
+
find("input, select, textarea").
|
79
|
+
add($("form#survey_form input[name='authenticity_token']")).
|
80
|
+
serialize();
|
81
|
+
$.ajax({
|
82
|
+
type: "PUT",
|
83
|
+
url: $(this).parents('form#survey_form').attr("action"),
|
84
|
+
data: question_data, dataType: 'json',
|
85
|
+
success: function(response) {
|
86
|
+
successfulSave(response);
|
87
|
+
}
|
88
|
+
});
|
89
|
+
});
|
90
|
+
|
91
|
+
// http://www.filamentgroup.com/lab/update_jquery_ui_slider_from_a_select_element_now_with_aria_support/
|
92
|
+
$('fieldset.q_slider select').each(function(i,e) {
|
93
|
+
$(e).selectToUISlider({"labelSrc": "text"}).hide()
|
94
|
+
});
|
95
|
+
|
96
|
+
// If javascript works, we don't need to show dependents from
|
97
|
+
// previous sections at the top of the page.
|
98
|
+
jQuery("#dependents").remove();
|
99
|
+
|
100
|
+
function successfulSave(responseText) {
|
101
|
+
// surveyor_controller returns a json object to show/hide elements
|
102
|
+
// e.g. {"hide":["question_12","question_13"],"show":["question_14"]}
|
103
|
+
jQuery.each(responseText.show, function(){ showElement(this) });
|
104
|
+
jQuery.each(responseText.hide, function(){ hideElement(this) });
|
105
|
+
return false;
|
106
|
+
}
|
107
|
+
|
108
|
+
function showElement(id){
|
109
|
+
group = id.match('^g_') ? true : false;
|
110
|
+
if (group) {
|
111
|
+
jQuery('#' + id).removeClass("g_hidden");
|
112
|
+
} else {
|
113
|
+
jQuery('#' + id).removeClass("q_hidden");
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
function hideElement(id){
|
118
|
+
group = id.match('^g_') ? true : false;
|
119
|
+
if (group) {
|
120
|
+
jQuery('#' + id).addClass("g_hidden");
|
121
|
+
} else {
|
122
|
+
jQuery('#' + id).addClass("q_hidden");
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
// is_exclusive checkboxes should disble sibling checkboxes
|
127
|
+
$('input.exclusive:checked').parents('fieldset[id^="q_"]').
|
128
|
+
find(':checkbox').
|
129
|
+
not(".exclusive").
|
130
|
+
attr('checked', false).
|
131
|
+
attr('disabled', true);
|
132
|
+
|
133
|
+
$('input.exclusive:checkbox').click(function(){
|
134
|
+
var e = $(this);
|
135
|
+
var others = e.parents('fieldset[id^="q_"]').find(':checkbox').not(e);
|
136
|
+
if(e.is(':checked')){
|
137
|
+
others.attr('checked', false).attr('disabled', 'disabled');
|
138
|
+
}else{
|
139
|
+
others.attr('disabled', false);
|
140
|
+
}
|
141
|
+
});
|
142
|
+
|
143
|
+
jQuery("input[data-input-mask]").each(function(i,e){
|
144
|
+
var inputMask = $(e).attr('data-input-mask');
|
145
|
+
var placeholder = $(e).attr('data-input-mask-placeholder');
|
146
|
+
var options = { placeholder: placeholder };
|
147
|
+
$(e).mask(inputMask, options);
|
148
|
+
});
|
149
|
+
|
150
|
+
// translations selection
|
151
|
+
$(".surveyor_language_selection").show();
|
152
|
+
$(".surveyor_language_selection select#locale").change(function(){ this.form.submit(); });
|
153
|
+
|
154
|
+
});
|
@@ -0,0 +1,132 @@
|
|
1
|
+
/* Do not change surveyor.sass or the generated
|
2
|
+
* surveyor.css. They will be overwritten by
|
3
|
+
* the surveyor generator. Instead, add
|
4
|
+
* custom styles to custom.sass, which will be
|
5
|
+
* loaded after the surveyor stylesheets */
|
6
|
+
|
7
|
+
$background_color:#EEEEEE
|
8
|
+
$surveyor_flash_background_color:#FFF1A8
|
9
|
+
$surveyor_color:#FFFFF1
|
10
|
+
$surveyor_text_color:#333333
|
11
|
+
$surveyor_dependent_color:#FFFFDF
|
12
|
+
$surveyor_menus_active_color:#EBEBCC
|
13
|
+
$surveyor_menus_border_color:#ccc
|
14
|
+
|
15
|
+
body
|
16
|
+
:background-color $background_color
|
17
|
+
#surveyor
|
18
|
+
:font-family "Century Gothic"
|
19
|
+
:width 960px
|
20
|
+
:padding 20px
|
21
|
+
:margin 0 auto
|
22
|
+
:text-align left
|
23
|
+
:font-family Helvetica
|
24
|
+
:font-size 100%
|
25
|
+
:background-color $surveyor_color
|
26
|
+
:color $surveyor_text_color
|
27
|
+
.surveyor_flash
|
28
|
+
:background-color $surveyor_flash_background_color
|
29
|
+
:margin 0 auto
|
30
|
+
:padding 5px
|
31
|
+
:width 300px
|
32
|
+
:font-weight bold
|
33
|
+
:text-align center
|
34
|
+
.survey_title
|
35
|
+
:font-size 2em
|
36
|
+
:font-weight bold
|
37
|
+
:padding 5px 0
|
38
|
+
.surveyor_menu
|
39
|
+
:float right
|
40
|
+
ul
|
41
|
+
:background-color $background_color
|
42
|
+
:border 1px solid $surveyor_menus_border_color
|
43
|
+
:border-bottom-width 0
|
44
|
+
:list-style none
|
45
|
+
li
|
46
|
+
:border 0 solid $surveyor_menus_border_color
|
47
|
+
:border-bottom-width 1px
|
48
|
+
li.active, li.active input[type="submit"]
|
49
|
+
:background-color $surveyor_menus_active_color
|
50
|
+
.surveyor_language_selection
|
51
|
+
:display none
|
52
|
+
//.previous_section
|
53
|
+
.next_section
|
54
|
+
:float right
|
55
|
+
.survey_section
|
56
|
+
span.title
|
57
|
+
:display block
|
58
|
+
:padding 5px 0
|
59
|
+
:font-weight bold
|
60
|
+
:font-size 1.5em
|
61
|
+
|
62
|
+
// question groups
|
63
|
+
fieldset.g_inline fieldset, fieldset.g_inline ol li
|
64
|
+
:display inline
|
65
|
+
fieldset.g_grid
|
66
|
+
table
|
67
|
+
:border-collapse collapse
|
68
|
+
li.surveyor_radio label, li.surveyor_check_boxes label
|
69
|
+
:visibility hidden
|
70
|
+
input
|
71
|
+
:visibility visible
|
72
|
+
fieldset.g_repeater
|
73
|
+
ol fieldset
|
74
|
+
:display inline
|
75
|
+
input[type="submit"].add_row
|
76
|
+
:font-size 0.7em
|
77
|
+
|
78
|
+
// question groups and questions
|
79
|
+
.survey_section>fieldset>ol
|
80
|
+
:padding-left 1em
|
81
|
+
fieldset
|
82
|
+
:padding-top 5px
|
83
|
+
:margin-bottom 10px
|
84
|
+
ol
|
85
|
+
fieldset
|
86
|
+
:vertical-align top
|
87
|
+
li
|
88
|
+
label, input
|
89
|
+
:vertical-align top
|
90
|
+
:padding 1px 0
|
91
|
+
p.inline-hints
|
92
|
+
:margin 0
|
93
|
+
:padding 0
|
94
|
+
:display inline
|
95
|
+
li.inline
|
96
|
+
:display inline
|
97
|
+
li.datetime, li.time
|
98
|
+
input, fieldset, fieldset ol li
|
99
|
+
:display inline
|
100
|
+
&.q_inline ol li, &.q_inline_inline ol li
|
101
|
+
:display inline
|
102
|
+
input, textarea, select
|
103
|
+
:margin 0 3px
|
104
|
+
input[type="text"], textarea
|
105
|
+
:font-size 0.8em
|
106
|
+
|
107
|
+
fieldset.q_hidden, fieldset.g_hidden, fieldset.g_grid tr.q_hidden
|
108
|
+
:display none !important
|
109
|
+
fieldset.q_dependent, fieldset.g_dependent
|
110
|
+
:background-color $surveyor_dependent_color
|
111
|
+
legend
|
112
|
+
:background-color $surveyor_dependent_color
|
113
|
+
:padding 3px 3px 3px 0
|
114
|
+
fieldset.q_dropdown, fieldset.q_inline_dropdown, fieldset.q_default_dropdown, fieldset.q_slider, fieldset.q_repeater_dropdown
|
115
|
+
label
|
116
|
+
:display none
|
117
|
+
fieldset.q_slider
|
118
|
+
:margin-bottom 3em
|
119
|
+
li.select
|
120
|
+
:width 50%
|
121
|
+
:font-size .8em
|
122
|
+
.ui-slider span.ui-slider-label-show
|
123
|
+
:position relative
|
124
|
+
:display inline
|
125
|
+
|
126
|
+
// buttons
|
127
|
+
input[type="submit"]
|
128
|
+
:font-size 1em
|
129
|
+
:border 1px
|
130
|
+
:padding 5px
|
131
|
+
:cursor pointer
|
132
|
+
:background-color $background_color
|
@@ -0,0 +1,1174 @@
|
|
1
|
+
/*! jQuery UI - v1.10.0 - 2013-01-17
|
2
|
+
* http://jqueryui.com
|
3
|
+
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
|
4
|
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/
|
5
|
+
* Copyright (c) 2013 jQuery Foundation and other contributors Licensed MIT */
|
6
|
+
|
7
|
+
/* Layout helpers
|
8
|
+
----------------------------------*/
|
9
|
+
.ui-helper-hidden {
|
10
|
+
display: none;
|
11
|
+
}
|
12
|
+
.ui-helper-hidden-accessible {
|
13
|
+
border: 0;
|
14
|
+
clip: rect(0 0 0 0);
|
15
|
+
height: 1px;
|
16
|
+
margin: -1px;
|
17
|
+
overflow: hidden;
|
18
|
+
padding: 0;
|
19
|
+
position: absolute;
|
20
|
+
width: 1px;
|
21
|
+
}
|
22
|
+
.ui-helper-reset {
|
23
|
+
margin: 0;
|
24
|
+
padding: 0;
|
25
|
+
border: 0;
|
26
|
+
outline: 0;
|
27
|
+
line-height: 1.3;
|
28
|
+
text-decoration: none;
|
29
|
+
font-size: 100%;
|
30
|
+
list-style: none;
|
31
|
+
}
|
32
|
+
.ui-helper-clearfix:before,
|
33
|
+
.ui-helper-clearfix:after {
|
34
|
+
content: "";
|
35
|
+
display: table;
|
36
|
+
}
|
37
|
+
.ui-helper-clearfix:after {
|
38
|
+
clear: both;
|
39
|
+
}
|
40
|
+
.ui-helper-clearfix {
|
41
|
+
min-height: 0; /* support: IE7 */
|
42
|
+
}
|
43
|
+
.ui-helper-zfix {
|
44
|
+
width: 100%;
|
45
|
+
height: 100%;
|
46
|
+
top: 0;
|
47
|
+
left: 0;
|
48
|
+
position: absolute;
|
49
|
+
opacity: 0;
|
50
|
+
filter:Alpha(Opacity=0);
|
51
|
+
}
|
52
|
+
|
53
|
+
.ui-front {
|
54
|
+
z-index: 100;
|
55
|
+
}
|
56
|
+
|
57
|
+
|
58
|
+
/* Interaction Cues
|
59
|
+
----------------------------------*/
|
60
|
+
.ui-state-disabled {
|
61
|
+
cursor: default !important;
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
/* Icons
|
66
|
+
----------------------------------*/
|
67
|
+
|
68
|
+
/* states and images */
|
69
|
+
.ui-icon {
|
70
|
+
display: block;
|
71
|
+
text-indent: -99999px;
|
72
|
+
overflow: hidden;
|
73
|
+
background-repeat: no-repeat;
|
74
|
+
}
|
75
|
+
|
76
|
+
|
77
|
+
/* Misc visuals
|
78
|
+
----------------------------------*/
|
79
|
+
|
80
|
+
/* Overlays */
|
81
|
+
.ui-widget-overlay {
|
82
|
+
position: fixed;
|
83
|
+
top: 0;
|
84
|
+
left: 0;
|
85
|
+
width: 100%;
|
86
|
+
height: 100%;
|
87
|
+
}
|
88
|
+
.ui-accordion .ui-accordion-header {
|
89
|
+
display: block;
|
90
|
+
cursor: pointer;
|
91
|
+
position: relative;
|
92
|
+
margin-top: 2px;
|
93
|
+
padding: .5em .5em .5em .7em;
|
94
|
+
min-height: 0; /* support: IE7 */
|
95
|
+
}
|
96
|
+
.ui-accordion .ui-accordion-icons {
|
97
|
+
padding-left: 2.2em;
|
98
|
+
}
|
99
|
+
.ui-accordion .ui-accordion-noicons {
|
100
|
+
padding-left: .7em;
|
101
|
+
}
|
102
|
+
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
|
103
|
+
padding-left: 2.2em;
|
104
|
+
}
|
105
|
+
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
|
106
|
+
position: absolute;
|
107
|
+
left: .5em;
|
108
|
+
top: 50%;
|
109
|
+
margin-top: -8px;
|
110
|
+
}
|
111
|
+
.ui-accordion .ui-accordion-content {
|
112
|
+
padding: 1em 2.2em;
|
113
|
+
border-top: 0;
|
114
|
+
overflow: auto;
|
115
|
+
}
|
116
|
+
.ui-autocomplete {
|
117
|
+
position: absolute;
|
118
|
+
top: 0;
|
119
|
+
left: 0;
|
120
|
+
cursor: default;
|
121
|
+
}
|
122
|
+
.ui-button {
|
123
|
+
display: inline-block;
|
124
|
+
position: relative;
|
125
|
+
padding: 0;
|
126
|
+
line-height: normal;
|
127
|
+
margin-right: .1em;
|
128
|
+
cursor: pointer;
|
129
|
+
vertical-align: middle;
|
130
|
+
text-align: center;
|
131
|
+
overflow: visible; /* removes extra width in IE */
|
132
|
+
}
|
133
|
+
.ui-button,
|
134
|
+
.ui-button:link,
|
135
|
+
.ui-button:visited,
|
136
|
+
.ui-button:hover,
|
137
|
+
.ui-button:active {
|
138
|
+
text-decoration: none;
|
139
|
+
}
|
140
|
+
/* to make room for the icon, a width needs to be set here */
|
141
|
+
.ui-button-icon-only {
|
142
|
+
width: 2.2em;
|
143
|
+
}
|
144
|
+
/* button elements seem to need a little more width */
|
145
|
+
button.ui-button-icon-only {
|
146
|
+
width: 2.4em;
|
147
|
+
}
|
148
|
+
.ui-button-icons-only {
|
149
|
+
width: 3.4em;
|
150
|
+
}
|
151
|
+
button.ui-button-icons-only {
|
152
|
+
width: 3.7em;
|
153
|
+
}
|
154
|
+
|
155
|
+
/* button text element */
|
156
|
+
.ui-button .ui-button-text {
|
157
|
+
display: block;
|
158
|
+
line-height: normal;
|
159
|
+
}
|
160
|
+
.ui-button-text-only .ui-button-text {
|
161
|
+
padding: .4em 1em;
|
162
|
+
}
|
163
|
+
.ui-button-icon-only .ui-button-text,
|
164
|
+
.ui-button-icons-only .ui-button-text {
|
165
|
+
padding: .4em;
|
166
|
+
text-indent: -9999999px;
|
167
|
+
}
|
168
|
+
.ui-button-text-icon-primary .ui-button-text,
|
169
|
+
.ui-button-text-icons .ui-button-text {
|
170
|
+
padding: .4em 1em .4em 2.1em;
|
171
|
+
}
|
172
|
+
.ui-button-text-icon-secondary .ui-button-text,
|
173
|
+
.ui-button-text-icons .ui-button-text {
|
174
|
+
padding: .4em 2.1em .4em 1em;
|
175
|
+
}
|
176
|
+
.ui-button-text-icons .ui-button-text {
|
177
|
+
padding-left: 2.1em;
|
178
|
+
padding-right: 2.1em;
|
179
|
+
}
|
180
|
+
/* no icon support for input elements, provide padding by default */
|
181
|
+
input.ui-button {
|
182
|
+
padding: .4em 1em;
|
183
|
+
}
|
184
|
+
|
185
|
+
/* button icon element(s) */
|
186
|
+
.ui-button-icon-only .ui-icon,
|
187
|
+
.ui-button-text-icon-primary .ui-icon,
|
188
|
+
.ui-button-text-icon-secondary .ui-icon,
|
189
|
+
.ui-button-text-icons .ui-icon,
|
190
|
+
.ui-button-icons-only .ui-icon {
|
191
|
+
position: absolute;
|
192
|
+
top: 50%;
|
193
|
+
margin-top: -8px;
|
194
|
+
}
|
195
|
+
.ui-button-icon-only .ui-icon {
|
196
|
+
left: 50%;
|
197
|
+
margin-left: -8px;
|
198
|
+
}
|
199
|
+
.ui-button-text-icon-primary .ui-button-icon-primary,
|
200
|
+
.ui-button-text-icons .ui-button-icon-primary,
|
201
|
+
.ui-button-icons-only .ui-button-icon-primary {
|
202
|
+
left: .5em;
|
203
|
+
}
|
204
|
+
.ui-button-text-icon-secondary .ui-button-icon-secondary,
|
205
|
+
.ui-button-text-icons .ui-button-icon-secondary,
|
206
|
+
.ui-button-icons-only .ui-button-icon-secondary {
|
207
|
+
right: .5em;
|
208
|
+
}
|
209
|
+
|
210
|
+
/* button sets */
|
211
|
+
.ui-buttonset {
|
212
|
+
margin-right: 7px;
|
213
|
+
}
|
214
|
+
.ui-buttonset .ui-button {
|
215
|
+
margin-left: 0;
|
216
|
+
margin-right: -.3em;
|
217
|
+
}
|
218
|
+
|
219
|
+
/* workarounds */
|
220
|
+
/* reset extra padding in Firefox, see h5bp.com/l */
|
221
|
+
input.ui-button::-moz-focus-inner,
|
222
|
+
button.ui-button::-moz-focus-inner {
|
223
|
+
border: 0;
|
224
|
+
padding: 0;
|
225
|
+
}
|
226
|
+
.ui-datepicker {
|
227
|
+
width: 17em;
|
228
|
+
padding: .2em .2em 0;
|
229
|
+
display: none;
|
230
|
+
}
|
231
|
+
.ui-datepicker .ui-datepicker-header {
|
232
|
+
position: relative;
|
233
|
+
padding: .2em 0;
|
234
|
+
}
|
235
|
+
.ui-datepicker .ui-datepicker-prev,
|
236
|
+
.ui-datepicker .ui-datepicker-next {
|
237
|
+
position: absolute;
|
238
|
+
top: 2px;
|
239
|
+
width: 1.8em;
|
240
|
+
height: 1.8em;
|
241
|
+
}
|
242
|
+
.ui-datepicker .ui-datepicker-prev-hover,
|
243
|
+
.ui-datepicker .ui-datepicker-next-hover {
|
244
|
+
top: 1px;
|
245
|
+
}
|
246
|
+
.ui-datepicker .ui-datepicker-prev {
|
247
|
+
left: 2px;
|
248
|
+
}
|
249
|
+
.ui-datepicker .ui-datepicker-next {
|
250
|
+
right: 2px;
|
251
|
+
}
|
252
|
+
.ui-datepicker .ui-datepicker-prev-hover {
|
253
|
+
left: 1px;
|
254
|
+
}
|
255
|
+
.ui-datepicker .ui-datepicker-next-hover {
|
256
|
+
right: 1px;
|
257
|
+
}
|
258
|
+
.ui-datepicker .ui-datepicker-prev span,
|
259
|
+
.ui-datepicker .ui-datepicker-next span {
|
260
|
+
display: block;
|
261
|
+
position: absolute;
|
262
|
+
left: 50%;
|
263
|
+
margin-left: -8px;
|
264
|
+
top: 50%;
|
265
|
+
margin-top: -8px;
|
266
|
+
}
|
267
|
+
.ui-datepicker .ui-datepicker-title {
|
268
|
+
margin: 0 2.3em;
|
269
|
+
line-height: 1.8em;
|
270
|
+
text-align: center;
|
271
|
+
}
|
272
|
+
.ui-datepicker .ui-datepicker-title select {
|
273
|
+
font-size: 1em;
|
274
|
+
margin: 1px 0;
|
275
|
+
}
|
276
|
+
.ui-datepicker select.ui-datepicker-month-year {
|
277
|
+
width: 100%;
|
278
|
+
}
|
279
|
+
.ui-datepicker select.ui-datepicker-month,
|
280
|
+
.ui-datepicker select.ui-datepicker-year {
|
281
|
+
width: 49%;
|
282
|
+
}
|
283
|
+
.ui-datepicker table {
|
284
|
+
width: 100%;
|
285
|
+
font-size: .9em;
|
286
|
+
border-collapse: collapse;
|
287
|
+
margin: 0 0 .4em;
|
288
|
+
}
|
289
|
+
.ui-datepicker th {
|
290
|
+
padding: .7em .3em;
|
291
|
+
text-align: center;
|
292
|
+
font-weight: bold;
|
293
|
+
border: 0;
|
294
|
+
}
|
295
|
+
.ui-datepicker td {
|
296
|
+
border: 0;
|
297
|
+
padding: 1px;
|
298
|
+
}
|
299
|
+
.ui-datepicker td span,
|
300
|
+
.ui-datepicker td a {
|
301
|
+
display: block;
|
302
|
+
padding: .2em;
|
303
|
+
text-align: right;
|
304
|
+
text-decoration: none;
|
305
|
+
}
|
306
|
+
.ui-datepicker .ui-datepicker-buttonpane {
|
307
|
+
background-image: none;
|
308
|
+
margin: .7em 0 0 0;
|
309
|
+
padding: 0 .2em;
|
310
|
+
border-left: 0;
|
311
|
+
border-right: 0;
|
312
|
+
border-bottom: 0;
|
313
|
+
}
|
314
|
+
.ui-datepicker .ui-datepicker-buttonpane button {
|
315
|
+
float: right;
|
316
|
+
margin: .5em .2em .4em;
|
317
|
+
cursor: pointer;
|
318
|
+
padding: .2em .6em .3em .6em;
|
319
|
+
width: auto;
|
320
|
+
overflow: visible;
|
321
|
+
}
|
322
|
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
323
|
+
float: left;
|
324
|
+
}
|
325
|
+
|
326
|
+
/* with multiple calendars */
|
327
|
+
.ui-datepicker.ui-datepicker-multi {
|
328
|
+
width: auto;
|
329
|
+
}
|
330
|
+
.ui-datepicker-multi .ui-datepicker-group {
|
331
|
+
float: left;
|
332
|
+
}
|
333
|
+
.ui-datepicker-multi .ui-datepicker-group table {
|
334
|
+
width: 95%;
|
335
|
+
margin: 0 auto .4em;
|
336
|
+
}
|
337
|
+
.ui-datepicker-multi-2 .ui-datepicker-group {
|
338
|
+
width: 50%;
|
339
|
+
}
|
340
|
+
.ui-datepicker-multi-3 .ui-datepicker-group {
|
341
|
+
width: 33.3%;
|
342
|
+
}
|
343
|
+
.ui-datepicker-multi-4 .ui-datepicker-group {
|
344
|
+
width: 25%;
|
345
|
+
}
|
346
|
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
347
|
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
348
|
+
border-left-width: 0;
|
349
|
+
}
|
350
|
+
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
351
|
+
clear: left;
|
352
|
+
}
|
353
|
+
.ui-datepicker-row-break {
|
354
|
+
clear: both;
|
355
|
+
width: 100%;
|
356
|
+
font-size: 0;
|
357
|
+
}
|
358
|
+
|
359
|
+
/* RTL support */
|
360
|
+
.ui-datepicker-rtl {
|
361
|
+
direction: rtl;
|
362
|
+
}
|
363
|
+
.ui-datepicker-rtl .ui-datepicker-prev {
|
364
|
+
right: 2px;
|
365
|
+
left: auto;
|
366
|
+
}
|
367
|
+
.ui-datepicker-rtl .ui-datepicker-next {
|
368
|
+
left: 2px;
|
369
|
+
right: auto;
|
370
|
+
}
|
371
|
+
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
372
|
+
right: 1px;
|
373
|
+
left: auto;
|
374
|
+
}
|
375
|
+
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
376
|
+
left: 1px;
|
377
|
+
right: auto;
|
378
|
+
}
|
379
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
380
|
+
clear: right;
|
381
|
+
}
|
382
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
383
|
+
float: left;
|
384
|
+
}
|
385
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
386
|
+
.ui-datepicker-rtl .ui-datepicker-group {
|
387
|
+
float: right;
|
388
|
+
}
|
389
|
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
390
|
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
391
|
+
border-right-width: 0;
|
392
|
+
border-left-width: 1px;
|
393
|
+
}
|
394
|
+
.ui-dialog {
|
395
|
+
position: absolute;
|
396
|
+
top: 0;
|
397
|
+
left: 0;
|
398
|
+
padding: .2em;
|
399
|
+
outline: 0;
|
400
|
+
}
|
401
|
+
.ui-dialog .ui-dialog-titlebar {
|
402
|
+
padding: .4em 1em;
|
403
|
+
position: relative;
|
404
|
+
}
|
405
|
+
.ui-dialog .ui-dialog-title {
|
406
|
+
float: left;
|
407
|
+
margin: .1em 0;
|
408
|
+
white-space: nowrap;
|
409
|
+
width: 90%;
|
410
|
+
overflow: hidden;
|
411
|
+
text-overflow: ellipsis;
|
412
|
+
}
|
413
|
+
.ui-dialog .ui-dialog-titlebar-close {
|
414
|
+
position: absolute;
|
415
|
+
right: .3em;
|
416
|
+
top: 50%;
|
417
|
+
width: 21px;
|
418
|
+
margin: -10px 0 0 0;
|
419
|
+
padding: 1px;
|
420
|
+
height: 20px;
|
421
|
+
}
|
422
|
+
.ui-dialog .ui-dialog-content {
|
423
|
+
position: relative;
|
424
|
+
border: 0;
|
425
|
+
padding: .5em 1em;
|
426
|
+
background: none;
|
427
|
+
overflow: auto;
|
428
|
+
}
|
429
|
+
.ui-dialog .ui-dialog-buttonpane {
|
430
|
+
text-align: left;
|
431
|
+
border-width: 1px 0 0 0;
|
432
|
+
background-image: none;
|
433
|
+
margin-top: .5em;
|
434
|
+
padding: .3em 1em .5em .4em;
|
435
|
+
}
|
436
|
+
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
437
|
+
float: right;
|
438
|
+
}
|
439
|
+
.ui-dialog .ui-dialog-buttonpane button {
|
440
|
+
margin: .5em .4em .5em 0;
|
441
|
+
cursor: pointer;
|
442
|
+
}
|
443
|
+
.ui-dialog .ui-resizable-se {
|
444
|
+
width: 12px;
|
445
|
+
height: 12px;
|
446
|
+
right: -5px;
|
447
|
+
bottom: -5px;
|
448
|
+
background-position: 16px 16px;
|
449
|
+
}
|
450
|
+
.ui-draggable .ui-dialog-titlebar {
|
451
|
+
cursor: move;
|
452
|
+
}
|
453
|
+
.ui-menu {
|
454
|
+
list-style: none;
|
455
|
+
padding: 2px;
|
456
|
+
margin: 0;
|
457
|
+
display: block;
|
458
|
+
outline: none;
|
459
|
+
}
|
460
|
+
.ui-menu .ui-menu {
|
461
|
+
margin-top: -3px;
|
462
|
+
position: absolute;
|
463
|
+
}
|
464
|
+
.ui-menu .ui-menu-item {
|
465
|
+
margin: 0;
|
466
|
+
padding: 0;
|
467
|
+
width: 100%;
|
468
|
+
}
|
469
|
+
.ui-menu .ui-menu-divider {
|
470
|
+
margin: 5px -2px 5px -2px;
|
471
|
+
height: 0;
|
472
|
+
font-size: 0;
|
473
|
+
line-height: 0;
|
474
|
+
border-width: 1px 0 0 0;
|
475
|
+
}
|
476
|
+
.ui-menu .ui-menu-item a {
|
477
|
+
text-decoration: none;
|
478
|
+
display: block;
|
479
|
+
padding: 2px .4em;
|
480
|
+
line-height: 1.5;
|
481
|
+
min-height: 0; /* support: IE7 */
|
482
|
+
font-weight: normal;
|
483
|
+
}
|
484
|
+
.ui-menu .ui-menu-item a.ui-state-focus,
|
485
|
+
.ui-menu .ui-menu-item a.ui-state-active {
|
486
|
+
font-weight: normal;
|
487
|
+
margin: -1px;
|
488
|
+
}
|
489
|
+
|
490
|
+
.ui-menu .ui-state-disabled {
|
491
|
+
font-weight: normal;
|
492
|
+
margin: .4em 0 .2em;
|
493
|
+
line-height: 1.5;
|
494
|
+
}
|
495
|
+
.ui-menu .ui-state-disabled a {
|
496
|
+
cursor: default;
|
497
|
+
}
|
498
|
+
|
499
|
+
/* icon support */
|
500
|
+
.ui-menu-icons {
|
501
|
+
position: relative;
|
502
|
+
}
|
503
|
+
.ui-menu-icons .ui-menu-item a {
|
504
|
+
position: relative;
|
505
|
+
padding-left: 2em;
|
506
|
+
}
|
507
|
+
|
508
|
+
/* left-aligned */
|
509
|
+
.ui-menu .ui-icon {
|
510
|
+
position: absolute;
|
511
|
+
top: .2em;
|
512
|
+
left: .2em;
|
513
|
+
}
|
514
|
+
|
515
|
+
/* right-aligned */
|
516
|
+
.ui-menu .ui-menu-icon {
|
517
|
+
position: static;
|
518
|
+
float: right;
|
519
|
+
}
|
520
|
+
.ui-progressbar {
|
521
|
+
height: 2em;
|
522
|
+
text-align: left;
|
523
|
+
overflow: hidden;
|
524
|
+
}
|
525
|
+
.ui-progressbar .ui-progressbar-value {
|
526
|
+
margin: -1px;
|
527
|
+
height: 100%;
|
528
|
+
}
|
529
|
+
.ui-progressbar .ui-progressbar-overlay {
|
530
|
+
background: url("/images/animated-overlay.gif");
|
531
|
+
height: 100%;
|
532
|
+
filter: alpha(opacity=25);
|
533
|
+
opacity: 0.25;
|
534
|
+
}
|
535
|
+
.ui-progressbar-indeterminate .ui-progressbar-value {
|
536
|
+
background-image: none;
|
537
|
+
}
|
538
|
+
.ui-resizable {
|
539
|
+
position: relative;
|
540
|
+
}
|
541
|
+
.ui-resizable-handle {
|
542
|
+
position: absolute;
|
543
|
+
font-size: 0.1px;
|
544
|
+
display: block;
|
545
|
+
}
|
546
|
+
.ui-resizable-disabled .ui-resizable-handle,
|
547
|
+
.ui-resizable-autohide .ui-resizable-handle {
|
548
|
+
display: none;
|
549
|
+
}
|
550
|
+
.ui-resizable-n {
|
551
|
+
cursor: n-resize;
|
552
|
+
height: 7px;
|
553
|
+
width: 100%;
|
554
|
+
top: -5px;
|
555
|
+
left: 0;
|
556
|
+
}
|
557
|
+
.ui-resizable-s {
|
558
|
+
cursor: s-resize;
|
559
|
+
height: 7px;
|
560
|
+
width: 100%;
|
561
|
+
bottom: -5px;
|
562
|
+
left: 0;
|
563
|
+
}
|
564
|
+
.ui-resizable-e {
|
565
|
+
cursor: e-resize;
|
566
|
+
width: 7px;
|
567
|
+
right: -5px;
|
568
|
+
top: 0;
|
569
|
+
height: 100%;
|
570
|
+
}
|
571
|
+
.ui-resizable-w {
|
572
|
+
cursor: w-resize;
|
573
|
+
width: 7px;
|
574
|
+
left: -5px;
|
575
|
+
top: 0;
|
576
|
+
height: 100%;
|
577
|
+
}
|
578
|
+
.ui-resizable-se {
|
579
|
+
cursor: se-resize;
|
580
|
+
width: 12px;
|
581
|
+
height: 12px;
|
582
|
+
right: 1px;
|
583
|
+
bottom: 1px;
|
584
|
+
}
|
585
|
+
.ui-resizable-sw {
|
586
|
+
cursor: sw-resize;
|
587
|
+
width: 9px;
|
588
|
+
height: 9px;
|
589
|
+
left: -5px;
|
590
|
+
bottom: -5px;
|
591
|
+
}
|
592
|
+
.ui-resizable-nw {
|
593
|
+
cursor: nw-resize;
|
594
|
+
width: 9px;
|
595
|
+
height: 9px;
|
596
|
+
left: -5px;
|
597
|
+
top: -5px;
|
598
|
+
}
|
599
|
+
.ui-resizable-ne {
|
600
|
+
cursor: ne-resize;
|
601
|
+
width: 9px;
|
602
|
+
height: 9px;
|
603
|
+
right: -5px;
|
604
|
+
top: -5px;
|
605
|
+
}
|
606
|
+
.ui-selectable-helper {
|
607
|
+
position: absolute;
|
608
|
+
z-index: 100;
|
609
|
+
border: 1px dotted black;
|
610
|
+
}
|
611
|
+
.ui-slider {
|
612
|
+
position: relative;
|
613
|
+
text-align: left;
|
614
|
+
}
|
615
|
+
.ui-slider .ui-slider-handle {
|
616
|
+
position: absolute;
|
617
|
+
z-index: 2;
|
618
|
+
width: 1.2em;
|
619
|
+
height: 1.2em;
|
620
|
+
cursor: default;
|
621
|
+
}
|
622
|
+
.ui-slider .ui-slider-range {
|
623
|
+
position: absolute;
|
624
|
+
z-index: 1;
|
625
|
+
font-size: .7em;
|
626
|
+
display: block;
|
627
|
+
border: 0;
|
628
|
+
background-position: 0 0;
|
629
|
+
}
|
630
|
+
|
631
|
+
/* For IE8 - See #6727 */
|
632
|
+
.ui-slider.ui-state-disabled .ui-slider-handle,
|
633
|
+
.ui-slider.ui-state-disabled .ui-slider-range {
|
634
|
+
filter: inherit;
|
635
|
+
}
|
636
|
+
|
637
|
+
.ui-slider-horizontal {
|
638
|
+
height: .8em;
|
639
|
+
}
|
640
|
+
.ui-slider-horizontal .ui-slider-handle {
|
641
|
+
top: -.3em;
|
642
|
+
margin-left: -.6em;
|
643
|
+
}
|
644
|
+
.ui-slider-horizontal .ui-slider-range {
|
645
|
+
top: 0;
|
646
|
+
height: 100%;
|
647
|
+
}
|
648
|
+
.ui-slider-horizontal .ui-slider-range-min {
|
649
|
+
left: 0;
|
650
|
+
}
|
651
|
+
.ui-slider-horizontal .ui-slider-range-max {
|
652
|
+
right: 0;
|
653
|
+
}
|
654
|
+
|
655
|
+
.ui-slider-vertical {
|
656
|
+
width: .8em;
|
657
|
+
height: 100px;
|
658
|
+
}
|
659
|
+
.ui-slider-vertical .ui-slider-handle {
|
660
|
+
left: -.3em;
|
661
|
+
margin-left: 0;
|
662
|
+
margin-bottom: -.6em;
|
663
|
+
}
|
664
|
+
.ui-slider-vertical .ui-slider-range {
|
665
|
+
left: 0;
|
666
|
+
width: 100%;
|
667
|
+
}
|
668
|
+
.ui-slider-vertical .ui-slider-range-min {
|
669
|
+
bottom: 0;
|
670
|
+
}
|
671
|
+
.ui-slider-vertical .ui-slider-range-max {
|
672
|
+
top: 0;
|
673
|
+
}
|
674
|
+
.ui-spinner {
|
675
|
+
position: relative;
|
676
|
+
display: inline-block;
|
677
|
+
overflow: hidden;
|
678
|
+
padding: 0;
|
679
|
+
vertical-align: middle;
|
680
|
+
}
|
681
|
+
.ui-spinner-input {
|
682
|
+
border: none;
|
683
|
+
background: none;
|
684
|
+
color: inherit;
|
685
|
+
padding: 0;
|
686
|
+
margin: .2em 0;
|
687
|
+
vertical-align: middle;
|
688
|
+
margin-left: .4em;
|
689
|
+
margin-right: 22px;
|
690
|
+
}
|
691
|
+
.ui-spinner-button {
|
692
|
+
width: 16px;
|
693
|
+
height: 50%;
|
694
|
+
font-size: .5em;
|
695
|
+
padding: 0;
|
696
|
+
margin: 0;
|
697
|
+
text-align: center;
|
698
|
+
position: absolute;
|
699
|
+
cursor: default;
|
700
|
+
display: block;
|
701
|
+
overflow: hidden;
|
702
|
+
right: 0;
|
703
|
+
}
|
704
|
+
/* more specificity required here to overide default borders */
|
705
|
+
.ui-spinner a.ui-spinner-button {
|
706
|
+
border-top: none;
|
707
|
+
border-bottom: none;
|
708
|
+
border-right: none;
|
709
|
+
}
|
710
|
+
/* vertical centre icon */
|
711
|
+
.ui-spinner .ui-icon {
|
712
|
+
position: absolute;
|
713
|
+
margin-top: -8px;
|
714
|
+
top: 50%;
|
715
|
+
left: 0;
|
716
|
+
}
|
717
|
+
.ui-spinner-up {
|
718
|
+
top: 0;
|
719
|
+
}
|
720
|
+
.ui-spinner-down {
|
721
|
+
bottom: 0;
|
722
|
+
}
|
723
|
+
|
724
|
+
/* TR overrides */
|
725
|
+
.ui-spinner .ui-icon-triangle-1-s {
|
726
|
+
/* need to fix icons sprite */
|
727
|
+
background-position: -65px -16px;
|
728
|
+
}
|
729
|
+
.ui-tabs {
|
730
|
+
position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
731
|
+
padding: .2em;
|
732
|
+
}
|
733
|
+
.ui-tabs .ui-tabs-nav {
|
734
|
+
margin: 0;
|
735
|
+
padding: .2em .2em 0;
|
736
|
+
}
|
737
|
+
.ui-tabs .ui-tabs-nav li {
|
738
|
+
list-style: none;
|
739
|
+
float: left;
|
740
|
+
position: relative;
|
741
|
+
top: 0;
|
742
|
+
margin: 1px .2em 0 0;
|
743
|
+
border-bottom: 0;
|
744
|
+
padding: 0;
|
745
|
+
white-space: nowrap;
|
746
|
+
}
|
747
|
+
.ui-tabs .ui-tabs-nav li a {
|
748
|
+
float: left;
|
749
|
+
padding: .5em 1em;
|
750
|
+
text-decoration: none;
|
751
|
+
}
|
752
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
753
|
+
margin-bottom: -1px;
|
754
|
+
padding-bottom: 1px;
|
755
|
+
}
|
756
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
|
757
|
+
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
|
758
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
|
759
|
+
cursor: text;
|
760
|
+
}
|
761
|
+
.ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
762
|
+
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
|
763
|
+
cursor: pointer;
|
764
|
+
}
|
765
|
+
.ui-tabs .ui-tabs-panel {
|
766
|
+
display: block;
|
767
|
+
border-width: 0;
|
768
|
+
padding: 1em 1.4em;
|
769
|
+
background: none;
|
770
|
+
}
|
771
|
+
.ui-tooltip {
|
772
|
+
padding: 8px;
|
773
|
+
position: absolute;
|
774
|
+
z-index: 9999;
|
775
|
+
max-width: 300px;
|
776
|
+
-webkit-box-shadow: 0 0 5px #aaa;
|
777
|
+
box-shadow: 0 0 5px #aaa;
|
778
|
+
}
|
779
|
+
body .ui-tooltip {
|
780
|
+
border-width: 2px;
|
781
|
+
}
|
782
|
+
|
783
|
+
/* Component containers
|
784
|
+
----------------------------------*/
|
785
|
+
.ui-widget {
|
786
|
+
font-family: Verdana,Arial,sans-serif;
|
787
|
+
font-size: 1.1em;
|
788
|
+
}
|
789
|
+
.ui-widget .ui-widget {
|
790
|
+
font-size: 1em;
|
791
|
+
}
|
792
|
+
.ui-widget input,
|
793
|
+
.ui-widget select,
|
794
|
+
.ui-widget textarea,
|
795
|
+
.ui-widget button {
|
796
|
+
font-family: Verdana,Arial,sans-serif;
|
797
|
+
font-size: 1em;
|
798
|
+
}
|
799
|
+
.ui-widget-content {
|
800
|
+
border: 1px solid #aaaaaa;
|
801
|
+
background: #ffffff url(/images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
|
802
|
+
color: #222222;
|
803
|
+
}
|
804
|
+
.ui-widget-content a {
|
805
|
+
color: #222222;
|
806
|
+
}
|
807
|
+
.ui-widget-header {
|
808
|
+
border: 1px solid #aaaaaa;
|
809
|
+
background: #cccccc url(/images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
|
810
|
+
color: #222222;
|
811
|
+
font-weight: bold;
|
812
|
+
}
|
813
|
+
.ui-widget-header a {
|
814
|
+
color: #222222;
|
815
|
+
}
|
816
|
+
|
817
|
+
/* Interaction states
|
818
|
+
----------------------------------*/
|
819
|
+
.ui-state-default,
|
820
|
+
.ui-widget-content .ui-state-default,
|
821
|
+
.ui-widget-header .ui-state-default {
|
822
|
+
border: 1px solid #d3d3d3;
|
823
|
+
background: #e6e6e6 url(/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
|
824
|
+
font-weight: normal;
|
825
|
+
color: #555555;
|
826
|
+
}
|
827
|
+
.ui-state-default a,
|
828
|
+
.ui-state-default a:link,
|
829
|
+
.ui-state-default a:visited {
|
830
|
+
color: #555555;
|
831
|
+
text-decoration: none;
|
832
|
+
}
|
833
|
+
.ui-state-hover,
|
834
|
+
.ui-widget-content .ui-state-hover,
|
835
|
+
.ui-widget-header .ui-state-hover,
|
836
|
+
.ui-state-focus,
|
837
|
+
.ui-widget-content .ui-state-focus,
|
838
|
+
.ui-widget-header .ui-state-focus {
|
839
|
+
border: 1px solid #999999;
|
840
|
+
background: #dadada url(/images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
|
841
|
+
font-weight: normal;
|
842
|
+
color: #212121;
|
843
|
+
}
|
844
|
+
.ui-state-hover a,
|
845
|
+
.ui-state-hover a:hover,
|
846
|
+
.ui-state-hover a:link,
|
847
|
+
.ui-state-hover a:visited {
|
848
|
+
color: #212121;
|
849
|
+
text-decoration: none;
|
850
|
+
}
|
851
|
+
.ui-state-active,
|
852
|
+
.ui-widget-content .ui-state-active,
|
853
|
+
.ui-widget-header .ui-state-active {
|
854
|
+
border: 1px solid #aaaaaa;
|
855
|
+
background: #ffffff url(/images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
|
856
|
+
font-weight: normal;
|
857
|
+
color: #212121;
|
858
|
+
}
|
859
|
+
.ui-state-active a,
|
860
|
+
.ui-state-active a:link,
|
861
|
+
.ui-state-active a:visited {
|
862
|
+
color: #212121;
|
863
|
+
text-decoration: none;
|
864
|
+
}
|
865
|
+
|
866
|
+
/* Interaction Cues
|
867
|
+
----------------------------------*/
|
868
|
+
.ui-state-highlight,
|
869
|
+
.ui-widget-content .ui-state-highlight,
|
870
|
+
.ui-widget-header .ui-state-highlight {
|
871
|
+
border: 1px solid #fcefa1;
|
872
|
+
background: #fbf9ee url(/images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
|
873
|
+
color: #363636;
|
874
|
+
}
|
875
|
+
.ui-state-highlight a,
|
876
|
+
.ui-widget-content .ui-state-highlight a,
|
877
|
+
.ui-widget-header .ui-state-highlight a {
|
878
|
+
color: #363636;
|
879
|
+
}
|
880
|
+
.ui-state-error,
|
881
|
+
.ui-widget-content .ui-state-error,
|
882
|
+
.ui-widget-header .ui-state-error {
|
883
|
+
border: 1px solid #cd0a0a;
|
884
|
+
background: #fef1ec url(/images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
|
885
|
+
color: #cd0a0a;
|
886
|
+
}
|
887
|
+
.ui-state-error a,
|
888
|
+
.ui-widget-content .ui-state-error a,
|
889
|
+
.ui-widget-header .ui-state-error a {
|
890
|
+
color: #cd0a0a;
|
891
|
+
}
|
892
|
+
.ui-state-error-text,
|
893
|
+
.ui-widget-content .ui-state-error-text,
|
894
|
+
.ui-widget-header .ui-state-error-text {
|
895
|
+
color: #cd0a0a;
|
896
|
+
}
|
897
|
+
.ui-priority-primary,
|
898
|
+
.ui-widget-content .ui-priority-primary,
|
899
|
+
.ui-widget-header .ui-priority-primary {
|
900
|
+
font-weight: bold;
|
901
|
+
}
|
902
|
+
.ui-priority-secondary,
|
903
|
+
.ui-widget-content .ui-priority-secondary,
|
904
|
+
.ui-widget-header .ui-priority-secondary {
|
905
|
+
opacity: .7;
|
906
|
+
filter:Alpha(Opacity=70);
|
907
|
+
font-weight: normal;
|
908
|
+
}
|
909
|
+
.ui-state-disabled,
|
910
|
+
.ui-widget-content .ui-state-disabled,
|
911
|
+
.ui-widget-header .ui-state-disabled {
|
912
|
+
opacity: .35;
|
913
|
+
filter:Alpha(Opacity=35);
|
914
|
+
background-image: none;
|
915
|
+
}
|
916
|
+
.ui-state-disabled .ui-icon {
|
917
|
+
filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
|
918
|
+
}
|
919
|
+
|
920
|
+
/* Icons
|
921
|
+
----------------------------------*/
|
922
|
+
|
923
|
+
/* states and images */
|
924
|
+
.ui-icon {
|
925
|
+
width: 16px;
|
926
|
+
height: 16px;
|
927
|
+
background-position: 16px 16px;
|
928
|
+
}
|
929
|
+
.ui-icon,
|
930
|
+
.ui-widget-content .ui-icon {
|
931
|
+
background-image: url(/images/ui-icons_222222_256x240.png);
|
932
|
+
}
|
933
|
+
.ui-widget-header .ui-icon {
|
934
|
+
background-image: url(/images/ui-icons_222222_256x240.png);
|
935
|
+
}
|
936
|
+
.ui-state-default .ui-icon {
|
937
|
+
background-image: url(/images/ui-icons_888888_256x240.png);
|
938
|
+
}
|
939
|
+
.ui-state-hover .ui-icon,
|
940
|
+
.ui-state-focus .ui-icon {
|
941
|
+
background-image: url(/images/ui-icons_454545_256x240.png);
|
942
|
+
}
|
943
|
+
.ui-state-active .ui-icon {
|
944
|
+
background-image: url(/images/ui-icons_454545_256x240.png);
|
945
|
+
}
|
946
|
+
.ui-state-highlight .ui-icon {
|
947
|
+
background-image: url(/images/ui-icons_2e83ff_256x240.png);
|
948
|
+
}
|
949
|
+
.ui-state-error .ui-icon,
|
950
|
+
.ui-state-error-text .ui-icon {
|
951
|
+
background-image: url(/images/ui-icons_cd0a0a_256x240.png);
|
952
|
+
}
|
953
|
+
|
954
|
+
/* positioning */
|
955
|
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
956
|
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
957
|
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
958
|
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
959
|
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
960
|
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
961
|
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
962
|
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
963
|
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
964
|
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
965
|
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
966
|
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
967
|
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
968
|
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
969
|
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
970
|
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
971
|
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
972
|
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
973
|
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
974
|
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
975
|
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
976
|
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
977
|
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
978
|
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
979
|
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
980
|
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
981
|
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
982
|
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
983
|
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
984
|
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
985
|
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
986
|
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
987
|
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
988
|
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
989
|
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
990
|
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
991
|
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
992
|
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
993
|
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
994
|
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
995
|
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
996
|
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
997
|
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
998
|
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
999
|
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
1000
|
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
1001
|
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
1002
|
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
1003
|
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
1004
|
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
1005
|
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
1006
|
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
1007
|
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
1008
|
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
1009
|
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
1010
|
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
1011
|
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
1012
|
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
1013
|
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
1014
|
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
1015
|
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
1016
|
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
1017
|
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
1018
|
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
1019
|
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
1020
|
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
1021
|
+
.ui-icon-extlink { background-position: -32px -80px; }
|
1022
|
+
.ui-icon-newwin { background-position: -48px -80px; }
|
1023
|
+
.ui-icon-refresh { background-position: -64px -80px; }
|
1024
|
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
1025
|
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
1026
|
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
1027
|
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
1028
|
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
1029
|
+
.ui-icon-document { background-position: -32px -96px; }
|
1030
|
+
.ui-icon-document-b { background-position: -48px -96px; }
|
1031
|
+
.ui-icon-note { background-position: -64px -96px; }
|
1032
|
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
1033
|
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
1034
|
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
1035
|
+
.ui-icon-comment { background-position: -128px -96px; }
|
1036
|
+
.ui-icon-person { background-position: -144px -96px; }
|
1037
|
+
.ui-icon-print { background-position: -160px -96px; }
|
1038
|
+
.ui-icon-trash { background-position: -176px -96px; }
|
1039
|
+
.ui-icon-locked { background-position: -192px -96px; }
|
1040
|
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
1041
|
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
1042
|
+
.ui-icon-tag { background-position: -240px -96px; }
|
1043
|
+
.ui-icon-home { background-position: 0 -112px; }
|
1044
|
+
.ui-icon-flag { background-position: -16px -112px; }
|
1045
|
+
.ui-icon-calendar { background-position: -32px -112px; }
|
1046
|
+
.ui-icon-cart { background-position: -48px -112px; }
|
1047
|
+
.ui-icon-pencil { background-position: -64px -112px; }
|
1048
|
+
.ui-icon-clock { background-position: -80px -112px; }
|
1049
|
+
.ui-icon-disk { background-position: -96px -112px; }
|
1050
|
+
.ui-icon-calculator { background-position: -112px -112px; }
|
1051
|
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
1052
|
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
1053
|
+
.ui-icon-search { background-position: -160px -112px; }
|
1054
|
+
.ui-icon-wrench { background-position: -176px -112px; }
|
1055
|
+
.ui-icon-gear { background-position: -192px -112px; }
|
1056
|
+
.ui-icon-heart { background-position: -208px -112px; }
|
1057
|
+
.ui-icon-star { background-position: -224px -112px; }
|
1058
|
+
.ui-icon-link { background-position: -240px -112px; }
|
1059
|
+
.ui-icon-cancel { background-position: 0 -128px; }
|
1060
|
+
.ui-icon-plus { background-position: -16px -128px; }
|
1061
|
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
1062
|
+
.ui-icon-minus { background-position: -48px -128px; }
|
1063
|
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
1064
|
+
.ui-icon-close { background-position: -80px -128px; }
|
1065
|
+
.ui-icon-closethick { background-position: -96px -128px; }
|
1066
|
+
.ui-icon-key { background-position: -112px -128px; }
|
1067
|
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
1068
|
+
.ui-icon-scissors { background-position: -144px -128px; }
|
1069
|
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
1070
|
+
.ui-icon-copy { background-position: -176px -128px; }
|
1071
|
+
.ui-icon-contact { background-position: -192px -128px; }
|
1072
|
+
.ui-icon-image { background-position: -208px -128px; }
|
1073
|
+
.ui-icon-video { background-position: -224px -128px; }
|
1074
|
+
.ui-icon-script { background-position: -240px -128px; }
|
1075
|
+
.ui-icon-alert { background-position: 0 -144px; }
|
1076
|
+
.ui-icon-info { background-position: -16px -144px; }
|
1077
|
+
.ui-icon-notice { background-position: -32px -144px; }
|
1078
|
+
.ui-icon-help { background-position: -48px -144px; }
|
1079
|
+
.ui-icon-check { background-position: -64px -144px; }
|
1080
|
+
.ui-icon-bullet { background-position: -80px -144px; }
|
1081
|
+
.ui-icon-radio-on { background-position: -96px -144px; }
|
1082
|
+
.ui-icon-radio-off { background-position: -112px -144px; }
|
1083
|
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
1084
|
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
1085
|
+
.ui-icon-play { background-position: 0 -160px; }
|
1086
|
+
.ui-icon-pause { background-position: -16px -160px; }
|
1087
|
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
1088
|
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
1089
|
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
1090
|
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
1091
|
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
1092
|
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
1093
|
+
.ui-icon-stop { background-position: -96px -160px; }
|
1094
|
+
.ui-icon-eject { background-position: -112px -160px; }
|
1095
|
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
1096
|
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
1097
|
+
.ui-icon-power { background-position: 0 -176px; }
|
1098
|
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
1099
|
+
.ui-icon-signal { background-position: -32px -176px; }
|
1100
|
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
1101
|
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
1102
|
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
1103
|
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
1104
|
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
1105
|
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
1106
|
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
1107
|
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
1108
|
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
1109
|
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
1110
|
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
1111
|
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
1112
|
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
1113
|
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
1114
|
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
1115
|
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
1116
|
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
1117
|
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
1118
|
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
1119
|
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
1120
|
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
1121
|
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
1122
|
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
1123
|
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
1124
|
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
1125
|
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
1126
|
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
1127
|
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
1128
|
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
1129
|
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
1130
|
+
|
1131
|
+
|
1132
|
+
/* Misc visuals
|
1133
|
+
----------------------------------*/
|
1134
|
+
|
1135
|
+
/* Corner radius */
|
1136
|
+
.ui-corner-all,
|
1137
|
+
.ui-corner-top,
|
1138
|
+
.ui-corner-left,
|
1139
|
+
.ui-corner-tl {
|
1140
|
+
border-top-left-radius: 4px;
|
1141
|
+
}
|
1142
|
+
.ui-corner-all,
|
1143
|
+
.ui-corner-top,
|
1144
|
+
.ui-corner-right,
|
1145
|
+
.ui-corner-tr {
|
1146
|
+
border-top-right-radius: 4px;
|
1147
|
+
}
|
1148
|
+
.ui-corner-all,
|
1149
|
+
.ui-corner-bottom,
|
1150
|
+
.ui-corner-left,
|
1151
|
+
.ui-corner-bl {
|
1152
|
+
border-bottom-left-radius: 4px;
|
1153
|
+
}
|
1154
|
+
.ui-corner-all,
|
1155
|
+
.ui-corner-bottom,
|
1156
|
+
.ui-corner-right,
|
1157
|
+
.ui-corner-br {
|
1158
|
+
border-bottom-right-radius: 4px;
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
/* Overlays */
|
1162
|
+
.ui-widget-overlay {
|
1163
|
+
background: #aaaaaa url(/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
|
1164
|
+
opacity: .3;
|
1165
|
+
filter: Alpha(Opacity=30);
|
1166
|
+
}
|
1167
|
+
.ui-widget-shadow {
|
1168
|
+
margin: -8px 0 0 -8px;
|
1169
|
+
padding: 8px;
|
1170
|
+
background: #aaaaaa url(/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
|
1171
|
+
opacity: .3;
|
1172
|
+
filter: Alpha(Opacity=30);
|
1173
|
+
border-radius: 8px;
|
1174
|
+
}
|