diff --git a/src/Umbraco.Web.UI/umbraco/dialogs/rollBack.aspx b/src/Umbraco.Web.UI/umbraco/dialogs/rollBack.aspx index db2b592305..62d7d9492b 100644 --- a/src/Umbraco.Web.UI/umbraco/dialogs/rollBack.aspx +++ b/src/Umbraco.Web.UI/umbraco/dialogs/rollBack.aspx @@ -1,68 +1,98 @@ <%@ Page Language="c#" Codebehind="rollBack.aspx.cs" MasterPageFile="../masterpages/umbracoDialog.Master"AutoEventWireup="True" Inherits="umbraco.presentation.dialogs.rollBack" %> + <%@ Register TagPrefix="cc1" Namespace="umbraco.uicontrols" Assembly="controls" %> <%@ Register TagPrefix="umb" Namespace="ClientDependency.Core.Controls" Assembly="ClientDependency.Core" %> - + var functionsFrame = this; + var tabFrame = this; + var isDialog = true; + var submitOnEnter = true; + + - + .diff { + margin-top: 10px; + height: 100%; + overflow: auto; + border-top: 1px solid #efefef; + padding: 5px; + } + + .diff table td { + border-bottom: 1px solid #ccc; + padding: 3px; + } + + .diff del { + background: rgb(255, 230, 230) none repeat scroll 0%; + -moz-background-clip: -moz-initial; + -moz-background-origin: -moz-initial; + -moz-background-inline-policy: -moz-initial; + } + + .diff ins { + background: rgb(230, 255, 230) none repeat scroll 0%; + -moz-background-clip: -moz-initial; + -moz-background-origin: -moz-initial; + -moz-background-inline-policy: -moz-initial; + } + + .diff .diffnotice { + text-align: center; + margin-bottom: 10px; + } + + - +
+ - + - - () - - - - - Diff - Html - - - - + + + + () + + + - -
-
-

- -

-
- - - -
-
- -

- -   <%=umbraco.ui.Text("general", "or", this.getUser())%>   - <%=umbraco.ui.Text("general", "cancel", this.getUser())%> -

-
- - + + + + Diff + Html + + + +
+ + +
+
+

+ +

+
+ + + +
+
+
+
+ +
- \ No newline at end of file diff --git a/src/Umbraco.Web/Umbraco.Web.csproj b/src/Umbraco.Web/Umbraco.Web.csproj index 161e183bc4..c11fa14d2c 100644 --- a/src/Umbraco.Web/Umbraco.Web.csproj +++ b/src/Umbraco.Web/Umbraco.Web.csproj @@ -1840,7 +1840,9 @@ ASPXCodeBehind - + + ASPXCodeBehind + @@ -1857,7 +1859,9 @@ ASPXCodeBehind - + + ASPXCodeBehind + diff --git a/src/umbraco.controls/ProgressBar.cs b/src/umbraco.controls/ProgressBar.cs index 5304e92fb5..89cff8fe24 100644 --- a/src/umbraco.controls/ProgressBar.cs +++ b/src/umbraco.controls/ProgressBar.cs @@ -7,7 +7,7 @@ using System.Web.UI.WebControls; namespace umbraco.uicontrols { [Obsolete("Use Umbraco.Web.UI.Controls.ProgressBar")] - public class ProgressBar : System.Web.UI.WebControls.Image + public class ProgressBar : System.Web.UI.WebControls.Panel { private string _title = umbraco.ui.Text("publish", "inProgress", null); public string Title { get; set; } @@ -17,9 +17,8 @@ namespace umbraco.uicontrols if(!string.IsNullOrEmpty(Title)) _title = Title; - base.ImageUrl = IO.SystemDirectories.Umbraco_client + "/images/progressBar.gif"; - base.AlternateText = _title; - + base.CssClass = "umb-loader"; + base.Render(writer); } }