Skip to content

Commit 890fe58

Browse files
committed
Merge remote-tracking branch 'origin/v8/8.17' into v9/dev
# Conflicts: # src/Umbraco.Web.UI.Client/src/views/components/content/umb-tabbed-content.html # src/Umbraco.Web.UI.Client/src/views/components/elementeditor/umb-element-editor-content.component.html # src/Umbraco.Web.UI.Client/src/views/media/apps/content/content.html # src/Umbraco.Web.UI.Client/src/views/member/apps/content/content.html # src/Umbraco.Web/PropertyEditors/NestedContentController.cs
2 parents 4edf29e + e269d1b commit 890fe58

File tree

9 files changed

+29
-24
lines changed

9 files changed

+29
-24
lines changed

src/Umbraco.Web.UI.Client/src/less/components/prevalues/multivalues.less

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@
4545

4646
&.ui-sortable-handle,
4747
.ui-sortable-handle,
48-
.handle
49-
{
48+
.handle {
5049
cursor: move;
5150
}
5251

53-
i {
52+
.umb-icon,
53+
i.icon {
5454
display: flex;
55-
align-items: center;
56-
margin-right: 5px
55+
align-self: center;
56+
margin-right: 5px;
5757
}
5858

5959
a {

src/Umbraco.Web.UI.Client/src/less/components/umb-form-check.less

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@
9797

9898
.icon,
9999
.umb-icon {
100-
font-size: 1.2rem;
100+
font-size: 0.9rem;
101+
line-height: 1;
101102
}
102103

103104
&__state {
@@ -110,6 +111,8 @@
110111

111112
&__check {
112113
display: flex;
114+
align-items: center;
115+
justify-content: center;
113116
position: relative;
114117
background: @white;
115118
border: 1px solid @inputBorder;

src/Umbraco.Web.UI.Client/src/less/components/umb-grid.less

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -565,12 +565,11 @@
565565
// ICONS
566566
// -------------------------
567567
.umb-grid .iconBox {
568-
padding: 4px 6px;
569-
display: inline-block;
570-
cursor: pointer;
568+
padding: 6px;
569+
display: flex;
571570
border-radius: 200px;
572571
border: 1px solid @ui-action-discreet-border;
573-
margin: 2px;
572+
margin: 0 auto;
574573

575574
&:hover, &:hover * {
576575
background: @ui-action-discreet-type-hover !important;
@@ -599,8 +598,6 @@
599598
-webkit-appearance: none;
600599
background-image: linear-gradient(to bottom,@gray-9,@gray-7);
601600
background-repeat: repeat-x;
602-
zoom: 1;
603-
border-color: @gray-7 @gray-7 @gray-6;
604601
border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
605602
box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
606603
border-radius: 3px;

src/Umbraco.Web.UI.Client/src/views/components/content/umb-tabbed-content.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
data-app-anchor="{{group.id}}"
3030
data-element="group-{{group.alias}}"
3131
ng-repeat="group in content.tabs track by group.key"
32-
ng-show="(group.parentAlias === activeTabAlias && group.type === 'Group') || tabs.length === 0">
32+
ng-if="group.type === 'Group'"
33+
ng-show="group.parentAlias === activeTabAlias || tabs.length === 0">
3334

3435
<div class="umb-group-panel__header">
3536
<div id="group-{{group.id}}">{{ group.label }}</div>

src/Umbraco.Web.UI.Client/src/views/components/elementeditor/umb-element-editor-content.component.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
<div class="umb-group-panel"
3030
data-element="group-{{group.alias}}"
3131
ng-repeat="group in vm.model.variants[0].tabs track by group.key"
32-
ng-show="(group.parentAlias === vm.activeTabAlias && group.type === 'Group') || vm.tabs.length === 0">
32+
ng-if="group.type === 'Group'"
33+
ng-show="group.parentAlias === vm.activeTabAlias || vm.tabs.length === 0">
3334

3435
<div class="umb-group-panel__header">
3536
<div id="group-{{group.id}}">{{ group.label }}</div>

src/Umbraco.Web.UI.Client/src/views/media/apps/content/content.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="form-horizontal" ng-controller="Umbraco.Editors.Media.Apps.ContentController as vm">
2-
2+
33
<umb-editor-tab-bar ng-if="vm.tabs.length > 0">
44
<umb-tabs-nav tabs="vm.tabs" on-tab-change="vm.setActiveTab(tab)"></umb-tabs-nav>
55
</umb-editor-tab-bar>
@@ -16,12 +16,13 @@
1616
</umb-property>
1717
</umb-box-content>
1818
</umb-box>
19-
20-
<div
19+
20+
<div
2121
class="umb-group-panel"
2222
data-element="group-{{group.alias}}"
2323
ng-repeat="group in content.tabs | filter: { hide : '!' + true } track by group.id"
24-
ng-show="(group.parentAlias === vm.activeTabAlias && group.type === 'Group') || vm.tabs.length === 0">
24+
ng-if="group.type === 'Group'"
25+
ng-show="group.parentAlias === vm.activeTabAlias || vm.tabs.length === 0">
2526

2627
<div class="umb-group-panel__header">
2728
<div>{{ group.label }}</div>

src/Umbraco.Web.UI.Client/src/views/member/apps/content/content.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,21 @@
1717
</umb-box-content>
1818
</umb-box>
1919

20-
<div
20+
<div
2121
class="umb-group-panel"
2222
data-element="group-{{group.alias}}"
2323
ng-repeat="group in content.tabs"
24-
ng-show="(group.parentAlias === vm.activeTabAlias && group.type === 'Group') || vm.tabs.length === 0">
24+
ng-if="group.type === 'Group'"
25+
ng-show="group.parentAlias === vm.activeTabAlias || vm.tabs.length === 0">
2526

2627
<div class="umb-group-panel__header">
2728
<div>{{ group.label }}</div>
2829
</div>
2930

3031
<div class="umb-group-panel__content" data-element="tab-content-{{group.type === 'Group' ? group.parentAlias : group.alias}}">
31-
<umb-property
32-
data-element="property-{{group.alias}}"
33-
ng-repeat="property in group.properties | filter:vm.hideSystemProperties track by property.alias"
32+
<umb-property
33+
data-element="property-{{group.alias}}"
34+
ng-repeat="property in group.properties | filter:vm.hideSystemProperties track by property.alias"
3435
property="property">
3536

3637
<umb-property-editor model="property"></umb-property-editor>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<input name="hidden" type="hidden" ng-model="model.value" name="{{model.alias}}" />
1+
<input name="hidden" type="hidden" ng-model="model.value" id="{{model.alias}}" />

src/Umbraco.Web.UI/umbraco/config/lang/nl.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2337,6 +2337,7 @@ Echter, Runway biedt een gemakkelijke basis om je snel op weg te helpen. Als je
23372337
<key alias="confirmCancelBlockCreationMessage"><![CDATA[Ben je zeker dat je deze wijzigingen wil verwerpen?]]></key>
23382338
<key alias="elementTypeDoesNotExistHeadline">Fout!</key>
23392339
<key alias="elementTypeDoesNotExistDescription">Het Elementtype van dit blok bestaat niet meer</key>
2340+
<key alias="addBlock">Inhoud toevoegen</key>
23402341
<key alias="propertyEditorNotSupported">Eigenschap '%0%' gebruikt editor '%1%' die niet ondersteund wordt in blokken.</key>
23412342
</area>
23422343
<area alias="contentTemplatesDashboard">

0 commit comments

Comments
 (0)