diff --git a/report/completion/index.php b/report/completion/index.php
index 20de8a7294c..03d2d456bad 100644
--- a/report/completion/index.php
+++ b/report/completion/index.php
@@ -156,9 +156,6 @@ if ($csv) {
echo $OUTPUT->header();
- $PAGE->requires->js('/report/completion/textrotate.js');
- $PAGE->requires->js_function_call('textrotate_init', null, true);
-
// Handle groups (if enabled)
groups_print_course_menu($course, $CFG->wwwroot.'/report/completion/?course='.$course->id);
}
@@ -417,13 +414,13 @@ if (!$csv) {
// Get criteria details
$details = $criterion->get_title_detailed();
print '
';
}
// Overall course completion status
print '';
}
diff --git a/report/completion/styles.css b/report/completion/styles.css
index 7973db42ab7..fc4a0028365 100644
--- a/report/completion/styles.css
+++ b/report/completion/styles.css
@@ -7,7 +7,32 @@
text-align: center;
list-style: none;
}
-/*rtl:ignore*/
-#page-report-completion-index #completion-progress th svg {
- direction: ltr;
+
+#page-report-completion-index .criterianame,
+#page-report-completion-index .criteriaicon,
+#page-report-completion-index .completion-progresscell {
+ text-align: center;
}
+
+/* Custom CSS for rotated header.. */
+#page-report-completion-index .rotated-text-container {
+ display: inline-block;
+ width: 16px;
+}
+
+/*rtl:begin:ignore*/
+#page-report-completion-index .rotated-text {
+ display: inline-block;
+ white-space: nowrap;
+
+ transform: translate(0, 100%) rotate(-90deg);
+ transform-origin: 0 0;
+ vertical-align: middle;
+}
+
+#page-report-completion-index .rotated-text:after {
+ content: "";
+ float: left;
+ margin-top: 100%;
+}
+/*rtl:end:ignore*/
\ No newline at end of file
diff --git a/report/completion/textrotate.js b/report/completion/textrotate.js
deleted file mode 100644
index e8bda96744f..00000000000
--- a/report/completion/textrotate.js
+++ /dev/null
@@ -1,72 +0,0 @@
-var SVGNS='http://www.w3.org/2000/svg',XLINKNS='http://www.w3.org/1999/xlink';
-
-function textrotate_make_svg(el)
-{
- var string=el.firstChild.nodeValue;
-
- // Add absolute-positioned string (to measure length)
- var abs=document.createElement('div');
- abs.appendChild(document.createTextNode(string));
- abs.style.position='absolute';
- document.body.appendChild(abs);
- var textWidth=abs.offsetWidth * 1.2,textHeight=abs.offsetHeight;
- document.body.removeChild(abs);
-
- // Create SVG
- var svg=document.createElementNS(SVGNS,'svg');
- svg.setAttribute('version','1.1');
- svg.setAttribute('width',20);
- svg.setAttribute('height',textWidth);
-
- // Add text
- var text=document.createElementNS(SVGNS,'text');
- svg.appendChild(text);
- text.setAttribute('x',textWidth);
- text.setAttribute('y',-textHeight/4);
- text.setAttribute('text-anchor','end');
- text.setAttribute('transform','rotate(90)');
-
- text.appendChild(document.createTextNode(string));
-
- // Is there an icon near the text?
- var icon=el.parentNode.firstChild;
- if(icon.nodeName.toLowerCase()=='img') {
- el.parentNode.removeChild(icon);
- var image=document.createElementNS(SVGNS,'image');
- var iconx=el.offsetHeight/4;
- if(iconx>width-16) iconx=width-16;
- image.setAttribute('x',iconx);
- image.setAttribute('y',textWidth+4);
- image.setAttribute('width',16);
- image.setAttribute('height',16);
- image.setAttributeNS(XLINKNS,'href',icon.src);
- svg.appendChild(image);
- }
-
- // Replace original content with this new SVG
- el.parentNode.insertBefore(svg,el);
- el.parentNode.removeChild(el);
-}
-
-function browser_supports_svg() {
- return document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure", "1.1");
-}
-
-function textrotate_init() {
- if (!browser_supports_svg()) {
- // Feature detect, else bail.
- return;
- }
-
-YUI().use('yui2-dom', function(Y) {
- var elements= Y.YUI2.util.Dom.getElementsByClassName('completion-criterianame', 'span');
- for(var i=0;i0) { // Only show CSV if there are
$PAGE->set_title($strcompletion);
$PAGE->set_heading($course->fullname);
echo $OUTPUT->header();
- $PAGE->requires->js('/report/progress/textrotate.js');
- $PAGE->requires->js_function_call('textrotate_init', null, true);
// Handle groups (if enabled)
groups_print_course_menu($course,$CFG->wwwroot.'/report/progress/?course='.$course->id);
@@ -323,13 +321,14 @@ foreach($activities as $activity) {
print $sep.csv_quote($displayname).$sep.csv_quote($datetext);
} else {
$shortenedname = shorten_text($displayname);
- print ''.
+ print ' |