MDL-65448 block_social_activities: Restyle moving.
This commit is contained in:
@@ -83,7 +83,6 @@ class block_social_activities extends block_list {
|
||||
$section = $modinfo->get_section_info(0);
|
||||
|
||||
if ($ismoving) {
|
||||
$strmovehere = get_string('movehere');
|
||||
$strmovefull = strip_tags(get_string('movefull', '', "'$USER->activitycopyname'"));
|
||||
$strcancel= get_string('cancel');
|
||||
} else {
|
||||
@@ -92,7 +91,8 @@ class block_social_activities extends block_list {
|
||||
|
||||
if ($ismoving) {
|
||||
$this->content->icons[] = ' ' . $OUTPUT->pix_icon('t/move', get_string('move'));
|
||||
$this->content->items[] = $USER->activitycopyname.' (<a href="'.$CFG->wwwroot.'/course/mod.php?cancelcopy=true&sesskey='.sesskey().'">'.$strcancel.'</a>)';
|
||||
$cancelurl = new moodle_url('/course/mod.php', array('cancelcopy' => 'true', 'sesskey' => sesskey()));
|
||||
$this->content->items[] = $USER->activitycopyname . ' (<a href="' . $cancelurl . '">' . $strcancel . '</a>)';
|
||||
}
|
||||
|
||||
if (!empty($modinfo->sections[0])) {
|
||||
@@ -123,8 +123,9 @@ class block_social_activities extends block_list {
|
||||
if ($mod->id == $USER->activitycopy) {
|
||||
continue;
|
||||
}
|
||||
$this->content->items[] = '<a title="'.$strmovefull.'" href="'.$CFG->wwwroot.'/course/mod.php?moveto='.$mod->id.'&sesskey='.sesskey().'">'.
|
||||
'<img style="height:16px; width:80px; border:0px" src="'.$OUTPUT->image_url('movehere') . '" alt="'.$strmovehere.'" /></a>';
|
||||
$movingurl = new moodle_url('/course/mod.php', array('moveto' => $mod->id, 'sesskey' => sesskey()));
|
||||
$this->content->items[] = html_writer::link($movingurl, '', array('title' => $strmovefull,
|
||||
'class' => 'movehere'));
|
||||
$this->content->icons[] = '';
|
||||
}
|
||||
if (!$mod->url) {
|
||||
@@ -140,8 +141,8 @@ class block_social_activities extends block_list {
|
||||
}
|
||||
|
||||
if ($ismoving) {
|
||||
$this->content->items[] = '<a title="'.$strmovefull.'" href="'.$CFG->wwwroot.'/course/mod.php?movetosection='.$section->id.'&sesskey='.sesskey().'">'.
|
||||
'<img style="height:16px; width:80px; border:0px" src="'.$OUTPUT->image_url('movehere') . '" alt="'.$strmovehere.'" /></a>';
|
||||
$movingurl = new moodle_url('/course/mod.php', array('movetosection' => $section->id, 'sesskey' => sesskey()));
|
||||
$this->content->items[] = html_writer::link($movingurl, '', array('title' => $strmovefull, 'class' => 'movehere'));
|
||||
$this->content->icons[] = '';
|
||||
}
|
||||
|
||||
|
||||
@@ -276,6 +276,17 @@
|
||||
padding-left: 24px;
|
||||
}
|
||||
|
||||
td.movehere {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
td.movehere a.movehere {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 2rem;
|
||||
border: 2px dashed $brand-primary;
|
||||
}
|
||||
|
||||
.category input[type="text"],
|
||||
.category .column-range,
|
||||
.categoryitem,
|
||||
|
||||
@@ -18360,6 +18360,15 @@ p.arrow_button {
|
||||
.path-grade-edit-tree .setup-grades td.column-name {
|
||||
padding-left: 24px; }
|
||||
|
||||
.path-grade-edit-tree .setup-grades td.movehere {
|
||||
padding: 0; }
|
||||
|
||||
.path-grade-edit-tree .setup-grades td.movehere a.movehere {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 2rem;
|
||||
border: 2px dashed #1177d1; }
|
||||
|
||||
.path-grade-edit-tree .setup-grades .category input[type="text"],
|
||||
.path-grade-edit-tree .setup-grades .category .column-range,
|
||||
.path-grade-edit-tree .setup-grades .categoryitem,
|
||||
|
||||
@@ -18592,6 +18592,15 @@ p.arrow_button {
|
||||
.path-grade-edit-tree .setup-grades td.column-name {
|
||||
padding-left: 24px; }
|
||||
|
||||
.path-grade-edit-tree .setup-grades td.movehere {
|
||||
padding: 0; }
|
||||
|
||||
.path-grade-edit-tree .setup-grades td.movehere a.movehere {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 2rem;
|
||||
border: 2px dashed #1177d1; }
|
||||
|
||||
.path-grade-edit-tree .setup-grades .category input[type="text"],
|
||||
.path-grade-edit-tree .setup-grades .category .column-range,
|
||||
.path-grade-edit-tree .setup-grades .categoryitem,
|
||||
|
||||
Reference in New Issue
Block a user