Do not show move cursor for Collections that aren't sortable (fixes #624)

This commit is contained in:
Djamil Legato
2016-06-01 15:44:30 -07:00
parent 448a9f0147
commit 7b0e691090
4 changed files with 7 additions and 2 deletions

View File

@@ -22,6 +22,7 @@
* Only check for updates if not `admin.maintenance` or `admin.super` [#557](https://github.com/getgrav/grav-plugin-admin/issues/557)
* Always submit checkboxes that are not checked and force a 0 value [#616](https://github.com/getgrav/grav-plugin-admin/issues/616)
* Fix encoding in tooltips again [#622](https://github.com/getgrav/grav-plugin-admin/issues/622)
* Do not show `move` cursor for Collections that aren't sortable [#624](https://github.com/getgrav/grav-plugin-admin/issues/624)
# v1.1.0-beta.5
## 05/23/2016

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -446,6 +446,10 @@ textarea.frontmatter {
}
}
}
&[data-collection-nosort] > li {
cursor: default;
}
}
.collection-actions {