mirror of
https://github.com/moodle/moodle.git
synced 2025-02-24 12:03:12 +01:00
MDL-82376 course_format: Remove the move icon in course index
* Remove the move icon in the course index * Make sure the mouse pointer change when able to drag and drop an item
This commit is contained in:
parent
d75652fd16
commit
f3803d66b4
@ -64,7 +64,6 @@
|
||||
<span class="courseindex-locked ms-1" data-for="cm_name">
|
||||
{{#pix}} t/locked, core {{/pix}}
|
||||
</span>
|
||||
<span class="dragicon ms-auto">{{#pix}}i/dragdrop{{/pix}}</span>
|
||||
{{/hasdelegatedsection}}
|
||||
{{#hasdelegatedsection}}
|
||||
{{#sectioninfo}}
|
||||
|
@ -105,7 +105,6 @@
|
||||
<span class="courseindex-locked ms-1" data-for="cm_name">
|
||||
{{#pix}} t/locked, core {{/pix}}
|
||||
</span>
|
||||
<span class="dragicon ms-auto">{{#pix}}i/dragdrop{{/pix}}</span>
|
||||
</div>
|
||||
<div id="courseindexcollapse{{number}}"
|
||||
class="courseindex-item-content collapse {{^indexcollapsed}}show{{/indexcollapsed}}"
|
||||
|
@ -30,6 +30,9 @@ $courseindex-item-current: $primary !default;
|
||||
color: $courseindex-link-hover-color;
|
||||
}
|
||||
}
|
||||
&.draggable {
|
||||
cursor: move;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -38546,6 +38546,9 @@ div.editor_atto_toolbar button .icon {
|
||||
.courseindex .courseindex-item:focus.dimmed .courseindex-chevron {
|
||||
color: black;
|
||||
}
|
||||
.courseindex .courseindex-item:hover.draggable, .courseindex .courseindex-item:focus.draggable {
|
||||
cursor: move;
|
||||
}
|
||||
.courseindex .courseindex-item.dragging {
|
||||
border: 1px solid #b8dce2;
|
||||
background-color: #e0f0f2;
|
||||
|
@ -38480,6 +38480,9 @@ div.editor_atto_toolbar button .icon {
|
||||
.courseindex .courseindex-item:focus.dimmed .courseindex-chevron {
|
||||
color: black;
|
||||
}
|
||||
.courseindex .courseindex-item:hover.draggable, .courseindex .courseindex-item:focus.draggable {
|
||||
cursor: move;
|
||||
}
|
||||
.courseindex .courseindex-item.dragging {
|
||||
border: 1px solid #b8dce2;
|
||||
background-color: #e0f0f2;
|
||||
|
Loading…
x
Reference in New Issue
Block a user