From 88fd5a96237ce04f03aaab1f88127b11182448d4 Mon Sep 17 00:00:00 2001 From: Stefano Chiodino Date: Thu, 3 Nov 2016 11:40:20 +0000 Subject: [PATCH 1/2] Remove background-color on preview that was interfering with the website style --- src/Umbraco.Web.UI.Client/src/less/canvas-designer.less | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/less/canvas-designer.less b/src/Umbraco.Web.UI.Client/src/less/canvas-designer.less index 52c4052975..e0527aefcb 100644 --- a/src/Umbraco.Web.UI.Client/src/less/canvas-designer.less +++ b/src/Umbraco.Web.UI.Client/src/less/canvas-designer.less @@ -21,7 +21,6 @@ body { font-size: 14px; line-height: 20px; color: #343434; - background-color: #F5F5F5; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; From 4cab1c89b4aad264dfa7ff407dbddef8f07bffac Mon Sep 17 00:00:00 2001 From: Stefano Chiodino Date: Thu, 3 Nov 2016 16:02:10 +0000 Subject: [PATCH 2/2] U4-7721 Specify margin 0 for buttons On Safari input elemnts have 1px margin which use to make customise and install buttons not aligned --- src/Umbraco.Web.UI.Client/src/less/buttons.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/less/buttons.less b/src/Umbraco.Web.UI.Client/src/less/buttons.less index 84b96292c2..b699438d69 100644 --- a/src/Umbraco.Web.UI.Client/src/less/buttons.less +++ b/src/Umbraco.Web.UI.Client/src/less/buttons.less @@ -253,6 +253,9 @@ input[type="submit"].btn { *padding-top: 1px; *padding-bottom: 1px; } + + // Safari defaults to 1px for input. Ref U4-7721. + margin: 0px; }