Commit 2255b5c8 by Chris Rodriguez

AC-552 word cloud accessibility updates

parent a81b3b36
...@@ -188,6 +188,39 @@ ...@@ -188,6 +188,39 @@
} }
} }
// LMS-style CAPA button for consistency with LMS buttons
%btn-lms-style {
border: 1px solid $btn-lms-border;
border-radius: 3px;
box-shadow: inset 0 1px 0 0 $white;
color: $gray-d3;
display: inline-block;
font-size: inherit;
font-weight: bold;
background-color: $btn-lms-background;
background-image: -webkit-linear-gradient($btn-lms-background,$btn-lms-gradient);
background-image: linear-gradient($btn-lms-background,$btn-lms-gradient);
padding: 7px 18px;
text-decoration: none;
text-shadow: 0 1px 0 $btn-lms-shadow;
background-clip: padding-box;
font-size: 0.8125em;
&:focus,
&:hover {
box-shadow: inset 0 1px 0 0 $btn-lms-shadow-hover;
cursor: pointer;
background-color: $btn-lms-background-hover;
background-image: -webkit-linear-gradient($btn-lms-background-hover,$btn-lms-gradient-hover);
background-image: linear-gradient($btn-lms-background-hover,$btn-lms-gradient-hover);
}
&:active {
border: 1px solid $btn-lms-border;
box-shadow: inset 0 0 8px 4px $btn-lms-shadow-active,inset 0 0 8px 4px $btn-lms-shadow-active;
}
}
// +Button Element // +Button Element
// ==================== // ====================
.button { .button {
......
...@@ -248,6 +248,15 @@ ...@@ -248,6 +248,15 @@
color: $color-visibility-set; color: $color-visibility-set;
} }
} }
.action {
.save {
// taking styles from LMS for these Save buttons to maintain consistency
// there is no studio-specific style for these LMS-styled buttons
@extend %btn-lms-style;
}
}
} }
// +Messaging - Xblocks // +Messaging - Xblocks
......
...@@ -82,6 +82,17 @@ $gray-d2: shade($gray,40%); ...@@ -82,6 +82,17 @@ $gray-d2: shade($gray,40%);
$gray-d3: shade($gray,60%); $gray-d3: shade($gray,60%);
$gray-d4: shade($gray,80%); $gray-d4: shade($gray,80%);
// These define button styles similar to LMS
// The goal here is consistency (until we can overhaul all of this...)
$btn-lms-border: #d2c9c9;
$btn-lms-background: #f1f1f1;
$btn-lms-gradient: #d9d1d1;
$btn-lms-shadow: #fcfbfb;
$btn-lms-shadow-hover: #fefefe;
$btn-lms-background-hover: #e4e4e4;
$btn-lms-gradient-hover: #d1c9c9;
$btn-lms-shadow-active: #cac2c2;
$blue: rgb(0, 159, 230); $blue: rgb(0, 159, 230);
$blue-l1: tint($blue,20%); $blue-l1: tint($blue,20%);
$blue-l2: tint($blue,40%); $blue-l2: tint($blue,40%);
......
...@@ -10,12 +10,15 @@ ...@@ -10,12 +10,15 @@
.result_cloud_section.active { .result_cloud_section.active {
display: block; display: block;
width: 635px; width: 100%;
height: auto; height: auto;
margin-left: auto; margin-top: 1em;
margin-right: auto;
h3 {
font-size: 100%;
}
} }
.your_words{ .your_words{
font-size: 0.85em; font-size: 0.85em;
display: block; display: block;
} }
\ No newline at end of file
...@@ -37,20 +37,25 @@ class WordCloudFields(object): ...@@ -37,20 +37,25 @@ class WordCloudFields(object):
"""XFields for word cloud.""" """XFields for word cloud."""
display_name = String( display_name = String(
display_name=_("Display Name"), display_name=_("Display Name"),
help=_("Display name for this module"), help=_("The label for this word cloud on the course page."),
scope=Scope.settings, scope=Scope.settings,
default="Word cloud" default="Word cloud"
) )
instructions = String(
display_name=_("Instructions"),
help=_("Add instructions to help learners understand how to use the word cloud. Clear instructions are important, especially for learners who have accessibility requirements."), # nopep8 pylint: disable=C0301
scope=Scope.settings,
)
num_inputs = Integer( num_inputs = Integer(
display_name=_("Inputs"), display_name=_("Inputs"),
help=_("Number of text boxes available for students to input words/sentences."), help=_("The number of text boxes available for learners to add words and sentences."),
scope=Scope.settings, scope=Scope.settings,
default=5, default=5,
values={"min": 1} values={"min": 1}
) )
num_top_words = Integer( num_top_words = Integer(
display_name=_("Maximum Words"), display_name=_("Maximum Words"),
help=_("Maximum number of words to be displayed in generated word cloud."), help=_("The maximum number of words displayed in the generated word cloud."),
scope=Scope.settings, scope=Scope.settings,
default=250, default=250,
values={"min": 1} values={"min": 1}
...@@ -64,7 +69,7 @@ class WordCloudFields(object): ...@@ -64,7 +69,7 @@ class WordCloudFields(object):
# Fields for descriptor. # Fields for descriptor.
submitted = Boolean( submitted = Boolean(
help=_("Whether this student has posted words to the cloud."), help=_("Whether this learner has posted words to the cloud."),
scope=Scope.user_state, scope=Scope.user_state,
default=False default=False
) )
...@@ -74,7 +79,7 @@ class WordCloudFields(object): ...@@ -74,7 +79,7 @@ class WordCloudFields(object):
default=[] default=[]
) )
all_words = Dict( all_words = Dict(
help=_("All possible words from all students."), help=_("All possible words from all learners."),
scope=Scope.user_state_summary scope=Scope.user_state_summary
) )
top_words = Dict( top_words = Dict(
...@@ -235,11 +240,14 @@ class WordCloudModule(WordCloudFields, XModule): ...@@ -235,11 +240,14 @@ class WordCloudModule(WordCloudFields, XModule):
def get_html(self): def get_html(self):
"""Template rendering.""" """Template rendering."""
context = { context = {
'element_id': self.location.html_id(),
'element_class': self.location.category,
'ajax_url': self.system.ajax_url, 'ajax_url': self.system.ajax_url,
'display_name': self.display_name,
'display_name_default': WordCloudFields.display_name.default,
'instructions': self.instructions,
'element_class': self.location.category,
'element_id': self.location.html_id(),
'num_inputs': self.num_inputs, 'num_inputs': self.num_inputs,
'submitted': self.submitted 'submitted': self.submitted,
} }
self.content = self.system.render_template('word_cloud.html', context) self.content = self.system.render_template('word_cloud.html', context)
return self.content return self.content
......
...@@ -942,8 +942,8 @@ class SpecialExamsPageAttemptsSection(PageObject): ...@@ -942,8 +942,8 @@ class SpecialExamsPageAttemptsSection(PageObject):
Clicks the "x" to remove the Student's attempt. Clicks the "x" to remove the Student's attempt.
""" """
with self.handle_alert(confirm=True): with self.handle_alert(confirm=True):
self.q(css="a.remove-attempt").first.click() self.q(css=".remove-attempt").first.click()
self.wait_for_element_absence("a.remove-attempt", "exam attempt") self.wait_for_element_absence(".remove-attempt", "exam attempt")
class DataDownloadPage(PageObject): class DataDownloadPage(PageObject):
......
...@@ -20,7 +20,7 @@ def view_word_cloud(_step): ...@@ -20,7 +20,7 @@ def view_word_cloud(_step):
@step('I press the Save button') @step('I press the Save button')
def press_the_save_button(_step): def press_the_save_button(_step):
button_css = '.input_cloud_section input.save' button_css = '.input_cloud_section .save'
world.css_click(button_css) world.css_click(button_css)
......
...@@ -241,14 +241,16 @@ class TestWordCloud(BaseTestXmodule): ...@@ -241,14 +241,16 @@ class TestWordCloud(BaseTestXmodule):
) )
def test_word_cloud_constructor(self): def test_word_cloud_constructor(self):
"""Make sure that all parameters extracted correclty from xml""" """Make sure that all parameters extracted correctly from xml"""
fragment = self.runtime.render(self.item_descriptor, STUDENT_VIEW) fragment = self.runtime.render(self.item_descriptor, STUDENT_VIEW)
expected_context = { expected_context = {
'ajax_url': self.item_descriptor.xmodule_runtime.ajax_url, 'ajax_url': self.item_descriptor.xmodule_runtime.ajax_url,
'display_name': self.item_descriptor.display_name,
'display_name_default': 'Word cloud',
'instructions': self.item_descriptor.instructions,
'element_class': self.item_descriptor.location.category, 'element_class': self.item_descriptor.location.category,
'element_id': self.item_descriptor.location.html_id(), 'element_id': self.item_descriptor.location.html_id(),
'num_inputs': 5, # default value 'num_inputs': 5, # default value
'submitted': False # default value 'submitted': False, # default value
} }
self.assertEqual(fragment.content, self.runtime.render_template('word_cloud.html', expected_context)) self.assertEqual(fragment.content, self.runtime.render_template('word_cloud.html', expected_context))
<%page expression_filter="h"/>
<%! from django.utils.translation import ugettext as _ %> <%! from django.utils.translation import ugettext as _ %>
<section <div
id="word_cloud_${element_id}" id="word_cloud_${element_id}"
class="${element_class}" class="${element_class}"
data-ajax-url="${ajax_url}" data-ajax-url="${ajax_url}"
> >
<section class="input_cloud_section"> % if display_name:
<h3 class="hd hd-3" id="word_cloud_${element_id}_heading">${display_name}</h3>
% endif
% if instructions is not None:
<div class="input_cloud_section" role="group" aria-labelledby="word_cloud_${element_id}_instructions">
% elif display_name:
<div class="input_cloud_section" role="group" aria-labelledby="word_cloud_${element_id}_heading">
% else:
<div class="input_cloud_section" role="group">
% endif
% if instructions is not None:
<div class="input_cloud_instructions" id="word_cloud_${element_id}_instructions">
${instructions}
</div>
% endif
% for row in range(num_inputs): % for row in range(num_inputs):
<input <label>
class="input-cloud" <span class="sr">${_('{num} of {total}').format(num=row+1, total=num_inputs)}</span>
${'style="display: none;"' if submitted else ''} <input
type="text" class="input-cloud"
size="40" ${'style="display: none;"' if submitted else ''}
/> type="text"
size="40"
/>
</label>
% endfor % endfor
<section class="action"> <div class="action">
<input class="save" type="button" value="${_('Save')}" /> <button class="save" type="button">${_('Save')}</button>
</section> </div>
</section> </div>
<section id="result_cloud_section_${element_id}" class="result_cloud_section"> <div id="result_cloud_section_${element_id}" class="result_cloud_section">
<h3>${_('Your words:')} <span class="your_words"></span></h3>
<h3>${_('Total number of words:')} <span class="total_num_words"></span></h3>
<div class="word_cloud"></div> <div class="word_cloud"></div>
</section> <p class="total_num_words"></p>
<p>${_('Your words were:')}</p>
<ul class="your_words"></ul>
</div>
</section> </div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment