diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/survey/static/src/css | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/survey/static/src/css')
| -rw-r--r-- | addons/survey/static/src/css/survey_print.css | 17 | ||||
| -rw-r--r-- | addons/survey/static/src/css/survey_result.css | 77 |
2 files changed, 94 insertions, 0 deletions
diff --git a/addons/survey/static/src/css/survey_print.css b/addons/survey/static/src/css/survey_print.css new file mode 100644 index 00000000..a28f672b --- /dev/null +++ b/addons/survey/static/src/css/survey_print.css @@ -0,0 +1,17 @@ +@media print { + .js_surveyform { + font-size: 13px; + } + .js_surveyform textarea.form-control { + height: 10em; + } + .js_surveyform h1 { + font-size: 28px; + } + .js_surveyform h2 { + font-size: 20px; + } + .js_question-wrapper { + page-break-inside: avoid; + } +} diff --git a/addons/survey/static/src/css/survey_result.css b/addons/survey/static/src/css/survey_result.css new file mode 100644 index 00000000..dda0022a --- /dev/null +++ b/addons/survey/static/src/css/survey_result.css @@ -0,0 +1,77 @@ +.only_right_radius { + border-top-right-radius: 2em; + border-bottom-right-radius: 2em; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.only_left_radius { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-top-left-radius: 2em; + border-bottom-left-radius: 2em; +} + +.no_radius { + border-radius: 0; +} + +.clear_survey_filter, .filter-all, .filter-finished{ + cursor: pointer; +} + +.o_active_filter { + cursor:default; +} + +.nvtooltip h5 { + margin: 0; + line-height: 18px; + font-weight: bold; + background-color: rgba(247,247,247,0.75); + text-align: center; + border-bottom: 1px solid #ebebeb; + -webkit-border-radius: 5px 5px 0 0; + -moz-border-radius: 5px 5px 0 0; + border-radius: 5px 5px 0 0; +} + +.survey_answer i { + padding:3px; + cursor:pointer; + visibility:hidden; +} +.survey_answer:hover i { + visibility: visible; +} + +@media print { + .tab-content > .tab-pane { + display: block; + } + + .tab-content > .survey_graph > svg { + width: 1150px; + } +} + +.o_preview_questions { + border: 3px solid #C9C6C6; + width: auto; + padding: 10px 30px 5px; + margin-top: 15px; + color: #C9C6C6; +} + +.o_preview_questions .o_datetime { + border: 1px solid #D8D7D7; + margin-bottom: 5px; +} + +.o_preview_questions .o_matrix_head { + border-bottom: 1px solid #D8D7D7; +} + +.o_preview_questions .o_matrix_row { + border-top: 1px solid #D8D7D7; +} |
