Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix Root Group clickable.
Browse files Browse the repository at this point in the history
Replace icon-edit by mdi-pencil in some places.
  • Loading branch information
cdujeu committed Oct 13, 2016
1 parent c9f6c40 commit 7418f5f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/plugins/access.ajxp_conf/ajxp_confActions.xml
Expand Up @@ -42,7 +42,7 @@
</processing>
</action>
<action name="edit" fileDefault="true">
<gui text="ajxp_conf.93" title="301" iconClass="icon-edit" src="edit.png" accessKey="edit_access_key" hasAccessKey="true">
<gui text="ajxp_conf.93" title="301" iconClass="mdi mdi-pencil" src="edit.png" accessKey="edit_access_key" hasAccessKey="true">
<context selection="true" dir="" recycle="hidden"
actionBar="true" contextMenu="true" infoPanel="true"
actionBarGroup="get" inZip="false">
Expand Down
1 change: 1 addition & 0 deletions core/src/plugins/access.ajxp_conf/src/UsersManager.php
Expand Up @@ -864,6 +864,7 @@ public function listNodes(ServerRequestInterface $requestInterface, $rootPath, $
$topMeta = $this->serializeGroupMetadata("/", $messages["ajxp_conf.151"]);
$topMeta["icon_class"] = "icon-home";
$rootGroupNode = new AJXP_Node($fullBasePath ."/", $topMeta);
$rootGroupNode->setLeaf(true);
$nodesList->addBranch($rootGroupNode);

}
Expand Down
2 changes: 1 addition & 1 deletion core/src/plugins/action.scheduler/manifest.xml
Expand Up @@ -230,7 +230,7 @@
</processing>
</action>
<action name="scheduler_editTask">
<gui text="action.scheduler.10" title="action.scheduler.11" iconClass="icon-edit" src="scheduler/ICON_SIZE/task.png" hasAccessKey="false">
<gui text="action.scheduler.10" title="action.scheduler.11" iconClass="mdi mdi-pencil" src="scheduler/ICON_SIZE/task.png" hasAccessKey="false">
<context selection="true" dir="" recycle="hidden" allowedMimes="scheduler_zone"
actionBar="true" contextMenu="true" infoPanel="true"
actionBarGroup="get"/>
Expand Down
Expand Up @@ -261,4 +261,16 @@

.mdi-account-switch:before {
content: "\f118";
}

.mdi-pencil:before {
content: "\f4da";
}

.mdi-pencil-box:before {
content: "\f4db";
}

.mdi-pencil-box-outline:before {
content: "\f4dc";
}

0 comments on commit 7418f5f

Please sign in to comment.