diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdownblock.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdownblock.directive.js deleted file mode 100644 index 252c036342..0000000000 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdownblock.directive.js +++ /dev/null @@ -1,78 +0,0 @@ -/** -@ngdoc directive -@name umbraco.directives.directive:umbDropdownBlock -@restrict E -@scope - -@description -Use this directive to render a dropdown object. - -
-- -- --- // Content of dropdown - - -
-- -- --- - - -- - -
attrbute): Custom title text.
-@param {boolean} circle (attrbute): Decides, if the progress circle is displayed or not.
-@param {string} percentage (attrbute): A number which defines the progress circle.
-**/
-
-
-(function () {
- 'use strict';
-
- function DropdownBlockDirective(tourService) {
-
- var directive = {
- restrict: 'E',
- replace: true,
- transclude: true,
- templateUrl: 'views/components/umb-dropdown-block.html',
- scope: {
- circle: "=",
- title: "=",
- percentage: "@"
- }
- };
-
- return directive;
-
- }
-
- angular.module('umbraco.directives').directive('umbDropdownBlock', DropdownBlockDirective);
-
-})();
\ No newline at end of file
diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdownblockitem.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdownblockitem.directive.js
deleted file mode 100644
index 98041531de..0000000000
--- a/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdownblockitem.directive.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/**
-@ngdoc directive
-@name umbraco.directives.directive:umbDropdownBlockItem
-@restrict E
-@scope
-
-@description
-Use this directive to render a list for the {@link umbraco.directives.directive:umbDropdownBlock umbDropdownBlock} directive. See documentation for {@link umbraco.directives.directive:umbDropdownBlock umbDropdownBlock} component.
-
--- -- --- - - -- - -
attrbute): Custom text.
-@param {callback} onStart (attrbute): Defines what happens when the row is clicked.
-@param {boolean} completed (attrbute): Decides, if the tick is gray or green.
-@param {boolean} tick (attrbute): Decides, if the tick is displayed or not.
-**/
-
-
-(function () {
- 'use strict';
-
- function DropdownBlockItemDirective() {
-
- function link(scope, el, attr, ctrl) {
-
- scope.clickStart = function() {
- if(scope.onStart) {
- scope.onStart();
- }
- };
-
- }
-
- var directive = {
- restrict: 'E',
- replace: true,
- transclude: true,
- templateUrl: 'views/components/umb-dropdown-block-item.html',
- scope: {
- name: "@",
- tick: "=",
- onStart: "&",
- completed: "@"
- },
- link: link
- };
-
- return directive;
-
- }
-
- angular.module('umbraco.directives').directive('umbDropdownBlockItem', DropdownBlockItemDirective);
-
-})();
\ No newline at end of file
diff --git a/src/Umbraco.Web.UI.Client/src/less/belle.less b/src/Umbraco.Web.UI.Client/src/less/belle.less
index 320590098d..6232522611 100644
--- a/src/Umbraco.Web.UI.Client/src/less/belle.less
+++ b/src/Umbraco.Web.UI.Client/src/less/belle.less
@@ -131,7 +131,6 @@
@import "components/umb-box.less";
@import "components/umb-number-badge.less";
@import "components/umb-progress-circle.less";
-@import "components/umb-dropdown-block.less";
@import "components/buttons/umb-button.less";
@import "components/buttons/umb-button-group.less";
diff --git a/src/Umbraco.Web.UI.Client/src/less/components/buttons/umb-button.less b/src/Umbraco.Web.UI.Client/src/less/components/buttons/umb-button.less
index da0d79a999..ab8b6b0671 100644
--- a/src/Umbraco.Web.UI.Client/src/less/components/buttons/umb-button.less
+++ b/src/Umbraco.Web.UI.Client/src/less/components/buttons/umb-button.less
@@ -100,7 +100,7 @@
/* Sizes */
.umb-button--xxs {
- padding: 3px 12px;
+ padding: 2px 10px;
font-size: 13px;
}
diff --git a/src/Umbraco.Web.UI.Client/src/less/components/umb-dropdown-block.less b/src/Umbraco.Web.UI.Client/src/less/components/umb-dropdown-block.less
deleted file mode 100644
index 1ea8ac8642..0000000000
--- a/src/Umbraco.Web.UI.Client/src/less/components/umb-dropdown-block.less
+++ /dev/null
@@ -1,92 +0,0 @@
-.umb-tour__progress-circle-container {
- width: 50px;
- height: 50px;
- float: right;
- margin: 5px;
-}
-
-.umb-tour__dropdown-title {
- font-size: 18px;
- font-weight: 700;
- color: @gray-2;
-}
-
-.umb-tour__dropdown-contaiener {
- background-color: @white;
- width: 340px;
- border-radius: 3px;
- margin-bottom: 10px;
-}
-
-.umb-tour__dropdown-contaiener summary{
- line-height: 60px;
-}
-
-.umb-tour__dropdown-contaiener summary:focus{
- outline: none;
-}
-
-.umb-tour__dropdown-contaiener summary::-webkit-details-marker {
- color: @gray-2;
- margin: 0 20px 0 30px;
-}
-
-.umb-tour__dropdown-contaiener summary::-moz-list-bullet {
- color: @gray-2;
- margin: 0 20px 0 30px;
-}
-
-.umb-tour__dropdown-list {
- border-top: solid @gray-10 1px;
- width: 340px;
- padding: 10px 0;
-}
-
-.umb-tour__start {
- float: right;
-}
-
-.umb-tour__row {
- padding: 0 20px;
- line-height: 40px;
-}
-
-.umb-tour__row:hover {
- background-color: @gray-10;
-}
-
-.umb-tour__tick-circle {
- width: 26px;
- height: 26px;
- margin: 7px 20px 0 0;
- border-radius: 50%;
- float: left;
-}
-
-.umb-tour__row-title-container {
- display: flex;
- justify-content: space-between;
-}
-
-.umb-tour__row-title {
- font-size: 16px;
- color: @gray-4;
-}
-
-.umb-tour__row-button {
- visibility: hidden;
-}
-
-.umb-tour__row:hover .umb-tour__row-button {
- visibility: visible;
-}
-
-.umb-tour__tick {
- fill: #FFFFFF;
-}
-
-.umb-tour__tick-canvas {
- height: 16px;
- width: 16px;
- margin: 5px;
-}
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 b26486af73..3a6376e1dd 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
@@ -16,7 +16,7 @@