Skip to content

Instantly share code, notes, and snippets.

@cdcharlebois
Created January 11, 2021 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdcharlebois/efc6c0cdaea08f3352c7fa43ceda7307 to your computer and use it in GitHub Desktop.
Save cdcharlebois/efc6c0cdaea08f3352c7fa43ceda7307 to your computer and use it in GitHub Desktop.
datagrid checkboxes
/* add the "dg-checkboxes" class to your data grid in studio pro */
.mx-datagrid.dg-checkboxes tbody tr:after{
color: red;
font-size: xx-large;
position: absolute;
left: -15px
}
.mx-datagrid.dg-checkboxes tbody tr.selected:after{
content:"";
}
.mx-datagrid.dg-checkboxes tbody tr:not(.selected):after{
content:"";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment