diff --git a/common/lib/capa/capa/templates/choicegroup.html b/common/lib/capa/capa/templates/choicegroup.html index 106694ea4a..ce1b6d9476 100644 --- a/common/lib/capa/capa/templates/choicegroup.html +++ b/common/lib/capa/capa/templates/choicegroup.html @@ -1,13 +1,15 @@
- % if state == 'unsubmitted': - - % elif state == 'correct': - - % elif state == 'incorrect': - - % elif state == 'incomplete': - - % endif +
+ % if state == 'unsubmitted': + + % elif state == 'correct': + + % elif state == 'incorrect': + + % elif state == 'incomplete': + + % endif +
% for choice_id, choice_description in choices: diff --git a/common/lib/xmodule/xmodule/css/capa/display.scss b/common/lib/xmodule/xmodule/css/capa/display.scss index 12046587a3..df2058dbbe 100644 --- a/common/lib/xmodule/xmodule/css/capa/display.scss +++ b/common/lib/xmodule/xmodule/css/capa/display.scss @@ -38,22 +38,27 @@ section.problem { .choicegroup { @include clearfix; - label.choicegroup_correct:after { - content: url('../images/correct-icon.png'); + label.choicegroup_correct{ + text:after{ + content: url('../images/correct-icon.png'); + } } - > span { - padding-right: 20px; + min-width:100px; + width: auto !important; + width: 100px; + + .indicator_container { float: left; - background-position: 0 0 !important; + width: 25px; + margin-right: 15px; } fieldset { @include box-sizing(border-box); - float: left; border-left: 1px solid #ddd; padding-left: 20px; - margin: 20px 0; + margin: 0px 0px 20px; } input[type="radio"], diff --git a/run_watch_data.py b/run_watch_data.py index c6cdd4f0df..ff653cfa37 100755 --- a/run_watch_data.py +++ b/run_watch_data.py @@ -17,7 +17,7 @@ from watchdog.events import LoggingEventHandler, FileSystemEventHandler # watch fewer or more extensions, you can change EXTENSIONS. To watch all # extensions, add "*" to EXTENSIONS. -WATCH_DIRS = ["../data", "common/lib/xmodule/xmodule/js"] +WATCH_DIRS = ["../data", "common/lib/xmodule/xmodule/js", "common/lib/xmodule/xmodule/css"] EXTENSIONS = ["*", "xml", "js", "css", "coffee", "scss", "html"] WATCH_DIRS = [os.path.abspath(os.path.normpath(dir)) for dir in WATCH_DIRS]