Skip to content

Commit

Permalink
MINOR Fixing display of tree checkboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
chillu committed Apr 18, 2012
1 parent 14895a2 commit 1408198
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions admin/css/screen.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions admin/scss/_tree.scss
Expand Up @@ -610,9 +610,15 @@ li.class-ErrorPage > a .jstree-pageicon {
visibility: hidden; // enabled by JS to avoid layout glitches

&.multiple {
// Hide draggable icon when multiselect is enabled
li > a > .jstree-icon {
display: none;
li > a {
// Hide draggable icon when multiselect is enabled
& > .jstree-icon {
display: none;
}
// But show the checkbox
& > .jstree-icon.jstree-checkbox {
display: inline-block;
}
}

li#record-0 {
Expand Down

0 comments on commit 1408198

Please sign in to comment.