MDL-43994 Blocks: Hide the move icon when blocks are docked

This commit is contained in:
Andrew Nicols
2014-02-07 17:39:36 +08:00
parent 974c2cdc03
commit e14e17029c
3 changed files with 15 additions and 2 deletions
+7
View File
@@ -45,3 +45,10 @@ body.dir-rtl.has_dock {margin-left: 0px; margin-right: 30px}
/* Test span used to calculate positioning of docked item labels */
.transform-test-node { position:absolute;line-height:normal; }
/* Hide the move icon for blocks which are docked */
#dock .editing_move,
#dock .moodle-core-dragdrop-draghandle {
display: none;
}
+7 -1
View File
@@ -67,6 +67,12 @@ body.has_dock {
cursor: pointer;
}
}
.editing_move,
.moodle-core-dragdrop-draghandle {
display: none;
}
}
#dockeditempanel {
@@ -145,4 +151,4 @@ body.has_dock {
}
}
}
}
}
File diff suppressed because one or more lines are too long