Merge branch 'temp-maurice' of https://github.com/umbraco/Umbraco-CMS into temp-maurice
This commit is contained in:
+12
@@ -31,6 +31,18 @@ angular.module("umbraco.directives")
|
||||
},
|
||||
{
|
||||
name: "Finnish"
|
||||
},
|
||||
{
|
||||
name: "Albanian"
|
||||
},
|
||||
{
|
||||
name: "Russian"
|
||||
},
|
||||
{
|
||||
name: "Norwegian"
|
||||
},
|
||||
{
|
||||
name: "Swedish"
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
@@ -105,6 +105,9 @@
|
||||
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
|
||||
max-height: 165px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<div class="umb-panel umb-editor-wrapper animated -half-second fadeIn"
|
||||
<div class="umb-panel umb-editor-wrapper"
|
||||
ng-class="{
|
||||
'-no-footer': footer === 'false'
|
||||
}"
|
||||
|
||||
@@ -19,15 +19,18 @@
|
||||
</div>
|
||||
|
||||
<div class="umb-property-editor__dropdown shadow-depth-2" ng-if="showDropdown" on-outside-click="closeDropdown()">
|
||||
|
||||
<div class="umb-property-editor__dropdown-item">
|
||||
<a class="umb-property-editor__dropdown-link -sync-off" ng-click="editContent()" href="">
|
||||
<i class="icon-edit"></i>Edit content
|
||||
</a>
|
||||
</div>
|
||||
<div class="umb-property-editor__dropdown-filter">
|
||||
<input type="search"class="-full-width-input" placeholder="Search for variants" ng-model="searchTerm" umb-auto-focus>
|
||||
</div>
|
||||
|
||||
<ul class="umb-property-editor__dropdown-items">
|
||||
<li class="umb-property-editor__dropdown-item">
|
||||
<a class="umb-property-editor__dropdown-link -sync-off" ng-click="editContent()" href="">
|
||||
<i class="icon-edit"></i>Edit content
|
||||
</a>
|
||||
</li>
|
||||
<li class="umb-property-editor__dropdown-filter">
|
||||
<input type="search"class="-full-width-input" placeholder="Search for variants" ng-model="searchTerm" umb-auto-focus>
|
||||
</li>
|
||||
|
||||
<li class="umb-property-editor__dropdown-item" ng-repeat="variation in variations | filter:searchTerm">
|
||||
<a class="umb-property-editor__dropdown-link" ng-click="syncContent(variation)" href="">{{ variation.name }}</a>
|
||||
</li>
|
||||
|
||||
Reference in New Issue
Block a user