Partial implementation of detailed node info (changed button text to "Open" and styled a bit): http://issues.umbraco.org/issue/U4-5764

This commit is contained in:
Nicholas-Westby
2015-11-04 22:25:37 -08:00
parent e5d7f6fd04
commit 5ed4f262cd
3 changed files with 11 additions and 2 deletions

View File

@@ -40,8 +40,16 @@
padding: 10px;
}
.umb-contentpicker small a {
.umb-contentpicker small {
&:not(:last-child) {
padding-right: 3px;
border-right: 1px solid @grayMed;
}
a {
color: @gray;
}
}
/* CODEMIRROR DATATYPE */

View File

@@ -14,6 +14,7 @@
@grayDarker: #222;
@grayDark: #343434;
@gray: #555;
@grayMed: #999;
@grayLight: #d9d9d9;
@grayLighter: #f8f8f8;
@white: #fff;

View File

@@ -17,7 +17,7 @@
</a>
<div ng-if="!dialogEditor">
<small><a href ng-click="showNode($index)"><localize key="view">View</localize></a></small>
<small><a href ng-click="showNode($index)"><localize key="open">Open</localize></a></small>
<small ng-if="model.config.showEditButton"><a href umb-launch-mini-editor="node"><localize key="edit">Edit</localize></a></small>
</div>
</li>