MDL-65448 core_course: Restyle non-JS activity moving.

This commit is contained in:
Luca Bösch 2020-02-15 17:43:55 +01:00
parent 3370b20e3c
commit 91557080d7
4 changed files with 31 additions and 3 deletions

View file

@ -1004,7 +1004,6 @@ class core_course_renderer extends plugin_renderer_base {
// check if we are currently in the process of moving a module with JavaScript disabled
$ismoving = $this->page->user_is_editing() && ismoving($course->id);
if ($ismoving) {
$movingpix = new pix_icon('movehere', get_string('movehere'), 'moodle', array('class' => 'movetarget'));
$strmovefull = strip_tags(get_string("movefull", "", "'$USER->activitycopyname'"));
}
@ -1032,7 +1031,7 @@ class core_course_renderer extends plugin_renderer_base {
if ($ismoving) {
$movingurl = new moodle_url('/course/mod.php', array('moveto' => $modnumber, 'sesskey' => sesskey()));
$sectionoutput .= html_writer::tag('li',
html_writer::link($movingurl, $this->output->render($movingpix), array('title' => $strmovefull)),
html_writer::link($movingurl, '', array('title' => $strmovefull, 'class' => 'movehere')),
array('class' => 'movehere'));
}
@ -1042,7 +1041,7 @@ class core_course_renderer extends plugin_renderer_base {
if ($ismoving) {
$movingurl = new moodle_url('/course/mod.php', array('movetosection' => $section->id, 'sesskey' => sesskey()));
$sectionoutput .= html_writer::tag('li',
html_writer::link($movingurl, $this->output->render($movingpix), array('title' => $strmovefull)),
html_writer::link($movingurl, '', array('title' => $strmovefull, 'class' => 'movehere')),
array('class' => 'movehere'));
}
}

View file

@ -219,6 +219,17 @@ div.dropdown-item {
padding: 0;
}
section a.movehere,
.section li.movehere a.movehere {
outline: 0;
box-shadow: $input-btn-focus-box-shadow;
}
.editing .course-content .hidden.sectionname {
visibility: hidden;
display: initial;
}
.inline,
.inline-list li {
display: inline;

View file

@ -9840,6 +9840,15 @@ div.dropdown-item:focus-within {
margin: 0;
padding: 0; }
section a.movehere,
.section li.movehere a.movehere {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(17, 119, 209, 0.75); }
.editing .course-content .hidden.sectionname {
visibility: hidden;
display: initial; }
.inline,
.inline-list li {
display: inline; }

View file

@ -10044,6 +10044,15 @@ div.dropdown-item:focus-within {
margin: 0;
padding: 0; }
section a.movehere,
.section li.movehere a.movehere {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(17, 119, 209, 0.75); }
.editing .course-content .hidden.sectionname {
visibility: hidden;
display: initial; }
.inline,
.inline-list li {
display: inline; }