It seems it might be useful to have permissions for editing skins per skin group.

For example, you might want to allow some users to edit general skins but not layout skins.

Comments

moonray’s picture

Status: Active » Closed (won't fix)

This one I'm a little more hesitant about than #1901664: Restrict skinr to specific themes.
This functionality is achievable through a hook_form_alter() that runs after skinr_ui_form_alter() and setting (for example)

<?php
$form['skinr_settings'][$theme->name]['groups']['GROUPNAME']['#access'] = FALSE;
?>

It's quite specific, though (not applicable to most users), so I would prefer this being done as described above.