Skip to content
Snippets Groups Projects
Commit 7a791eb0 authored by gnaegi's avatar gnaegi
Browse files

OO-2732 beautify d&d question type, use color coding and border styles to...

OO-2732 beautify d&d question type, use color coding and border styles to distinguish between source and target
parent 987e58e4
No related branches found
No related tags found
No related merge requests found
Showing
with 45 additions and 25 deletions
...@@ -417,10 +417,17 @@ $o-qti-hottext-checked-bg : $o-qti-userselection-bg !default; ...@@ -417,10 +417,17 @@ $o-qti-hottext-checked-bg : $o-qti-userselection-bg !default;
$o-qti-hottext-checked-border-color : $o-qti-userselection-border-color !default; $o-qti-hottext-checked-border-color : $o-qti-userselection-border-color !default;
$o-qti-match-border-color : #999 !default; $o-qti-match-border-color : #999 !default;
$o-qti-match-choosed-border-color : #777 !default; $o-qti-match-choosed-border-color : #777 !default;
$o-qti-match-drag-border-color : $brand-primary !default; $o-qti-match-drag-border-color : $brand-warning !default;
$o-qti-match-selected-border-color : $brand-primary !default; $o-qti-match-sources-bg : $o-qti-run-infos-bg !default;
$o-qti-match-drop-accept-border-color : $brand-warning !default; $o-qti-match-sources-border-color : $o-qti-run-infos-border-color !default;
$o-qti-match-drop-bg : #e7e7e7 !default; $o-qti-match-source-bg : $state-warning-bg !default;
$o-qti-match-source-border-style : dashed !default;
$o-qti-match-selected-border-color : $brand-warning !default;
$o-qti-match-selected-bg : lighten($brand-warning, 25%) !default;
$o-qti-match-drop-accept-border-color : $brand-info !default;
$o-qti-match-target-border-color : $brand-info !default;
$o-qti-match-target-bg : $state-info-bg !default;
$o-qti-match-border-radius : $panel-border-radius !default;
$o-qti-textEntryInteraction-color : $text-color !default; $o-qti-textEntryInteraction-color : $text-color !default;
$o-qti-textEntryInteraction-bg : #fff !default; $o-qti-textEntryInteraction-bg : #fff !default;
$o-qti-textEntryInteraction-border-color : $o-qti-gap-border-color !default; $o-qti-textEntryInteraction-border-color : $o-qti-gap-border-color !default;
......
This diff is collapsed.
This diff is collapsed.
...@@ -672,27 +672,37 @@ tr.choiceinteraction { ...@@ -672,27 +672,37 @@ tr.choiceinteraction {
.o_match_dnd_sources { .o_match_dnd_sources {
padding: 10px 10px 0 10px; padding: 10px 10px 0 10px;
min-height: 60px; min-height: 60px;
border: 2px solid #eeeeee; border: 1px solid $o-qti-match-sources-border-color;
border-radius: $o-qti-match-border-radius;
background: $o-qti-match-sources-bg;
&.oo-accepted { &.oo-accepted {
border-color: $o-qti-match-drop-accept-border-color ; border-color: $o-qti-match-drop-accept-border-color;
} }
} }
.o_match_dnd_source { .o_match_dnd_source {
padding: 10px; padding: 10px;
margin-bottom: 10px; margin-bottom: 10px;
border: 2px solid $o-qti-gap-border-color; border: 2px $o-qti-match-source-border-style $o-qti-gap-border-color;
border-radius: $o-qti-match-border-radius;
background-color: #ffffff; background-color: #ffffff;
background: $o-qti-match-source-bg;
&.oo-selected { &.oo-selected {
border: 2px solid $o-qti-match-selected-border-color; border: 2px $o-qti-match-source-border-style $o-qti-match-selected-border-color;
background: $o-qti-match-selected-bg;
} }
&.oo-drag { &.oo-drag {
border: 2px solid $o-qti-match-drag-border-color !important; border: 2px $o-qti-match-source-border-style $o-qti-match-drag-border-color !important;
} }
cursor: move; /* fallback if grab cursor is unsupported */
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
} }
.source-bottom .o_match_dnd_source, .source-top .o_match_dnd_source { .source-bottom .o_match_dnd_source, .source-top .o_match_dnd_source {
...@@ -700,13 +710,16 @@ tr.choiceinteraction { ...@@ -700,13 +710,16 @@ tr.choiceinteraction {
} }
.o_match_dnd_targets .oo-accepted { .o_match_dnd_targets .oo-accepted {
border: 2px solid $o-qti-match-drop-accept-border-color ; border: 2px solid $o-qti-match-drop-accept-border-color;
border-radius: $o-qti-match-border-radius;
} }
.o_match_dnd_target { .o_match_dnd_target {
padding: 10px 10px 0 10px; padding: 10px 10px 0 10px;
margin: 0 0 10px 10px; margin: 0 0 10px 10px;
border: 2px solid $o-qti-gap-border-color; border: 2px solid $o-qti-match-target-border-color;
border-radius: $o-qti-match-border-radius;
background: $o-qti-match-target-bg;
.o_match_dnd_target_drop_zone { .o_match_dnd_target_drop_zone {
margin: 0; margin: 0;
...@@ -714,7 +727,7 @@ tr.choiceinteraction { ...@@ -714,7 +727,7 @@ tr.choiceinteraction {
min-height: 30px; min-height: 30px;
.o_match_dnd_source { .o_match_dnd_source {
border: 2px solid $o-qti-match-choosed-border-color; border: 2px $o-qti-match-source-border-style $o-qti-match-choosed-border-color;
} }
} }
} }
......
This diff is collapsed.
This diff is collapsed.
source diff could not be displayed: it is too large. Options to address this: view the blob.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment