diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/umbconfirmaction.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/umbconfirmaction.directive.js index 1dcccda481c6..665b8379461a 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/umbconfirmaction.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/umbconfirmaction.directive.js @@ -14,7 +14,7 @@ The prompt can be opened in four direction up, down, left or right.

- + - + @example **/ @@ -33,8 +33,8 @@ Icon with additional attribute. It can be treated like any other dom element icon: "@", svgString: "=?" }, - link: function (scope, element) { + if (scope.svgString === undefined && scope.svgString !== null && scope.icon !== undefined && scope.icon !== null) { const observer = new IntersectionObserver(_lazyRequestIcon, {rootMargin: "100px"}); const iconEl = element[0]; @@ -49,6 +49,7 @@ Icon with additional attribute. It can be treated like any other dom element scope.$watch("icon", function (newValue, oldValue) { if (newValue && oldValue) { + var newicon = newValue.split(" ")[0]; var oldicon = oldValue.split(" ")[0]; @@ -64,6 +65,7 @@ Icon with additional attribute. It can be treated like any other dom element observer.disconnect(); var icon = scope.icon.split(" ")[0]; // Ensure that only the first part of the icon is used as sometimes the color is added too, e.g. see umbeditorheader.directive scope.openIconPicker + _requestIcon(icon); } }); diff --git a/src/Umbraco.Web.UI.Client/src/less/components/umb-icon.less b/src/Umbraco.Web.UI.Client/src/less/components/umb-icon.less index 318ce0a563f8..e89ed96e7956 100644 --- a/src/Umbraco.Web.UI.Client/src/less/components/umb-icon.less +++ b/src/Umbraco.Web.UI.Client/src/less/components/umb-icon.less @@ -8,26 +8,43 @@ width: 100%; height: 100%; fill: currentColor; + animation: inherit; } - &.large{ - width: 32px; + &.large { + width: 32px; height: 32px; } - &.medium{ + + &.medium { width: 24px; height: 24px; } - &.small{ + + &.small { width: 14px; height: 14px; } - &:before, &:after { + &::before, + &::after { content: none !important; } - > i { - font-family: inherit; + &__inner { + // Clear pseudo classes + &::before, + &::after { + content: none !important; + } + + ng-transclude { + animation: inherit; + font-family: inherit; + + > span { + animation: inherit; + } + } } } diff --git a/src/Umbraco.Web.UI.Client/src/less/components/umb-lightbox.less b/src/Umbraco.Web.UI.Client/src/less/components/umb-lightbox.less index 6238900bf6b5..3977da188a85 100644 --- a/src/Umbraco.Web.UI.Client/src/less/components/umb-lightbox.less +++ b/src/Umbraco.Web.UI.Client/src/less/components/umb-lightbox.less @@ -11,68 +11,74 @@ align-items: center; justify-content: center; flex-direction: column; -} -.umb-drawer-is-visible .umb-lightbox { - width: calc(~'100%' - ~'@{drawerWidth}'); - left: @drawerWidth; -} + &__backdrop { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: rgba(21, 21, 23, 0.7); + width: 100%; + height: 100%; + } -.umb-lightbox__backdrop { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - background: rgba(21, 21, 23, 0.7); - width: 100%; - height: 100%; -} + &__close { + position: absolute; + top: 20px; + right: 20px; + height: 40px; + width: 40px; -.umb-lightbox__close { - position: absolute; - top: 20px; - right: 20px; - height: 40px; - width: 40px; -} + .umb-icon { + font-size: 20px; + height: inherit; + width: inherit; + position: absolute; + top: 0; + left: 0; + } + } -.umb-lightbox__close i { - font-size: 20px; - height: inherit; - width: inherit; - position: absolute; - top: 0; - left: 0; -} + &__images { + position: relative; + z-index: 1000; + max-width: calc(~'100%' - 200px); // subtract the width of the two arrow buttons + } -.umb-lightbox__images { - position: relative; - z-index: 1000; - max-width: calc(~'100%' - 200px); // subtract the width of the two arrow buttons -} + &__image { + background: @white; + border-radius: 3px; + padding: 10px; + } -.umb-lightbox__image { - background: @white; - border-radius: 3px; - padding: 10px; -} + &__control { + background-color: @white; + width: 50px; + height: 50px; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + position: absolute; -.umb-lightbox__control { - background-color: @white; - width: 50px; - height: 50px; - border-radius: 50%; - display: flex; - align-items: center; - justify-content: center; - cursor: pointer; - position: absolute; - &:hover { - .umb-lightbox__control-icon, &::before { - color: @ui-active-type-hover; + &:hover { + .umb-lightbox__control-icon, &::before { + color: @ui-active-type-hover; + } } } + + &__control-icon { + color: @ui-active-type; + font-size: 20px; + } +} + +.umb-drawer-is-visible .umb-lightbox { + width: calc(~'100%' - ~'@{drawerWidth}'); + left: @drawerWidth; } .umb-lightbox__control.-next { @@ -94,9 +100,3 @@ margin-left: -4px; } } - -.umb-lightbox__control-icon { - color: @ui-active-type; - font-size: 20px; - -} diff --git a/src/Umbraco.Web.UI.Client/src/less/components/umb-package-local-install.less b/src/Umbraco.Web.UI.Client/src/less/components/umb-package-local-install.less index d229bc81b6e0..ead54ac49f0d 100644 --- a/src/Umbraco.Web.UI.Client/src/less/components/umb-package-local-install.less +++ b/src/Umbraco.Web.UI.Client/src/less/components/umb-package-local-install.less @@ -22,20 +22,21 @@ align-items: center; margin-bottom: 30px; transition: 100ms box-shadow ease, 100ms border ease; - + &.drag-over { border-color: @ui-action-border-hover; border-style: solid; box-shadow: 0 3px 8px rgba(0,0,0, .1); transition: 100ms box-shadow ease, 100ms border ease; } -} -.umb-upload-local__dropzone i { - display: block; - color: @ui-action-type; - font-size: 110px; - line-height: 1; + .umb-icon { + display: block; + color: @ui-action-type; + font-size: 6.75rem; + line-height: 1; + margin: 0 auto; + } } .umb-upload-local__select-file { diff --git a/src/Umbraco.Web.UI.Client/src/less/components/umb-packages.less b/src/Umbraco.Web.UI.Client/src/less/components/umb-packages.less index f660da8f8bee..6485e37f1a6c 100644 --- a/src/Umbraco.Web.UI.Client/src/less/components/umb-packages.less +++ b/src/Umbraco.Web.UI.Client/src/less/components/umb-packages.less @@ -136,35 +136,40 @@ justify-content: center; opacity: .6; margin-top: 10px; -} -.umb-package-numbers small { - padding: 0 5px; - display: flex; - align-items: center; - justify-content: center; -} + small { + padding: 0 5px; + display: flex; + align-items: center; + justify-content: center; + } -.umb-package-numbers i { - font-size: 14px; + .umb-icon { + font-size: 0.9rem; + } } -.umb-package-link:hover .umb-package-numbers { - opacity: 1; -} +.umb-package-link { + &:hover { + .umb-package-numbers { + opacity: 1; -.umb-package-link:hover .umb-package-numbers .icon-hearts { - color: @red !important; -} + .icon-hearts { + color: @red !important; + } + } + } -.umb-package-link .umb-package-cloud { - margin-top: 8px; - font-size: 11px; - height: 11px; // ensures vertical space is taken up even if "works on cloud" isn't visible -} + .umb-package-cloud { + margin-top: 0.5rem; + font-size: 0.75rem; + min-height: 1rem; // ensures vertical space is taken up even if "works on cloud" isn't visible -.umb-package-link .umb-package-cloud .icon-cloud { - color: #2eadaf !important; + .umb-icon { + color: @turquoise !important; + font-size: 0.9rem; + } + } } // Version @@ -182,7 +187,7 @@ .umb-packages-categories { display: flex; - user-select: center; + user-select: none; flex-wrap: wrap; } diff --git a/src/Umbraco.Web.UI.Client/src/less/components/umb-panel-group.less b/src/Umbraco.Web.UI.Client/src/less/components/umb-panel-group.less index 46d7f04af6be..27d09aaa1cf5 100644 --- a/src/Umbraco.Web.UI.Client/src/less/components/umb-panel-group.less +++ b/src/Umbraco.Web.UI.Client/src/less/components/umb-panel-group.less @@ -75,7 +75,7 @@ flex: 0 0 50px; display: flex; justify-content: center; - padding: 0 20px; + padding: 0.25rem 20px; } .umb-panel-group__details-status-content { diff --git a/src/Umbraco.Web.UI.Client/src/less/components/umb-search-filter.less b/src/Umbraco.Web.UI.Client/src/less/components/umb-search-filter.less index b38f5937c727..63164870b257 100644 --- a/src/Umbraco.Web.UI.Client/src/less/components/umb-search-filter.less +++ b/src/Umbraco.Web.UI.Client/src/less/components/umb-search-filter.less @@ -20,7 +20,7 @@ html .umb-search-filter { // "icon-search" class it kept for backward compatibility .umb-icon, - .icon-search { + i.icon-search { color: @gray-8; position: absolute; top: 0; diff --git a/src/Umbraco.Web.UI.Client/src/less/dashboards/healthcheck.less b/src/Umbraco.Web.UI.Client/src/less/dashboards/healthcheck.less index bf01c21dcaa0..57bc1f85188b 100644 --- a/src/Umbraco.Web.UI.Client/src/less/dashboards/healthcheck.less +++ b/src/Umbraco.Web.UI.Client/src/less/dashboards/healthcheck.less @@ -75,27 +75,20 @@ font-size: 13px; } -.umb-healthcheck-message i { +.umb-healthcheck-message .umb-icon { font-size: 15px; margin-right: 3px; } .umb-healthcheck-details-link { - color: @turquoise-d1; -} + color: @turquoise-d1; -.umb-healthcheck-details-link:hover { - text-decoration: none; - color: @turquoise-d1; + &:hover { + color: @turquoise-d1; + text-decoration: none; + } } - -/* Helpers */ -.align-self-center { - align-self: center; -} - - /* Spacing for boxes */ .umb-air { flex: 0 0 auto; @@ -127,7 +120,6 @@ } .umb-healthcheck-status-icon { - font-size: 20px; margin-top: 2px; } diff --git a/src/Umbraco.Web.UI.Client/src/less/navs.less b/src/Umbraco.Web.UI.Client/src/less/navs.less index 6dab771c9403..6839a42b239e 100644 --- a/src/Umbraco.Web.UI.Client/src/less/navs.less +++ b/src/Umbraco.Web.UI.Client/src/less/navs.less @@ -2,14 +2,15 @@ // Navs // -------------------------------------------------- -.list-icons li{ - padding-left: 35px; - max-width: 300px -} - -.list-icons li > i.icon{ - margin-left: -25px; - padding-right: 7px; +.list-icons li { + padding-left: 35px; + max-width: 300px; + + > .umb-icon, + > i.icon { + margin-left: -25px; + padding-right: 7px; + } } .umb-icon.handle, diff --git a/src/Umbraco.Web.UI.Client/src/views/common/drawers/help/help.html b/src/Umbraco.Web.UI.Client/src/views/common/drawers/help/help.html index 4f6b283fd8a2..82a37e6efbff 100644 --- a/src/Umbraco.Web.UI.Client/src/views/common/drawers/help/help.html +++ b/src/Umbraco.Web.UI.Client/src/views/common/drawers/help/help.html @@ -46,7 +46,7 @@
ng-click="tourGroup.open = !tourGroup.open" aria-expanded="{{tourGroup.open === undefined ? false : tourGroup.open }}"> - + {{tourGroup.group}} Other @@ -101,7 +101,7 @@
{{topic.name}} - + {{topic.description}} @@ -118,9 +118,9 @@
@@ -129,7 +129,7 @@
diff --git a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypeconfigurationpicker/datatypeconfigurationpicker.html b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypeconfigurationpicker/datatypeconfigurationpicker.html index cbc5b102cc4b..7146d6dc7c4b 100644 --- a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypeconfigurationpicker/datatypeconfigurationpicker.html +++ b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypeconfigurationpicker/datatypeconfigurationpicker.html @@ -26,7 +26,7 @@
@@ -36,7 +36,7 @@
  • diff --git a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypepicker/datatypepicker.html b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypepicker/datatypepicker.html index d19f53735459..5a3f7e9fc6e6 100644 --- a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypepicker/datatypepicker.html +++ b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypepicker/datatypepicker.html @@ -37,7 +37,7 @@

    {{key | umbCmsTitleCase}}

    ng-click="vm.viewOptionsForEditor(dataType)" title="{{dataType.name}}"> - + {{dataType.name}} @@ -65,7 +65,7 @@

    {{result.group | umbCmsTitleCase}}

    ng-click="vm.pickDataType(dataType)" title="{{dataType.name}}"> - + {{dataType.name}} @@ -86,7 +86,7 @@

    {{result.group | umbCmsTitleCase}}

    ng-click="vm.pickEditor(dataType)" title="{{dataType.name}}"> - + {{dataType.name}} diff --git a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypesettings/datatypesettings.html b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypesettings/datatypesettings.html index 77cfc705a365..a4fef2874073 100644 --- a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypesettings/datatypesettings.html +++ b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/datatypesettings/datatypesettings.html @@ -22,7 +22,7 @@
    - + using this editor will get updated with the new settings.
    diff --git a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/iconpicker/iconpicker.html b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/iconpicker/iconpicker.html index 19fe67918960..41bf92b27e8e 100644 --- a/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/iconpicker/iconpicker.html +++ b/src/Umbraco.Web.UI.Client/src/views/common/infiniteeditors/iconpicker/iconpicker.html @@ -44,7 +44,7 @@ diff --git a/src/Umbraco.Web.UI.Client/src/views/prevalueeditors/multivalues.html b/src/Umbraco.Web.UI.Client/src/views/prevalueeditors/multivalues.html index 43520b00da4e..f57254ad8552 100644 --- a/src/Umbraco.Web.UI.Client/src/views/prevalueeditors/multivalues.html +++ b/src/Umbraco.Web.UI.Client/src/views/prevalueeditors/multivalues.html @@ -9,7 +9,7 @@
    - +
    diff --git a/src/Umbraco.Web.UI.Client/src/views/prevalueeditors/treesource.html b/src/Umbraco.Web.UI.Client/src/views/prevalueeditors/treesource.html index c9da687f0d15..f56a6c8656ad 100644 --- a/src/Umbraco.Web.UI.Client/src/views/prevalueeditors/treesource.html +++ b/src/Umbraco.Web.UI.Client/src/views/prevalueeditors/treesource.html @@ -26,7 +26,7 @@ Choose a root node
    - +
    @@ -40,7 +40,7 @@
    • - +
      @@ -66,7 +66,7 @@
    • - +
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/inlineblock/inlineblock.editor.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/inlineblock/inlineblock.editor.html index c6b5e0a4fbb5..54210a522a72 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/inlineblock/inlineblock.editor.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/inlineblock/inlineblock.editor.html @@ -5,7 +5,7 @@ ng-click="vm.openBlock(block)" ng-focus="block.focus"> - + {{block.label}}
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/labelblock/labelblock.editor.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/labelblock/labelblock.editor.html index a5c499350552..65530f05951f 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/labelblock/labelblock.editor.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/labelblock/labelblock.editor.html @@ -3,6 +3,6 @@ ng-focus="block.focus" ng-class="{ '--active': block.active, '--error': parentForm.$invalid && valFormManager.isShowingValidation() }" val-server-property-class=""> - + {{block.label}} diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/unsupportedblock/unsupportedblock.editor.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/unsupportedblock/unsupportedblock.editor.html index 2252db374545..0c0d98105d30 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/unsupportedblock/unsupportedblock.editor.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/blocklistentryeditors/unsupportedblock/unsupportedblock.editor.html @@ -1,6 +1,6 @@
    - + {{block.label}}
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/prevalue/blocklist.blockconfiguration.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/prevalue/blocklist.blockconfiguration.html index 2bd4be15054a..de6a40941509 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/prevalue/blocklist.blockconfiguration.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/prevalue/blocklist.blockconfiguration.html @@ -1,13 +1,6 @@ -
    +
    -
    +
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/prevalue/blocklist.blockconfiguration.overlay.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/prevalue/blocklist.blockconfiguration.overlay.html index a15a2fda25f7..cc324f70d52f 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/prevalue/blocklist.blockconfiguration.overlay.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/prevalue/blocklist.blockconfiguration.overlay.html @@ -46,7 +46,7 @@
    @@ -67,7 +67,7 @@
    @@ -113,7 +113,7 @@
    @@ -130,10 +130,10 @@
    @@ -192,7 +192,7 @@
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/umb-block-list-property-editor.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/umb-block-list-property-editor.html index a6c1eb219955..3a1ea38da128 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/umb-block-list-property-editor.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/blocklist/umb-block-list-property-editor.html @@ -14,7 +14,7 @@ ng-controller="Umbraco.PropertyEditors.BlockListPropertyEditor.CreateButtonController as inlineCreateButtonCtrl" ng-mousemove="inlineCreateButtonCtrl.onMouseMove($event)">
    - +
    @@ -36,15 +36,14 @@ Add content Add content -
    - +
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/datepicker/datepicker.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/datepicker/datepicker.html index f5ac69b9b8e6..548f3aed0bfb 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/datepicker/datepicker.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/datepicker/datepicker.html @@ -20,11 +20,11 @@ val-server="value" class="datepickerinput" /> - +
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/dialogs/layoutconfig.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/dialogs/layoutconfig.html index 5e05f56b4819..457986bc19bd 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/dialogs/layoutconfig.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/dialogs/layoutconfig.html @@ -44,9 +44,9 @@ {{currentSection.grid}}
    - + diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/dialogs/rowconfig.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/dialogs/rowconfig.html index 312c15835162..29176f6840e4 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/dialogs/rowconfig.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/dialogs/rowconfig.html @@ -55,7 +55,7 @@ {{currentCell.grid}}
    @@ -83,11 +83,11 @@ - - - + + + @@ -109,7 +109,7 @@ - + ({{editor.alias}}) diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/editors/embed.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/editors/embed.html index 96731098163f..d3e14c5db1f6 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/editors/embed.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/editors/embed.html @@ -1,7 +1,7 @@
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/editors/macro.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/editors/macro.html index 300ec91bcc51..9db4c324ec0c 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/editors/macro.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/grid/editors/macro.html @@ -2,7 +2,7 @@
    @@ -207,7 +204,7 @@
    @@ -41,7 +41,7 @@

    @@ -82,7 +82,7 @@

    {{layout.label || layout.name}}

    @@ -91,7 +91,7 @@

    @@ -116,9 +116,9 @@

    ng-model="model.value.config">
  • - + {{configValue.label}}
  • @@ -127,7 +127,7 @@

    • @@ -143,9 +143,9 @@

      ng-model="model.value.styles">
    • - + {{style.label}}
    • @@ -154,7 +154,7 @@

      • diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/imagecropper/imagecropper.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/imagecropper/imagecropper.html index 9dc1a3b91ad9..d4c4714b6727 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/imagecropper/imagecropper.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/imagecropper/imagecropper.html @@ -45,7 +45,7 @@ on-value-changed="focalPointChanged(left, top)" on-image-loaded="imageLoaded(isCroppable, hasDimensions)"> - +

    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/imagecropper/imagecropper.prevalues.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/imagecropper/imagecropper.prevalues.html index 9589909639e1..7d08ce43e498 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/imagecropper/imagecropper.prevalues.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/imagecropper/imagecropper.prevalues.html @@ -60,7 +60,7 @@
    - +

    {{item.alias}} ({{item.width}}px × {{item.height}}px)

    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/includeproperties.prevalues.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/includeproperties.prevalues.html index 7d863f6730c9..5db348dbffa4 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/includeproperties.prevalues.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/includeproperties.prevalues.html @@ -27,7 +27,7 @@ - +
    @@ -54,7 +54,7 @@ diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/layouts.prevalues.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/layouts.prevalues.html index 295345a8278b..95bdb3644fdc 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/layouts.prevalues.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/layouts.prevalues.html @@ -6,7 +6,7 @@
    - +
    @@ -16,7 +16,7 @@ ng-click="vm.openIconPicker(layout)" umb-auto-focus="{{layout.isSystem !== 1}}"> - + @@ -37,7 +37,7 @@
    @@ -53,12 +53,12 @@ @@ -69,7 +69,7 @@
  • diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/mediapicker3/umb-media-picker3-property-editor.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/mediapicker3/umb-media-picker3-property-editor.html index d523bc6f2da5..daf9566e2d4d 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/mediapicker3/umb-media-picker3-property-editor.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/mediapicker3/umb-media-picker3-property-editor.html @@ -15,7 +15,7 @@ ng-controller="Umbraco.PropertyEditors.MediaPicker3PropertyEditor.CreateButtonController as inlineCreateButtonCtrl" ng-mousemove="inlineCreateButtonCtrl.onMouseMove($event)">
    - +
    @@ -27,10 +27,10 @@ allowed-types="vm.allowedTypes">
    @@ -45,7 +45,7 @@ ng-disabled="!vm.allowAdd" ng-click="vm.addMediaAt(vm.model.value.length, $event)">
    - + Add
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/multipletextbox/multipletextbox.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/multipletextbox/multipletextbox.html index d1c202b86743..9e90666eacd5 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/multipletextbox/multipletextbox.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/multipletextbox/multipletextbox.html @@ -9,11 +9,11 @@ focus-when="{{item.hasFocus}}" />
    - +
    - - +
    - +
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/relatedlinks/relatedlinks.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/relatedlinks/relatedlinks.html index abd0c6bc8178..387b7010c953 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/relatedlinks/relatedlinks.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/relatedlinks/relatedlinks.html @@ -12,7 +12,7 @@ - + {{link.caption}}
    @@ -21,7 +21,7 @@ @@ -34,7 +34,7 @@
    @@ -73,7 +73,7 @@
    diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/urllist/urllist.html b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/urllist/urllist.html index ef36aae593c8..268995d1e4c9 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/urllist/urllist.html +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/urllist/urllist.html @@ -2,7 +2,7 @@