clean up app management a bit
This commit is contained in:
parent
fd2379530c
commit
df8035344f
@ -620,11 +620,11 @@ function settings_content(&$a) {
|
||||
'$title' => t('Add application'),
|
||||
'$submit' => t('Submit'),
|
||||
'$cancel' => t('Cancel'),
|
||||
'$name' => array('name', t('Name'), '', ''),
|
||||
'$key' => array('key', t('Consumer Key'), '', ''),
|
||||
'$secret' => array('secret', t('Consumer Secret'), '', ''),
|
||||
'$redirect' => array('redirect', t('Redirect'), '', ''),
|
||||
'$icon' => array('icon', t('Icon url'), '', ''),
|
||||
'$name' => array('name', t('Name'), '', t('Name of application')),
|
||||
'$key' => array('key', t('Consumer Key'), random_string(16), t('Automatically generated - change if desired')),
|
||||
'$secret' => array('secret', t('Consumer Secret'), random_string(16), t('Automatically generated - change if desired')),
|
||||
'$redirect' => array('redirect', t('Redirect'), '', t('Redirect URI - leave blank unless your application specifically requires this')),
|
||||
'$icon' => array('icon', t('Icon url'), '', t('Optional')),
|
||||
));
|
||||
return $o;
|
||||
}
|
||||
|
@ -2602,6 +2602,10 @@ brain is weird like that */
|
||||
width: 48px; height: 48px;
|
||||
margin: 10px;
|
||||
}
|
||||
.oauthapp .icon {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.oauthapp img.noicon {
|
||||
background-image: url("../../../../images/icons/48/plugin.png");
|
||||
background-position: center center;
|
||||
@ -2627,6 +2631,7 @@ brain is weird like that */
|
||||
.block { background-position: -32px 0px;}
|
||||
.drop { background-position: -48px 0px;}
|
||||
.drophide { background-position: -64px 0px;}
|
||||
.delete { background-position: -64px 0px;}
|
||||
.edit { background-position: -80px 0px;}
|
||||
.camera { background-position: -96px 0px;}
|
||||
.dislike { background-position: -112px 0px;}
|
||||
|
Reference in New Issue
Block a user