@ -0,0 +1,34 @@ |
|||
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="Test_Website_Webforms_NET45.About" %> |
|||
|
|||
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent"> |
|||
<hgroup class="title"> |
|||
<h1><%: Title %>.</h1> |
|||
<h2>Your app description page.</h2> |
|||
</hgroup> |
|||
|
|||
<article> |
|||
<p> |
|||
Use this area to provide additional information. |
|||
</p> |
|||
|
|||
<p> |
|||
Use this area to provide additional information. |
|||
</p> |
|||
|
|||
<p> |
|||
Use this area to provide additional information. |
|||
</p> |
|||
</article> |
|||
|
|||
<aside> |
|||
<h3>Aside Title</h3> |
|||
<p> |
|||
Use this area to provide additional information. |
|||
</p> |
|||
<ul> |
|||
<li><a runat="server" href="~/">Home</a></li> |
|||
<li><a runat="server" href="~/About">About</a></li> |
|||
<li><a runat="server" href="~/Contact">Contact</a></li> |
|||
</ul> |
|||
</aside> |
|||
</asp:Content> |
|||
@ -0,0 +1,17 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
public partial class About : Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,17 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
|
|||
public partial class About |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,47 @@ |
|||
<%@ Page Title="Log in" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="Test_Website_Webforms_NET45.Account.Login" %> |
|||
<%@ Register Src="~/Account/OpenAuthProviders.ascx" TagPrefix="uc" TagName="OpenAuthProviders" %> |
|||
|
|||
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent"> |
|||
<hgroup class="title"> |
|||
<h1><%: Title %>.</h1> |
|||
</hgroup> |
|||
<section id="loginForm"> |
|||
<h2>Use a local account to log in.</h2> |
|||
<asp:Login runat="server" ViewStateMode="Disabled" RenderOuterTable="false"> |
|||
<LayoutTemplate> |
|||
<p class="validation-summary-errors"> |
|||
<asp:Literal runat="server" ID="FailureText" /> |
|||
</p> |
|||
<fieldset> |
|||
<legend>Log in Form</legend> |
|||
<ol> |
|||
<li> |
|||
<asp:Label runat="server" AssociatedControlID="UserName">User name</asp:Label> |
|||
<asp:TextBox runat="server" ID="UserName" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="UserName" CssClass="field-validation-error" ErrorMessage="The user name field is required." /> |
|||
</li> |
|||
<li> |
|||
<asp:Label runat="server" AssociatedControlID="Password">Password</asp:Label> |
|||
<asp:TextBox runat="server" ID="Password" TextMode="Password" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="Password" CssClass="field-validation-error" ErrorMessage="The password field is required." /> |
|||
</li> |
|||
<li> |
|||
<asp:CheckBox runat="server" ID="RememberMe" /> |
|||
<asp:Label runat="server" AssociatedControlID="RememberMe" CssClass="checkbox">Remember me?</asp:Label> |
|||
</li> |
|||
</ol> |
|||
<asp:Button runat="server" CommandName="Login" Text="Log in" /> |
|||
</fieldset> |
|||
</LayoutTemplate> |
|||
</asp:Login> |
|||
<p> |
|||
<asp:HyperLink runat="server" ID="RegisterHyperLink" ViewStateMode="Disabled">Register</asp:HyperLink> |
|||
if you don't have an account. |
|||
</p> |
|||
</section> |
|||
|
|||
<section id="socialLoginForm"> |
|||
<h2>Use another service to log in.</h2> |
|||
<uc:OpenAuthProviders runat="server" ID="OpenAuthLogin" /> |
|||
</section> |
|||
</asp:Content> |
|||
@ -0,0 +1,24 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
public partial class Login : Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
RegisterHyperLink.NavigateUrl = "Register"; |
|||
OpenAuthLogin.ReturnUrl = Request.QueryString["ReturnUrl"]; |
|||
|
|||
var returnUrl = HttpUtility.UrlEncode(Request.QueryString["ReturnUrl"]); |
|||
if (!String.IsNullOrEmpty(returnUrl)) |
|||
{ |
|||
RegisterHyperLink.NavigateUrl += "?ReturnUrl=" + returnUrl; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,35 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
|
|||
|
|||
public partial class Login |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// RegisterHyperLink control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.HyperLink RegisterHyperLink; |
|||
|
|||
/// <summary>
|
|||
/// OpenAuthLogin control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::Test_Website_Webforms_NET45.Account.OpenAuthProviders OpenAuthLogin; |
|||
} |
|||
} |
|||
@ -0,0 +1,126 @@ |
|||
<%@ Page Title="Manage Account" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Manage.aspx.cs" Inherits="Test_Website_Webforms_NET45.Account.Manage" %> |
|||
<%@ Register Src="~/Account/OpenAuthProviders.ascx" TagPrefix="uc" TagName="OpenAuthProviders" %> |
|||
|
|||
<asp:Content ContentPlaceHolderID="MainContent" runat="server"> |
|||
<hgroup class="title"> |
|||
<h1><%: Title %>.</h1> |
|||
</hgroup> |
|||
|
|||
<section id="passwordForm"> |
|||
<asp:PlaceHolder runat="server" ID="successMessage" Visible="false" ViewStateMode="Disabled"> |
|||
<p class="message-success"><%: SuccessMessage %></p> |
|||
</asp:PlaceHolder> |
|||
|
|||
<p>You're logged in as <strong><%: User.Identity.Name %></strong>.</p> |
|||
|
|||
<asp:PlaceHolder runat="server" ID="setPassword" Visible="false"> |
|||
<p> |
|||
You do not have a local password for this site. Add a local |
|||
password so you can log in without an external login. |
|||
</p> |
|||
<fieldset> |
|||
<legend>Set Password Form</legend> |
|||
<ol> |
|||
<li> |
|||
<asp:Label runat="server" AssociatedControlID="password">Password</asp:Label> |
|||
<asp:TextBox runat="server" ID="password" TextMode="Password" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="password" |
|||
CssClass="field-validation-error" ErrorMessage="The password field is required." |
|||
Display="Dynamic" ValidationGroup="SetPassword" /> |
|||
|
|||
<asp:ModelErrorMessage runat="server" ModelStateKey="NewPassword" AssociatedControlID="password" |
|||
CssClass="field-validation-error" SetFocusOnError="true" /> |
|||
|
|||
</li> |
|||
<li> |
|||
<asp:Label runat="server" AssociatedControlID="confirmPassword">Confirm password</asp:Label> |
|||
<asp:TextBox runat="server" ID="confirmPassword" TextMode="Password" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="confirmPassword" |
|||
CssClass="field-validation-error" Display="Dynamic" ErrorMessage="The confirm password field is required." |
|||
ValidationGroup="SetPassword" /> |
|||
<asp:CompareValidator runat="server" ControlToCompare="Password" ControlToValidate="confirmPassword" |
|||
CssClass="field-validation-error" Display="Dynamic" ErrorMessage="The password and confirmation password do not match." |
|||
ValidationGroup="SetPassword" /> |
|||
</li> |
|||
</ol> |
|||
<asp:Button runat="server" Text="Set Password" ValidationGroup="SetPassword" OnClick="setPassword_Click" /> |
|||
</fieldset> |
|||
</asp:PlaceHolder> |
|||
|
|||
<asp:PlaceHolder runat="server" ID="changePassword" Visible="false"> |
|||
<h3>Change password</h3> |
|||
<asp:ChangePassword runat="server" CancelDestinationPageUrl="~/" ViewStateMode="Disabled" RenderOuterTable="false" SuccessPageUrl="Manage?m=ChangePwdSuccess"> |
|||
<ChangePasswordTemplate> |
|||
<p class="validation-summary-errors"> |
|||
<asp:Literal runat="server" ID="FailureText" /> |
|||
</p> |
|||
<fieldset class="changePassword"> |
|||
<legend>Change password details</legend> |
|||
<ol> |
|||
<li> |
|||
<asp:Label runat="server" ID="CurrentPasswordLabel" AssociatedControlID="CurrentPassword">Current password</asp:Label> |
|||
<asp:TextBox runat="server" ID="CurrentPassword" CssClass="passwordEntry" TextMode="Password" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="CurrentPassword" |
|||
CssClass="field-validation-error" ErrorMessage="The current password field is required." |
|||
ValidationGroup="ChangePassword" /> |
|||
</li> |
|||
<li> |
|||
<asp:Label runat="server" ID="NewPasswordLabel" AssociatedControlID="NewPassword">New password</asp:Label> |
|||
<asp:TextBox runat="server" ID="NewPassword" CssClass="passwordEntry" TextMode="Password" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="NewPassword" |
|||
CssClass="field-validation-error" ErrorMessage="The new password is required." |
|||
ValidationGroup="ChangePassword" /> |
|||
</li> |
|||
<li> |
|||
<asp:Label runat="server" ID="ConfirmNewPasswordLabel" AssociatedControlID="ConfirmNewPassword">Confirm new password</asp:Label> |
|||
<asp:TextBox runat="server" ID="ConfirmNewPassword" CssClass="passwordEntry" TextMode="Password" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="ConfirmNewPassword" |
|||
CssClass="field-validation-error" Display="Dynamic" ErrorMessage="Confirm new password is required." |
|||
ValidationGroup="ChangePassword" /> |
|||
<asp:CompareValidator runat="server" ControlToCompare="NewPassword" ControlToValidate="ConfirmNewPassword" |
|||
CssClass="field-validation-error" Display="Dynamic" ErrorMessage="The new password and confirmation password do not match." |
|||
ValidationGroup="ChangePassword" /> |
|||
</li> |
|||
</ol> |
|||
<asp:Button runat="server" CommandName="ChangePassword" Text="Change password" ValidationGroup="ChangePassword" /> |
|||
</fieldset> |
|||
</ChangePasswordTemplate> |
|||
</asp:ChangePassword> |
|||
</asp:PlaceHolder> |
|||
</section> |
|||
|
|||
<section id="externalLoginsForm"> |
|||
|
|||
<asp:ListView runat="server" |
|||
ItemType="Microsoft.AspNet.Membership.OpenAuth.OpenAuthAccountData" |
|||
SelectMethod="GetExternalLogins" DeleteMethod="RemoveExternalLogin" DataKeyNames="ProviderName,ProviderUserId"> |
|||
|
|||
<LayoutTemplate> |
|||
<h3>Registered external logins</h3> |
|||
<table> |
|||
<thead><tr><th>Service</th><th>User Name</th><th>Last Used</th><th> </th></tr></thead> |
|||
<tbody> |
|||
<tr runat="server" id="itemPlaceholder"></tr> |
|||
</tbody> |
|||
</table> |
|||
</LayoutTemplate> |
|||
<ItemTemplate> |
|||
<tr> |
|||
|
|||
<td><%#: Item.ProviderDisplayName %></td> |
|||
<td><%#: Item.ProviderUserName %></td> |
|||
<td><%#: ConvertToDisplayDateTime(Item.LastUsedUtc) %></td> |
|||
<td> |
|||
<asp:Button runat="server" Text="Remove" CommandName="Delete" CausesValidation="false" |
|||
ToolTip='<%# "Remove this " + Item.ProviderDisplayName + " login from your account" %>' |
|||
Visible="<%# CanRemoveExternalLogins %>" /> |
|||
</td> |
|||
|
|||
</tr> |
|||
</ItemTemplate> |
|||
</asp:ListView> |
|||
|
|||
<h3>Add an external login</h3> |
|||
<uc:OpenAuthProviders runat="server" ReturnUrl="~/Account/Manage" /> |
|||
</section> |
|||
</asp:Content> |
|||
@ -0,0 +1,95 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
|
|||
using Microsoft.AspNet.Membership.OpenAuth; |
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
public partial class Manage : System.Web.UI.Page |
|||
{ |
|||
protected string SuccessMessage |
|||
{ |
|||
get; |
|||
private set; |
|||
} |
|||
|
|||
protected bool CanRemoveExternalLogins |
|||
{ |
|||
get; |
|||
private set; |
|||
} |
|||
|
|||
protected void Page_Load() |
|||
{ |
|||
if (!IsPostBack) |
|||
{ |
|||
// Determine the sections to render
|
|||
var hasLocalPassword = OpenAuth.HasLocalPassword(User.Identity.Name); |
|||
setPassword.Visible = !hasLocalPassword; |
|||
changePassword.Visible = hasLocalPassword; |
|||
|
|||
CanRemoveExternalLogins = hasLocalPassword; |
|||
|
|||
// Render success message
|
|||
var message = Request.QueryString["m"]; |
|||
if (message != null) |
|||
{ |
|||
// Strip the query string from action
|
|||
Form.Action = ResolveUrl("~/Account/Manage"); |
|||
|
|||
SuccessMessage = |
|||
message == "ChangePwdSuccess" ? "Your password has been changed." |
|||
: message == "SetPwdSuccess" ? "Your password has been set." |
|||
: message == "RemoveLoginSuccess" ? "The external login was removed." |
|||
: String.Empty; |
|||
successMessage.Visible = !String.IsNullOrEmpty(SuccessMessage); |
|||
} |
|||
} |
|||
|
|||
} |
|||
|
|||
protected void setPassword_Click(object sender, EventArgs e) |
|||
{ |
|||
if (IsValid) |
|||
{ |
|||
var result = OpenAuth.AddLocalPassword(User.Identity.Name, password.Text); |
|||
if (result.IsSuccessful) |
|||
{ |
|||
Response.Redirect("~/Account/Manage?m=SetPwdSuccess"); |
|||
} |
|||
else |
|||
{ |
|||
|
|||
ModelState.AddModelError("NewPassword", result.ErrorMessage); |
|||
|
|||
} |
|||
} |
|||
} |
|||
|
|||
|
|||
public IEnumerable<OpenAuthAccountData> GetExternalLogins() |
|||
{ |
|||
var accounts = OpenAuth.GetAccountsForUser(User.Identity.Name); |
|||
CanRemoveExternalLogins = CanRemoveExternalLogins || accounts.Count() > 1; |
|||
return accounts; |
|||
} |
|||
|
|||
public void RemoveExternalLogin(string providerName, string providerUserId) |
|||
{ |
|||
var m = OpenAuth.DeleteAccount(User.Identity.Name, providerName, providerUserId) |
|||
? "?m=RemoveLoginSuccess" |
|||
: String.Empty; |
|||
Response.Redirect("~/Account/Manage" + m); |
|||
} |
|||
|
|||
|
|||
protected static string ConvertToDisplayDateTime(DateTime? utcDateTime) |
|||
{ |
|||
// You can change this method to convert the UTC date time into the desired display
|
|||
// offset and format. Here we're converting it to the server timezone and formatting
|
|||
// as a short date and a long time string, using the current thread culture.
|
|||
return utcDateTime.HasValue ? utcDateTime.Value.ToLocalTime().ToString("G") : "[never]"; |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,66 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
|
|||
|
|||
public partial class Manage |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// successMessage control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.PlaceHolder successMessage; |
|||
|
|||
/// <summary>
|
|||
/// setPassword control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.PlaceHolder setPassword; |
|||
|
|||
/// <summary>
|
|||
/// password control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.TextBox password; |
|||
|
|||
|
|||
|
|||
/// <summary>
|
|||
/// confirmPassword control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.TextBox confirmPassword; |
|||
|
|||
/// <summary>
|
|||
/// changePassword control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.PlaceHolder changePassword; |
|||
|
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,21 @@ |
|||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="OpenAuthProviders.ascx.cs" Inherits="Test_Website_Webforms_NET45.Account.OpenAuthProviders" %> |
|||
|
|||
<fieldset class="open-auth-providers"> |
|||
<legend>Log in using another service</legend> |
|||
|
|||
<asp:ListView runat="server" ID="providerDetails" ItemType="Microsoft.AspNet.Membership.OpenAuth.ProviderDetails" |
|||
SelectMethod="GetProviderNames" ViewStateMode="Disabled"> |
|||
<ItemTemplate> |
|||
<button type="submit" name="provider" value="<%#: Item.ProviderName %>" |
|||
title="Log in using your <%#: Item.ProviderDisplayName %> account."> |
|||
<%#: Item.ProviderDisplayName %> |
|||
</button> |
|||
</ItemTemplate> |
|||
|
|||
<EmptyDataTemplate> |
|||
<div class="message-info"> |
|||
<p>There are no external authentication services configured. See <a href="http://go.microsoft.com/fwlink/?LinkId=252803">this article</a> for details on setting up this ASP.NET application to support logging in via external services.</p> |
|||
</div> |
|||
</EmptyDataTemplate> |
|||
</asp:ListView> |
|||
</fieldset> |
|||
@ -0,0 +1,43 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Web; |
|||
using Microsoft.AspNet.Membership.OpenAuth; |
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
public partial class OpenAuthProviders : System.Web.UI.UserControl |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
|
|||
if (IsPostBack) |
|||
{ |
|||
var provider = Request.Form["provider"]; |
|||
if (provider == null) |
|||
{ |
|||
return; |
|||
} |
|||
|
|||
var redirectUrl = "~/Account/RegisterExternalLogin"; |
|||
if (!String.IsNullOrEmpty(ReturnUrl)) |
|||
{ |
|||
var resolvedReturnUrl = ResolveUrl(ReturnUrl); |
|||
redirectUrl += "?ReturnUrl=" + HttpUtility.UrlEncode(resolvedReturnUrl); |
|||
} |
|||
|
|||
OpenAuth.RequestAuthentication(provider, redirectUrl); |
|||
} |
|||
} |
|||
|
|||
|
|||
|
|||
public string ReturnUrl { get; set; } |
|||
|
|||
|
|||
public IEnumerable<ProviderDetails> GetProviderNames() |
|||
{ |
|||
return OpenAuth.AuthenticationClients.GetAll(); |
|||
} |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,27 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
|
|||
|
|||
public partial class OpenAuthProviders |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// providerDetails control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.ListView providerDetails; |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,62 @@ |
|||
<%@ Page Title="Register" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Register.aspx.cs" Inherits="Test_Website_Webforms_NET45.Account.Register" %> |
|||
|
|||
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent"> |
|||
<hgroup class="title"> |
|||
<h1><%: Title %>.</h1> |
|||
<h2>Use the form below to create a new account.</h2> |
|||
</hgroup> |
|||
|
|||
<asp:CreateUserWizard runat="server" ID="RegisterUser" ViewStateMode="Disabled" OnCreatedUser="RegisterUser_CreatedUser"> |
|||
<LayoutTemplate> |
|||
<asp:PlaceHolder runat="server" ID="wizardStepPlaceholder" /> |
|||
<asp:PlaceHolder runat="server" ID="navigationPlaceholder" /> |
|||
</LayoutTemplate> |
|||
<WizardSteps> |
|||
<asp:CreateUserWizardStep runat="server" ID="RegisterUserWizardStep"> |
|||
<ContentTemplate> |
|||
<p class="message-info"> |
|||
Passwords are required to be a minimum of <%: Membership.MinRequiredPasswordLength %> characters in length. |
|||
</p> |
|||
|
|||
<p class="validation-summary-errors"> |
|||
<asp:Literal runat="server" ID="ErrorMessage" /> |
|||
</p> |
|||
|
|||
<fieldset> |
|||
<legend>Registration Form</legend> |
|||
<ol> |
|||
<li> |
|||
<asp:Label runat="server" AssociatedControlID="UserName">User name</asp:Label> |
|||
<asp:TextBox runat="server" ID="UserName" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="UserName" |
|||
CssClass="field-validation-error" ErrorMessage="The user name field is required." /> |
|||
</li> |
|||
<li> |
|||
<asp:Label runat="server" AssociatedControlID="Email">Email address</asp:Label> |
|||
<asp:TextBox runat="server" ID="Email" TextMode="Email" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="Email" |
|||
CssClass="field-validation-error" ErrorMessage="The email address field is required." /> |
|||
</li> |
|||
<li> |
|||
<asp:Label runat="server" AssociatedControlID="Password">Password</asp:Label> |
|||
<asp:TextBox runat="server" ID="Password" TextMode="Password" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="Password" |
|||
CssClass="field-validation-error" ErrorMessage="The password field is required." /> |
|||
</li> |
|||
<li> |
|||
<asp:Label runat="server" AssociatedControlID="ConfirmPassword">Confirm password</asp:Label> |
|||
<asp:TextBox runat="server" ID="ConfirmPassword" TextMode="Password" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="ConfirmPassword" |
|||
CssClass="field-validation-error" Display="Dynamic" ErrorMessage="The confirm password field is required." /> |
|||
<asp:CompareValidator runat="server" ControlToCompare="Password" ControlToValidate="ConfirmPassword" |
|||
CssClass="field-validation-error" Display="Dynamic" ErrorMessage="The password and confirmation password do not match." /> |
|||
</li> |
|||
</ol> |
|||
<asp:Button runat="server" CommandName="MoveNext" Text="Register" /> |
|||
</fieldset> |
|||
</ContentTemplate> |
|||
<CustomNavigationTemplate /> |
|||
</asp:CreateUserWizardStep> |
|||
</WizardSteps> |
|||
</asp:CreateUserWizard> |
|||
</asp:Content> |
|||
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.Security; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
using Microsoft.AspNet.Membership.OpenAuth; |
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
public partial class Register : Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
RegisterUser.ContinueDestinationPageUrl = Request.QueryString["ReturnUrl"]; |
|||
} |
|||
|
|||
protected void RegisterUser_CreatedUser(object sender, EventArgs e) |
|||
{ |
|||
FormsAuthentication.SetAuthCookie(RegisterUser.UserName, createPersistentCookie: false); |
|||
|
|||
string continueUrl = RegisterUser.ContinueDestinationPageUrl; |
|||
if (!OpenAuth.IsLocalUrl(continueUrl)) |
|||
{ |
|||
continueUrl = "~/"; |
|||
} |
|||
Response.Redirect(continueUrl); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,35 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
|
|||
|
|||
public partial class Register |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// RegisterUser control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.CreateUserWizard RegisterUser; |
|||
|
|||
/// <summary>
|
|||
/// RegisterUserWizardStep control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.CreateUserWizardStep RegisterUserWizardStep; |
|||
} |
|||
} |
|||
@ -0,0 +1,35 @@ |
|||
<%@ Page Language="C#" Title="Register an external login" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="RegisterExternalLogin.aspx.cs" Inherits="Test_Website_Webforms_NET45.Account.RegisterExternalLogin" %> |
|||
<asp:Content ContentPlaceHolderID="MainContent" runat="server"> |
|||
<hgroup class="title"> |
|||
<h1>Register with your <%: ProviderDisplayName %> account</h1> |
|||
<h2><%: ProviderUserName %>.</h2> |
|||
</hgroup> |
|||
|
|||
|
|||
<asp:ModelErrorMessage runat="server" ModelStateKey="Provider" CssClass="field-validation-error" /> |
|||
|
|||
|
|||
<asp:PlaceHolder runat="server" ID="userNameForm"> |
|||
<fieldset> |
|||
<legend>Association Form</legend> |
|||
<p> |
|||
You've authenticated with <strong><%: ProviderDisplayName %></strong> as |
|||
<strong><%: ProviderUserName %></strong>. Please enter a user name below for the current site |
|||
and click the Log in button. |
|||
</p> |
|||
<ol> |
|||
<li class="email"> |
|||
<asp:Label runat="server" AssociatedControlID="userName">User name</asp:Label> |
|||
<asp:TextBox runat="server" ID="userName" /> |
|||
<asp:RequiredFieldValidator runat="server" ControlToValidate="userName" |
|||
Display="Dynamic" ErrorMessage="User name is required" ValidationGroup="NewUser" /> |
|||
|
|||
<asp:ModelErrorMessage runat="server" ModelStateKey="UserName" CssClass="field-validation-error" /> |
|||
|
|||
</li> |
|||
</ol> |
|||
<asp:Button runat="server" Text="Log in" ValidationGroup="NewUser" OnClick="logIn_Click" /> |
|||
<asp:Button runat="server" Text="Cancel" CausesValidation="false" OnClick="cancel_Click" /> |
|||
</fieldset> |
|||
</asp:PlaceHolder> |
|||
</asp:Content> |
|||
@ -0,0 +1,151 @@ |
|||
using System; |
|||
using System.Web; |
|||
using System.Web.Security; |
|||
using DotNetOpenAuth.AspNet; |
|||
using Microsoft.AspNet.Membership.OpenAuth; |
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
public partial class RegisterExternalLogin : System.Web.UI.Page |
|||
{ |
|||
protected string ProviderName |
|||
{ |
|||
get { return (string)ViewState["ProviderName"] ?? String.Empty; } |
|||
private set { ViewState["ProviderName"] = value; } |
|||
} |
|||
|
|||
protected string ProviderDisplayName |
|||
{ |
|||
get { return (string)ViewState["ProviderDisplayName"] ?? String.Empty; } |
|||
private set { ViewState["ProviderDisplayName"] = value; } |
|||
} |
|||
|
|||
protected string ProviderUserId |
|||
{ |
|||
get { return (string)ViewState["ProviderUserId"] ?? String.Empty; } |
|||
private set { ViewState["ProviderUserId"] = value; } |
|||
} |
|||
|
|||
protected string ProviderUserName |
|||
{ |
|||
get { return (string)ViewState["ProviderUserName"] ?? String.Empty; } |
|||
private set { ViewState["ProviderUserName"] = value; } |
|||
} |
|||
|
|||
protected void Page_Load() |
|||
{ |
|||
if (!IsPostBack) |
|||
{ |
|||
ProcessProviderResult(); |
|||
} |
|||
} |
|||
|
|||
protected void logIn_Click(object sender, EventArgs e) |
|||
{ |
|||
CreateAndLoginUser(); |
|||
} |
|||
|
|||
protected void cancel_Click(object sender, EventArgs e) |
|||
{ |
|||
RedirectToReturnUrl(); |
|||
} |
|||
|
|||
private void ProcessProviderResult() |
|||
{ |
|||
// Process the result from an auth provider in the request
|
|||
ProviderName = OpenAuth.GetProviderNameFromCurrentRequest(); |
|||
|
|||
if (String.IsNullOrEmpty(ProviderName)) |
|||
{ |
|||
Response.Redirect(FormsAuthentication.LoginUrl); |
|||
} |
|||
|
|||
// Build the redirect url for OpenAuth verification
|
|||
var redirectUrl = "~/Account/RegisterExternalLogin"; |
|||
var returnUrl = Request.QueryString["ReturnUrl"]; |
|||
if (!String.IsNullOrEmpty(returnUrl)) |
|||
{ |
|||
redirectUrl += "?ReturnUrl=" + HttpUtility.UrlEncode(returnUrl); |
|||
} |
|||
|
|||
// Verify the OpenAuth payload
|
|||
var authResult = OpenAuth.VerifyAuthentication(redirectUrl); |
|||
ProviderDisplayName = OpenAuth.GetProviderDisplayName(ProviderName); |
|||
if (!authResult.IsSuccessful) |
|||
{ |
|||
Title = "External login failed"; |
|||
userNameForm.Visible = false; |
|||
|
|||
ModelState.AddModelError("Provider", String.Format("External login {0} failed.", ProviderDisplayName)); |
|||
|
|||
// To view this error, enable page tracing in web.config (<system.web><trace enabled="true"/></system.web>) and visit ~/Trace.axd
|
|||
Trace.Warn("OpenAuth", String.Format("There was an error verifying authentication with {0})", ProviderDisplayName), authResult.Error); |
|||
return; |
|||
} |
|||
|
|||
// User has logged in with provider successfully
|
|||
// Check if user is already registered locally
|
|||
if (OpenAuth.Login(authResult.Provider, authResult.ProviderUserId, createPersistentCookie: false)) |
|||
{ |
|||
RedirectToReturnUrl(); |
|||
} |
|||
|
|||
// Store the provider details in ViewState
|
|||
ProviderName = authResult.Provider; |
|||
ProviderUserId = authResult.ProviderUserId; |
|||
ProviderUserName = authResult.UserName; |
|||
|
|||
// Strip the query string from action
|
|||
Form.Action = ResolveUrl(redirectUrl); |
|||
|
|||
if (User.Identity.IsAuthenticated) |
|||
{ |
|||
// User is already authenticated, add the external login and redirect to return url
|
|||
OpenAuth.AddAccountToExistingUser(ProviderName, ProviderUserId, ProviderUserName, User.Identity.Name); |
|||
RedirectToReturnUrl(); |
|||
} |
|||
else |
|||
{ |
|||
// User is new, ask for their desired membership name
|
|||
userName.Text = authResult.UserName; |
|||
} |
|||
} |
|||
|
|||
private void CreateAndLoginUser() |
|||
{ |
|||
if (!IsValid) |
|||
{ |
|||
return; |
|||
} |
|||
|
|||
var createResult = OpenAuth.CreateUser(ProviderName, ProviderUserId, ProviderUserName, userName.Text); |
|||
if (!createResult.IsSuccessful) |
|||
{ |
|||
|
|||
ModelState.AddModelError("UserName", createResult.ErrorMessage); |
|||
|
|||
} |
|||
else |
|||
{ |
|||
// User created & associated OK
|
|||
if (OpenAuth.Login(ProviderName, ProviderUserId, createPersistentCookie: false)) |
|||
{ |
|||
RedirectToReturnUrl(); |
|||
} |
|||
} |
|||
} |
|||
|
|||
private void RedirectToReturnUrl() |
|||
{ |
|||
var returnUrl = Request.QueryString["ReturnUrl"]; |
|||
if (!String.IsNullOrEmpty(returnUrl) && OpenAuth.IsLocalUrl(returnUrl)) |
|||
{ |
|||
Response.Redirect(returnUrl); |
|||
} |
|||
else |
|||
{ |
|||
Response.Redirect("~/"); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,39 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace Test_Website_Webforms_NET45.Account |
|||
{ |
|||
|
|||
|
|||
public partial class RegisterExternalLogin |
|||
{ |
|||
|
|||
|
|||
|
|||
/// <summary>
|
|||
/// userNameForm control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.PlaceHolder userNameForm; |
|||
|
|||
/// <summary>
|
|||
/// userName control.
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// Auto-generated field.
|
|||
/// To modify move field declaration from designer file to code-behind file.
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.TextBox userName; |
|||
|
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
<?xml version="1.0"?> |
|||
<configuration> |
|||
|
|||
<location path="Manage.aspx"> |
|||
<system.web> |
|||
<authorization> |
|||
<deny users="?"/> |
|||
</authorization> |
|||
</system.web> |
|||
</location> |
|||
|
|||
</configuration> |
|||
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using Microsoft.AspNet.Membership.OpenAuth; |
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
internal static class AuthConfig |
|||
{ |
|||
public static void RegisterOpenAuth() |
|||
{ |
|||
// See http://go.microsoft.com/fwlink/?LinkId=252803 for details on setting up this ASP.NET
|
|||
// application to support logging in via external services.
|
|||
|
|||
//OpenAuth.AuthenticationClients.AddTwitter(
|
|||
// consumerKey: "your Twitter consumer key",
|
|||
// consumerSecret: "your Twitter consumer secret");
|
|||
|
|||
//OpenAuth.AuthenticationClients.AddFacebook(
|
|||
// appId: "your Facebook app id",
|
|||
// appSecret: "your Facebook app secret");
|
|||
|
|||
//OpenAuth.AuthenticationClients.AddMicrosoft(
|
|||
// clientId: "your Microsoft account client id",
|
|||
// clientSecret: "your Microsoft account client secret");
|
|||
|
|||
//OpenAuth.AuthenticationClients.AddGoogle();
|
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,36 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.Optimization; |
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
public class BundleConfig |
|||
{ |
|||
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254726
|
|||
public static void RegisterBundles(BundleCollection bundles) |
|||
{ |
|||
bundles.Add(new ScriptBundle("~/bundles/WebFormsJs").Include( |
|||
"~/Scripts/WebForms/WebForms.js", |
|||
"~/Scripts/WebForms/WebUIValidation.js", |
|||
"~/Scripts/WebForms/MenuStandards.js", |
|||
"~/Scripts/WebForms/Focus.js", |
|||
"~/Scripts/WebForms/GridView.js", |
|||
"~/Scripts/WebForms/DetailsView.js", |
|||
"~/Scripts/WebForms/TreeView.js", |
|||
"~/Scripts/WebForms/WebParts.js")); |
|||
|
|||
bundles.Add(new ScriptBundle("~/bundles/MsAjaxJs").Include( |
|||
"~/Scripts/WebForms/MsAjax/MicrosoftAjax.js", |
|||
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxApplicationServices.js", |
|||
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxTimer.js", |
|||
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxWebForms.js")); |
|||
|
|||
// Use the Development version of Modernizr to develop with and learn from. Then, when you’re
|
|||
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need
|
|||
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( |
|||
"~/Scripts/modernizr-*")); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,16 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Web; |
|||
using System.Web.Routing; |
|||
using Microsoft.AspNet.FriendlyUrls; |
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
public static class RouteConfig |
|||
{ |
|||
public static void RegisterRoutes(RouteCollection routes) |
|||
{ |
|||
routes.EnableFriendlyUrls(); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,20 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<bundles version="1.0"> |
|||
<styleBundle path="~/Content/css"> |
|||
<include path="~/Content/Site.css" /> |
|||
</styleBundle> |
|||
<styleBundle path="~/Content/themes/base/css"> |
|||
<include path="~/Content/themes/base/jquery.ui.core.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.resizable.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.selectable.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.accordion.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.autocomplete.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.button.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.dialog.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.slider.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.tabs.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.datepicker.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.progressbar.css" /> |
|||
<include path="~/Content/themes/base/jquery.ui.theme.css" /> |
|||
</styleBundle> |
|||
</bundles> |
|||
@ -0,0 +1,50 @@ |
|||
<%@ Page Title="Contact" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Contact.aspx.cs" Inherits="Test_Website_Webforms_NET45.Contact" %> |
|||
|
|||
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent"> |
|||
<hgroup class="title"> |
|||
<h1><%: Title %>.</h1> |
|||
<h2>Your contact page.</h2> |
|||
</hgroup> |
|||
|
|||
<section class="contact"> |
|||
<header> |
|||
<h3>Phone:</h3> |
|||
</header> |
|||
<p> |
|||
<span class="label">Main:</span> |
|||
<span>425.555.0100</span> |
|||
</p> |
|||
<p> |
|||
<span class="label">After Hours:</span> |
|||
<span>425.555.0199</span> |
|||
</p> |
|||
</section> |
|||
|
|||
<section class="contact"> |
|||
<header> |
|||
<h3>Email:</h3> |
|||
</header> |
|||
<p> |
|||
<span class="label">Support:</span> |
|||
<span><a href="mailto:Support@example.com">Support@example.com</a></span> |
|||
</p> |
|||
<p> |
|||
<span class="label">Marketing:</span> |
|||
<span><a href="mailto:Marketing@example.com">Marketing@example.com</a></span> |
|||
</p> |
|||
<p> |
|||
<span class="label">General:</span> |
|||
<span><a href="mailto:General@example.com">General@example.com</a></span> |
|||
</p> |
|||
</section> |
|||
|
|||
<section class="contact"> |
|||
<header> |
|||
<h3>Address:</h3> |
|||
</header> |
|||
<p> |
|||
One Microsoft Way<br /> |
|||
Redmond, WA 98052-6399 |
|||
</p> |
|||
</section> |
|||
</asp:Content> |
|||
@ -0,0 +1,17 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
public partial class Contact : Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,15 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
public partial class Contact |
|||
{ |
|||
} |
|||
} |
|||
@ -0,0 +1,734 @@ |
|||
html { |
|||
background-color: #e2e2e2; |
|||
margin: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
body { |
|||
background-color: #fff; |
|||
border-top: solid 10px #000; |
|||
color: #333; |
|||
font-size: .85em; |
|||
font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif; |
|||
margin: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
a { |
|||
color: #333; |
|||
outline: none; |
|||
padding-left: 3px; |
|||
padding-right: 3px; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
a:link, a:visited, |
|||
a:active, a:hover { |
|||
color: #333; |
|||
} |
|||
|
|||
a:hover { |
|||
background-color: #c7d1d6; |
|||
} |
|||
|
|||
header, footer, hgroup, |
|||
nav, section { |
|||
display: block; |
|||
} |
|||
|
|||
mark { |
|||
background-color: #a6dbed; |
|||
padding-left: 5px; |
|||
padding-right: 5px; |
|||
} |
|||
|
|||
.float-left { |
|||
float: left; |
|||
} |
|||
|
|||
.float-right { |
|||
float: right; |
|||
} |
|||
|
|||
.clear-fix:after { |
|||
content: "."; |
|||
clear: both; |
|||
display: block; |
|||
height: 0; |
|||
visibility: hidden; |
|||
} |
|||
|
|||
h1, h2, h3, |
|||
h4, h5, h6 { |
|||
color: #000; |
|||
margin-bottom: 0; |
|||
padding-bottom: 0; |
|||
} |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
} |
|||
|
|||
h2 { |
|||
font-size: 1.75em; |
|||
} |
|||
|
|||
h3 { |
|||
font-size: 1.2em; |
|||
} |
|||
|
|||
h4 { |
|||
font-size: 1.1em; |
|||
} |
|||
|
|||
h5, h6 { |
|||
font-size: 1em; |
|||
} |
|||
|
|||
h5 a:link, h5 a:visited, h5 a:active { |
|||
padding: 0; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
/* main layout |
|||
----------------------------------------------------------*/ |
|||
.content-wrapper { |
|||
margin: 0 auto; |
|||
max-width: 960px; |
|||
} |
|||
|
|||
#body { |
|||
background-color: #efeeef; |
|||
clear: both; |
|||
padding-bottom: 35px; |
|||
} |
|||
|
|||
.main-content { |
|||
background: url("../Images/accent.png") no-repeat; |
|||
padding-left: 10px; |
|||
padding-top: 30px; |
|||
} |
|||
|
|||
.featured + .main-content { |
|||
background: url("../Images/heroAccent.png") no-repeat; |
|||
} |
|||
|
|||
header .content-wrapper { |
|||
padding-top: 20px; |
|||
} |
|||
|
|||
footer { |
|||
clear: both; |
|||
background-color: #e2e2e2; |
|||
font-size: .8em; |
|||
height: 100px; |
|||
} |
|||
|
|||
|
|||
/* site title |
|||
----------------------------------------------------------*/ |
|||
.site-title { |
|||
color: #c8c8c8; |
|||
font-family: Rockwell, Consolas, "Courier New", Courier, monospace; |
|||
font-size: 2.3em; |
|||
margin: 0; |
|||
} |
|||
|
|||
.site-title a, .site-title a:hover, .site-title a:active { |
|||
background: none; |
|||
color: #c8c8c8; |
|||
outline: none; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
|
|||
/* login |
|||
----------------------------------------------------------*/ |
|||
#login { |
|||
display: block; |
|||
font-size: .85em; |
|||
margin: 0 0 10px; |
|||
text-align: right; |
|||
} |
|||
|
|||
#login a { |
|||
background-color: #d3dce0; |
|||
margin-left: 10px; |
|||
margin-right: 3px; |
|||
padding: 2px 3px; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#login a.username { |
|||
background: none; |
|||
margin-left: 0px; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
#login ul { |
|||
margin: 0; |
|||
} |
|||
|
|||
#login li { |
|||
display: inline; |
|||
list-style: none; |
|||
} |
|||
|
|||
|
|||
/* menu |
|||
----------------------------------------------------------*/ |
|||
ul#menu { |
|||
font-size: 1.3em; |
|||
font-weight: 600; |
|||
margin: 0 0 5px; |
|||
padding: 0; |
|||
text-align: right; |
|||
} |
|||
|
|||
ul#menu li { |
|||
display: inline; |
|||
list-style: none; |
|||
padding-left: 15px; |
|||
} |
|||
|
|||
ul#menu li a { |
|||
background: none; |
|||
color: #999; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
ul#menu li a:hover { |
|||
color: #333; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
|
|||
/* page elements |
|||
----------------------------------------------------------*/ |
|||
/* featured */ |
|||
.featured { |
|||
background-color: #fff; |
|||
} |
|||
|
|||
.featured .content-wrapper { |
|||
background-color: #7ac0da; |
|||
background-image: -ms-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%); |
|||
background-image: -o-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%); |
|||
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #7ac0da), color-stop(1, #a4d4e6)); |
|||
background-image: -webkit-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%); |
|||
background-image: linear-gradient(left, #7ac0da 0%, #a4d4e6 100%); |
|||
color: #3e5667; |
|||
padding: 20px 40px 30px 40px; |
|||
} |
|||
|
|||
.featured hgroup.title h1, .featured hgroup.title h2 { |
|||
color: #fff; |
|||
} |
|||
|
|||
.featured p { |
|||
font-size: 1.1em; |
|||
} |
|||
|
|||
/* page titles */ |
|||
hgroup.title { |
|||
margin-bottom: 10px; |
|||
} |
|||
|
|||
hgroup.title h1, hgroup.title h2 { |
|||
display: inline; |
|||
} |
|||
|
|||
hgroup.title h2 { |
|||
font-weight: normal; |
|||
margin-left: 3px; |
|||
} |
|||
|
|||
/* features */ |
|||
section.feature { |
|||
width: 300px; |
|||
float: left; |
|||
padding: 10px; |
|||
} |
|||
|
|||
/* ordered list */ |
|||
ol.round { |
|||
list-style-type: none; |
|||
padding-left: 0; |
|||
} |
|||
|
|||
ol.round li { |
|||
margin: 25px 0; |
|||
padding-left: 45px; |
|||
} |
|||
|
|||
ol.round li.zero { |
|||
background: url("../Images/orderedList0.png") no-repeat; |
|||
} |
|||
|
|||
ol.round li.one { |
|||
background: url("../Images/orderedList1.png") no-repeat; |
|||
} |
|||
|
|||
ol.round li.two { |
|||
background: url("../Images/orderedList2.png") no-repeat; |
|||
} |
|||
|
|||
ol.round li.three { |
|||
background: url("../Images/orderedList3.png") no-repeat; |
|||
} |
|||
|
|||
ol.round li.four { |
|||
background: url("../Images/orderedList4.png") no-repeat; |
|||
} |
|||
|
|||
ol.round li.five { |
|||
background: url("../Images/orderedList5.png") no-repeat; |
|||
} |
|||
|
|||
ol.round li.six { |
|||
background: url("../Images/orderedList6.png") no-repeat; |
|||
} |
|||
|
|||
ol.round li.seven { |
|||
background: url("../Images/orderedList7.png") no-repeat; |
|||
} |
|||
|
|||
ol.round li.eight { |
|||
background: url("../Images/orderedList8.png") no-repeat; |
|||
} |
|||
|
|||
ol.round li.nine { |
|||
background: url("../Images/orderedList9.png") no-repeat; |
|||
} |
|||
|
|||
/* content */ |
|||
article { |
|||
float: left; |
|||
width: 70%; |
|||
} |
|||
|
|||
aside { |
|||
float: right; |
|||
width: 25%; |
|||
} |
|||
|
|||
aside ul { |
|||
list-style: none; |
|||
padding: 0; |
|||
} |
|||
|
|||
aside ul li { |
|||
background: url("../Images/bullet.png") no-repeat 0 50%; |
|||
padding: 2px 0 2px 20px; |
|||
} |
|||
|
|||
.label { |
|||
font-weight: 700; |
|||
} |
|||
|
|||
/* login page */ |
|||
#loginForm { |
|||
border-right: solid 2px #c8c8c8; |
|||
float: left; |
|||
width: 55%; |
|||
} |
|||
|
|||
#loginForm .validation-error { |
|||
display: block; |
|||
margin-left: 15px; |
|||
} |
|||
|
|||
#socialLoginForm { |
|||
margin-left: 40px; |
|||
float: left; |
|||
width: 40%; |
|||
} |
|||
|
|||
#socialLoginForm h2 { |
|||
margin-bottom: 5px; |
|||
} |
|||
|
|||
fieldset.open-auth-providers { |
|||
margin-top: 15px; |
|||
} |
|||
|
|||
fieldset.open-auth-providers button { |
|||
margin-bottom: 12px; |
|||
} |
|||
|
|||
/* contact */ |
|||
.contact h3 { |
|||
font-size: 1.2em; |
|||
} |
|||
|
|||
.contact p { |
|||
margin: 5px 0 0 10px; |
|||
} |
|||
|
|||
.contact iframe { |
|||
border: 1px solid #333; |
|||
margin: 5px 0 0 10px; |
|||
} |
|||
|
|||
/* forms */ |
|||
fieldset { |
|||
border: none; |
|||
margin: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
fieldset legend { |
|||
display: none; |
|||
} |
|||
|
|||
fieldset ol { |
|||
padding: 0; |
|||
list-style: none; |
|||
} |
|||
|
|||
fieldset ol li { |
|||
padding-bottom: 5px; |
|||
} |
|||
|
|||
label { |
|||
display: block; |
|||
font-size: 1.2em; |
|||
font-weight: 600; |
|||
} |
|||
|
|||
label.checkbox { |
|||
display: inline; |
|||
} |
|||
|
|||
input, textarea { |
|||
border: 1px solid #e2e2e2; |
|||
background: #fff; |
|||
color: #333; |
|||
font-size: 1.2em; |
|||
margin: 5px 0 6px 0; |
|||
padding: 5px; |
|||
width: 300px; |
|||
} |
|||
|
|||
textarea { |
|||
font-family: inherit; |
|||
width: 500px; |
|||
} |
|||
|
|||
input:focus, textarea:focus { |
|||
border: 1px solid #7ac0da; |
|||
} |
|||
|
|||
input[type="checkbox"] { |
|||
background: transparent; |
|||
border: inherit; |
|||
width: auto; |
|||
} |
|||
|
|||
input[type="submit"], |
|||
input[type="button"], |
|||
button { |
|||
background-color: #d3dce0; |
|||
border: 1px solid #787878; |
|||
cursor: pointer; |
|||
font-size: 1.2em; |
|||
font-weight: 600; |
|||
padding: 7px; |
|||
margin-right: 8px; |
|||
width: auto; |
|||
} |
|||
|
|||
td input[type="submit"], |
|||
td input[type="button"], |
|||
td button { |
|||
font-size: 1em; |
|||
padding: 4px; |
|||
margin-right: 4px; |
|||
} |
|||
|
|||
/* info and errors */ |
|||
.message-info { |
|||
border: 1px solid; |
|||
clear: both; |
|||
padding: 10px 20px; |
|||
} |
|||
|
|||
.message-error { |
|||
clear: both; |
|||
color: #e80c4d; |
|||
font-size: 1.1em; |
|||
font-weight: bold; |
|||
margin: 20px 0 10px 0; |
|||
} |
|||
|
|||
.message-success { |
|||
color: #7ac0da; |
|||
font-size: 1.3em; |
|||
font-weight: bold; |
|||
margin: 20px 0 10px 0; |
|||
} |
|||
|
|||
.error { |
|||
color: #e80c4d; |
|||
} |
|||
|
|||
/* styles for validation helpers */ |
|||
.field-validation-error { |
|||
color: #e80c4d; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.field-validation-valid { |
|||
display: none; |
|||
} |
|||
|
|||
input.input-validation-error { |
|||
border: 1px solid #e80c4d; |
|||
} |
|||
|
|||
input[type="checkbox"].input-validation-error { |
|||
border: 0 none; |
|||
} |
|||
|
|||
.validation-summary-errors { |
|||
color: #e80c4d; |
|||
font-weight: bold; |
|||
font-size: 1.1em; |
|||
} |
|||
|
|||
.validation-summary-valid { |
|||
display: none; |
|||
} |
|||
|
|||
/* tables |
|||
----------------------------------------------------------*/ |
|||
table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0; |
|||
margin-top: 0.75em; |
|||
border: 0 none; |
|||
} |
|||
|
|||
th { |
|||
font-size: 1.2em; |
|||
text-align: left; |
|||
border: none 0px; |
|||
padding-left: 0; |
|||
} |
|||
|
|||
th a { |
|||
display: block; |
|||
position: relative; |
|||
|
|||
} |
|||
|
|||
th a:link, th a:visited, th a:active, th a:hover { |
|||
color: #333; |
|||
font-weight: 600; |
|||
text-decoration: none; |
|||
padding: 0; |
|||
} |
|||
|
|||
th a:hover { |
|||
color: #000; |
|||
} |
|||
|
|||
th.asc a, th.desc a { |
|||
margin-right: .75em; |
|||
} |
|||
|
|||
th.asc a:after, th.desc a:after { |
|||
display: block; |
|||
position: absolute; |
|||
right: 0em; |
|||
top: 0; |
|||
font-size: 0.75em; |
|||
} |
|||
|
|||
th.asc a:after { |
|||
content: '▲'; |
|||
} |
|||
|
|||
th.desc a:after { |
|||
content: '▼'; |
|||
} |
|||
|
|||
td { |
|||
padding: 0.25em 2em 0.25em 0em; |
|||
border: 0 none; |
|||
} |
|||
|
|||
tr.pager td { |
|||
padding: 0 0.25em 0 0; |
|||
} |
|||
|
|||
|
|||
/******************** |
|||
* Mobile Styles * |
|||
********************/ |
|||
@media only screen and (max-width: 850px) { |
|||
|
|||
/* header |
|||
----------------------------------------------------------*/ |
|||
header .float-left, |
|||
header .float-right { |
|||
float: none; |
|||
} |
|||
|
|||
/* logo */ |
|||
header .site-title { |
|||
margin: 10px; |
|||
text-align: center; |
|||
} |
|||
|
|||
/* login */ |
|||
#login { |
|||
font-size: .85em; |
|||
margin: 0 0 12px; |
|||
text-align: center; |
|||
} |
|||
|
|||
#login ul { |
|||
margin: 5px 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
#login li { |
|||
display: inline; |
|||
list-style: none; |
|||
margin: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
#login a { |
|||
background: none; |
|||
color: #999; |
|||
font-weight: 600; |
|||
margin: 2px; |
|||
padding: 0; |
|||
} |
|||
|
|||
#login a:hover { |
|||
color: #333; |
|||
} |
|||
|
|||
/* menu */ |
|||
nav { |
|||
margin-bottom: 5px; |
|||
} |
|||
|
|||
ul#menu { |
|||
margin: 0; |
|||
padding: 0; |
|||
text-align: center; |
|||
} |
|||
|
|||
ul#menu li { |
|||
margin: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
|
|||
/* main layout |
|||
----------------------------------------------------------*/ |
|||
.main-content, |
|||
.featured + .main-content { |
|||
background-position: 10px 0; |
|||
} |
|||
|
|||
.content-wrapper { |
|||
padding-right: 10px; |
|||
padding-left: 10px; |
|||
} |
|||
|
|||
.featured .content-wrapper { |
|||
padding: 10px; |
|||
} |
|||
|
|||
/* page content */ |
|||
article, aside { |
|||
float: none; |
|||
width: 100%; |
|||
} |
|||
|
|||
/* ordered list */ |
|||
ol.round { |
|||
list-style-type: none; |
|||
padding-left: 0; |
|||
} |
|||
|
|||
ol.round li { |
|||
padding-left: 10px; |
|||
margin: 25px 0; |
|||
} |
|||
|
|||
ol.round li.zero, |
|||
ol.round li.one, |
|||
ol.round li.two, |
|||
ol.round li.three, |
|||
ol.round li.four, |
|||
ol.round li.five, |
|||
ol.round li.six, |
|||
ol.round li.seven, |
|||
ol.round li.eight, |
|||
ol.round li.nine { |
|||
background: none; |
|||
} |
|||
|
|||
/* features */ |
|||
section.feature { |
|||
float: none; |
|||
padding: 10px; |
|||
width: auto; |
|||
} |
|||
|
|||
section.feature img { |
|||
color: #999; |
|||
content: attr(alt); |
|||
font-size: 1.5em; |
|||
font-weight: 600; |
|||
} |
|||
|
|||
/* forms */ |
|||
input { |
|||
width: 90%; |
|||
} |
|||
|
|||
|
|||
|
|||
/* login page */ |
|||
#loginForm { |
|||
border-right: none; |
|||
float: none; |
|||
width: auto; |
|||
} |
|||
|
|||
#loginForm .validation-error { |
|||
display: block; |
|||
margin-left: 15px; |
|||
} |
|||
|
|||
#socialLoginForm { |
|||
margin-left: 0; |
|||
float: none; |
|||
width: auto; |
|||
} |
|||
|
|||
/* footer |
|||
----------------------------------------------------------*/ |
|||
footer .float-left, |
|||
footer .float-right { |
|||
float: none; |
|||
} |
|||
|
|||
footer { |
|||
text-align: center; |
|||
height: auto; |
|||
padding: 10px 0; |
|||
} |
|||
|
|||
footer p { |
|||
margin: 0; |
|||
} |
|||
} |
|||
/* END: Mobile Styles */ |
|||
|
After Width: | Height: | Size: 180 B |
|
After Width: | Height: | Size: 178 B |
|
After Width: | Height: | Size: 120 B |
|
After Width: | Height: | Size: 105 B |
|
After Width: | Height: | Size: 111 B |
|
After Width: | Height: | Size: 110 B |
|
After Width: | Height: | Size: 119 B |
|
After Width: | Height: | Size: 101 B |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
@ -0,0 +1,464 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.tabs.css, jquery.ui.theme.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
|
|||
/* Layout helpers |
|||
----------------------------------*/ |
|||
.ui-helper-hidden { display: none; } |
|||
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } |
|||
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } |
|||
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; } |
|||
.ui-helper-clearfix:after { clear: both; } |
|||
.ui-helper-clearfix { zoom: 1; } |
|||
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } |
|||
|
|||
|
|||
/* Interaction Cues |
|||
----------------------------------*/ |
|||
.ui-state-disabled { cursor: default !important; } |
|||
|
|||
|
|||
/* Icons |
|||
----------------------------------*/ |
|||
|
|||
/* states and images */ |
|||
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } |
|||
|
|||
|
|||
/* Misc visuals |
|||
----------------------------------*/ |
|||
|
|||
/* Overlays */ |
|||
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } |
|||
|
|||
/* IE/Win - Fix animation bug - #4615 */ |
|||
.ui-accordion { width: 100%; } |
|||
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } |
|||
.ui-accordion .ui-accordion-li-fix { display: inline; } |
|||
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } |
|||
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } |
|||
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } |
|||
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } |
|||
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } |
|||
.ui-accordion .ui-accordion-content-active { display: block; } |
|||
|
|||
.ui-autocomplete { position: absolute; cursor: default; } |
|||
|
|||
/* workarounds */ |
|||
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ |
|||
|
|||
/* |
|||
* jQuery UI Menu 1.8.24 |
|||
* |
|||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Menu#theming |
|||
*/ |
|||
.ui-menu { |
|||
list-style:none; |
|||
padding: 2px; |
|||
margin: 0; |
|||
display:block; |
|||
float: left; |
|||
} |
|||
.ui-menu .ui-menu { |
|||
margin-top: -3px; |
|||
} |
|||
.ui-menu .ui-menu-item { |
|||
margin:0; |
|||
padding: 0; |
|||
zoom: 1; |
|||
float: left; |
|||
clear: left; |
|||
width: 100%; |
|||
} |
|||
.ui-menu .ui-menu-item a { |
|||
text-decoration:none; |
|||
display:block; |
|||
padding:.2em .4em; |
|||
line-height:1.5; |
|||
zoom:1; |
|||
} |
|||
.ui-menu .ui-menu-item a.ui-state-hover, |
|||
.ui-menu .ui-menu-item a.ui-state-active { |
|||
font-weight: normal; |
|||
margin: -1px; |
|||
} |
|||
|
|||
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */ |
|||
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */ |
|||
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */ |
|||
.ui-button-icons-only { width: 3.4em; } |
|||
button.ui-button-icons-only { width: 3.7em; } |
|||
|
|||
/*button text element */ |
|||
.ui-button .ui-button-text { display: block; line-height: 1.4; } |
|||
.ui-button-text-only .ui-button-text { padding: .4em 1em; } |
|||
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } |
|||
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } |
|||
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } |
|||
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } |
|||
/* no icon support for input elements, provide padding by default */ |
|||
input.ui-button { padding: .4em 1em; } |
|||
|
|||
/*button icon element(s) */ |
|||
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; } |
|||
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } |
|||
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; } |
|||
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } |
|||
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } |
|||
|
|||
/*button sets*/ |
|||
.ui-buttonset { margin-right: 7px; } |
|||
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } |
|||
|
|||
/* workarounds */ |
|||
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ |
|||
|
|||
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; } |
|||
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } |
|||
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } |
|||
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } |
|||
.ui-datepicker .ui-datepicker-prev { left:2px; } |
|||
.ui-datepicker .ui-datepicker-next { right:2px; } |
|||
.ui-datepicker .ui-datepicker-prev-hover { left:1px; } |
|||
.ui-datepicker .ui-datepicker-next-hover { right:1px; } |
|||
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } |
|||
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } |
|||
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } |
|||
.ui-datepicker select.ui-datepicker-month-year {width: 100%;} |
|||
.ui-datepicker select.ui-datepicker-month, |
|||
.ui-datepicker select.ui-datepicker-year { width: 49%;} |
|||
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } |
|||
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } |
|||
.ui-datepicker td { border: 0; padding: 1px; } |
|||
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } |
|||
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } |
|||
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } |
|||
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } |
|||
|
|||
/* with multiple calendars */ |
|||
.ui-datepicker.ui-datepicker-multi { width:auto; } |
|||
.ui-datepicker-multi .ui-datepicker-group { float:left; } |
|||
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } |
|||
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } |
|||
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } |
|||
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } |
|||
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } |
|||
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } |
|||
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } |
|||
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; } |
|||
|
|||
/* RTL support */ |
|||
.ui-datepicker-rtl { direction: rtl; } |
|||
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } |
|||
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } |
|||
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } |
|||
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } |
|||
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } |
|||
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } |
|||
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } |
|||
.ui-datepicker-rtl .ui-datepicker-group { float:right; } |
|||
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } |
|||
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } |
|||
|
|||
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ |
|||
.ui-datepicker-cover { |
|||
position: absolute; /*must have*/ |
|||
z-index: -1; /*must have*/ |
|||
filter: mask(); /*must have*/ |
|||
top: -4px; /*must have*/ |
|||
left: -4px; /*must have*/ |
|||
width: 200px; /*must have*/ |
|||
height: 200px; /*must have*/ |
|||
} |
|||
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } |
|||
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } |
|||
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } |
|||
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } |
|||
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } |
|||
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } |
|||
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } |
|||
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } |
|||
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } |
|||
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } |
|||
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } |
|||
.ui-draggable .ui-dialog-titlebar { cursor: move; } |
|||
|
|||
.ui-progressbar { height:2em; text-align: left; overflow: hidden; } |
|||
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } |
|||
.ui-resizable { position: relative;} |
|||
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } |
|||
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } |
|||
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } |
|||
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } |
|||
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } |
|||
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } |
|||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } |
|||
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } |
|||
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } |
|||
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} |
|||
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } |
|||
|
|||
.ui-slider { position: relative; text-align: left; } |
|||
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } |
|||
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } |
|||
|
|||
.ui-slider-horizontal { height: .8em; } |
|||
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } |
|||
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } |
|||
.ui-slider-horizontal .ui-slider-range-min { left: 0; } |
|||
.ui-slider-horizontal .ui-slider-range-max { right: 0; } |
|||
|
|||
.ui-slider-vertical { width: .8em; height: 100px; } |
|||
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } |
|||
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } |
|||
.ui-slider-vertical .ui-slider-range-min { bottom: 0; } |
|||
.ui-slider-vertical .ui-slider-range-max { top: 0; } |
|||
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ |
|||
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } |
|||
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } |
|||
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } |
|||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } |
|||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } |
|||
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ |
|||
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } |
|||
.ui-tabs .ui-tabs-hide { display: none !important; } |
|||
|
|||
/* Component containers |
|||
----------------------------------*/ |
|||
.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } |
|||
.ui-widget .ui-widget { font-size: 1em; } |
|||
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } |
|||
.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; } |
|||
.ui-widget-content a { color: #222222/*{fcContent}*/; } |
|||
.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; } |
|||
.ui-widget-header a { color: #222222/*{fcHeader}*/; } |
|||
|
|||
/* Interaction states |
|||
----------------------------------*/ |
|||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; } |
|||
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; } |
|||
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(images/ui-bg_glass_75_dadada_1x400.png)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; } |
|||
.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; } |
|||
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; } |
|||
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; } |
|||
.ui-widget :active { outline: none; } |
|||
|
|||
/* Interaction Cues |
|||
----------------------------------*/ |
|||
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; } |
|||
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; } |
|||
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; } |
|||
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; } |
|||
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; } |
|||
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } |
|||
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } |
|||
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } |
|||
|
|||
/* Icons |
|||
----------------------------------*/ |
|||
|
|||
/* states and images */ |
|||
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } |
|||
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } |
|||
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; } |
|||
.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; } |
|||
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; } |
|||
.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; } |
|||
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; } |
|||
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; } |
|||
|
|||
/* positioning */ |
|||
.ui-icon-carat-1-n { background-position: 0 0; } |
|||
.ui-icon-carat-1-ne { background-position: -16px 0; } |
|||
.ui-icon-carat-1-e { background-position: -32px 0; } |
|||
.ui-icon-carat-1-se { background-position: -48px 0; } |
|||
.ui-icon-carat-1-s { background-position: -64px 0; } |
|||
.ui-icon-carat-1-sw { background-position: -80px 0; } |
|||
.ui-icon-carat-1-w { background-position: -96px 0; } |
|||
.ui-icon-carat-1-nw { background-position: -112px 0; } |
|||
.ui-icon-carat-2-n-s { background-position: -128px 0; } |
|||
.ui-icon-carat-2-e-w { background-position: -144px 0; } |
|||
.ui-icon-triangle-1-n { background-position: 0 -16px; } |
|||
.ui-icon-triangle-1-ne { background-position: -16px -16px; } |
|||
.ui-icon-triangle-1-e { background-position: -32px -16px; } |
|||
.ui-icon-triangle-1-se { background-position: -48px -16px; } |
|||
.ui-icon-triangle-1-s { background-position: -64px -16px; } |
|||
.ui-icon-triangle-1-sw { background-position: -80px -16px; } |
|||
.ui-icon-triangle-1-w { background-position: -96px -16px; } |
|||
.ui-icon-triangle-1-nw { background-position: -112px -16px; } |
|||
.ui-icon-triangle-2-n-s { background-position: -128px -16px; } |
|||
.ui-icon-triangle-2-e-w { background-position: -144px -16px; } |
|||
.ui-icon-arrow-1-n { background-position: 0 -32px; } |
|||
.ui-icon-arrow-1-ne { background-position: -16px -32px; } |
|||
.ui-icon-arrow-1-e { background-position: -32px -32px; } |
|||
.ui-icon-arrow-1-se { background-position: -48px -32px; } |
|||
.ui-icon-arrow-1-s { background-position: -64px -32px; } |
|||
.ui-icon-arrow-1-sw { background-position: -80px -32px; } |
|||
.ui-icon-arrow-1-w { background-position: -96px -32px; } |
|||
.ui-icon-arrow-1-nw { background-position: -112px -32px; } |
|||
.ui-icon-arrow-2-n-s { background-position: -128px -32px; } |
|||
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } |
|||
.ui-icon-arrow-2-e-w { background-position: -160px -32px; } |
|||
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } |
|||
.ui-icon-arrowstop-1-n { background-position: -192px -32px; } |
|||
.ui-icon-arrowstop-1-e { background-position: -208px -32px; } |
|||
.ui-icon-arrowstop-1-s { background-position: -224px -32px; } |
|||
.ui-icon-arrowstop-1-w { background-position: -240px -32px; } |
|||
.ui-icon-arrowthick-1-n { background-position: 0 -48px; } |
|||
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } |
|||
.ui-icon-arrowthick-1-e { background-position: -32px -48px; } |
|||
.ui-icon-arrowthick-1-se { background-position: -48px -48px; } |
|||
.ui-icon-arrowthick-1-s { background-position: -64px -48px; } |
|||
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } |
|||
.ui-icon-arrowthick-1-w { background-position: -96px -48px; } |
|||
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } |
|||
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } |
|||
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } |
|||
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } |
|||
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } |
|||
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } |
|||
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } |
|||
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } |
|||
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } |
|||
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } |
|||
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } |
|||
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } |
|||
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } |
|||
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } |
|||
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } |
|||
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } |
|||
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } |
|||
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } |
|||
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } |
|||
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } |
|||
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } |
|||
.ui-icon-arrow-4 { background-position: 0 -80px; } |
|||
.ui-icon-arrow-4-diag { background-position: -16px -80px; } |
|||
.ui-icon-extlink { background-position: -32px -80px; } |
|||
.ui-icon-newwin { background-position: -48px -80px; } |
|||
.ui-icon-refresh { background-position: -64px -80px; } |
|||
.ui-icon-shuffle { background-position: -80px -80px; } |
|||
.ui-icon-transfer-e-w { background-position: -96px -80px; } |
|||
.ui-icon-transferthick-e-w { background-position: -112px -80px; } |
|||
.ui-icon-folder-collapsed { background-position: 0 -96px; } |
|||
.ui-icon-folder-open { background-position: -16px -96px; } |
|||
.ui-icon-document { background-position: -32px -96px; } |
|||
.ui-icon-document-b { background-position: -48px -96px; } |
|||
.ui-icon-note { background-position: -64px -96px; } |
|||
.ui-icon-mail-closed { background-position: -80px -96px; } |
|||
.ui-icon-mail-open { background-position: -96px -96px; } |
|||
.ui-icon-suitcase { background-position: -112px -96px; } |
|||
.ui-icon-comment { background-position: -128px -96px; } |
|||
.ui-icon-person { background-position: -144px -96px; } |
|||
.ui-icon-print { background-position: -160px -96px; } |
|||
.ui-icon-trash { background-position: -176px -96px; } |
|||
.ui-icon-locked { background-position: -192px -96px; } |
|||
.ui-icon-unlocked { background-position: -208px -96px; } |
|||
.ui-icon-bookmark { background-position: -224px -96px; } |
|||
.ui-icon-tag { background-position: -240px -96px; } |
|||
.ui-icon-home { background-position: 0 -112px; } |
|||
.ui-icon-flag { background-position: -16px -112px; } |
|||
.ui-icon-calendar { background-position: -32px -112px; } |
|||
.ui-icon-cart { background-position: -48px -112px; } |
|||
.ui-icon-pencil { background-position: -64px -112px; } |
|||
.ui-icon-clock { background-position: -80px -112px; } |
|||
.ui-icon-disk { background-position: -96px -112px; } |
|||
.ui-icon-calculator { background-position: -112px -112px; } |
|||
.ui-icon-zoomin { background-position: -128px -112px; } |
|||
.ui-icon-zoomout { background-position: -144px -112px; } |
|||
.ui-icon-search { background-position: -160px -112px; } |
|||
.ui-icon-wrench { background-position: -176px -112px; } |
|||
.ui-icon-gear { background-position: -192px -112px; } |
|||
.ui-icon-heart { background-position: -208px -112px; } |
|||
.ui-icon-star { background-position: -224px -112px; } |
|||
.ui-icon-link { background-position: -240px -112px; } |
|||
.ui-icon-cancel { background-position: 0 -128px; } |
|||
.ui-icon-plus { background-position: -16px -128px; } |
|||
.ui-icon-plusthick { background-position: -32px -128px; } |
|||
.ui-icon-minus { background-position: -48px -128px; } |
|||
.ui-icon-minusthick { background-position: -64px -128px; } |
|||
.ui-icon-close { background-position: -80px -128px; } |
|||
.ui-icon-closethick { background-position: -96px -128px; } |
|||
.ui-icon-key { background-position: -112px -128px; } |
|||
.ui-icon-lightbulb { background-position: -128px -128px; } |
|||
.ui-icon-scissors { background-position: -144px -128px; } |
|||
.ui-icon-clipboard { background-position: -160px -128px; } |
|||
.ui-icon-copy { background-position: -176px -128px; } |
|||
.ui-icon-contact { background-position: -192px -128px; } |
|||
.ui-icon-image { background-position: -208px -128px; } |
|||
.ui-icon-video { background-position: -224px -128px; } |
|||
.ui-icon-script { background-position: -240px -128px; } |
|||
.ui-icon-alert { background-position: 0 -144px; } |
|||
.ui-icon-info { background-position: -16px -144px; } |
|||
.ui-icon-notice { background-position: -32px -144px; } |
|||
.ui-icon-help { background-position: -48px -144px; } |
|||
.ui-icon-check { background-position: -64px -144px; } |
|||
.ui-icon-bullet { background-position: -80px -144px; } |
|||
.ui-icon-radio-off { background-position: -96px -144px; } |
|||
.ui-icon-radio-on { background-position: -112px -144px; } |
|||
.ui-icon-pin-w { background-position: -128px -144px; } |
|||
.ui-icon-pin-s { background-position: -144px -144px; } |
|||
.ui-icon-play { background-position: 0 -160px; } |
|||
.ui-icon-pause { background-position: -16px -160px; } |
|||
.ui-icon-seek-next { background-position: -32px -160px; } |
|||
.ui-icon-seek-prev { background-position: -48px -160px; } |
|||
.ui-icon-seek-end { background-position: -64px -160px; } |
|||
.ui-icon-seek-start { background-position: -80px -160px; } |
|||
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ |
|||
.ui-icon-seek-first { background-position: -80px -160px; } |
|||
.ui-icon-stop { background-position: -96px -160px; } |
|||
.ui-icon-eject { background-position: -112px -160px; } |
|||
.ui-icon-volume-off { background-position: -128px -160px; } |
|||
.ui-icon-volume-on { background-position: -144px -160px; } |
|||
.ui-icon-power { background-position: 0 -176px; } |
|||
.ui-icon-signal-diag { background-position: -16px -176px; } |
|||
.ui-icon-signal { background-position: -32px -176px; } |
|||
.ui-icon-battery-0 { background-position: -48px -176px; } |
|||
.ui-icon-battery-1 { background-position: -64px -176px; } |
|||
.ui-icon-battery-2 { background-position: -80px -176px; } |
|||
.ui-icon-battery-3 { background-position: -96px -176px; } |
|||
.ui-icon-circle-plus { background-position: 0 -192px; } |
|||
.ui-icon-circle-minus { background-position: -16px -192px; } |
|||
.ui-icon-circle-close { background-position: -32px -192px; } |
|||
.ui-icon-circle-triangle-e { background-position: -48px -192px; } |
|||
.ui-icon-circle-triangle-s { background-position: -64px -192px; } |
|||
.ui-icon-circle-triangle-w { background-position: -80px -192px; } |
|||
.ui-icon-circle-triangle-n { background-position: -96px -192px; } |
|||
.ui-icon-circle-arrow-e { background-position: -112px -192px; } |
|||
.ui-icon-circle-arrow-s { background-position: -128px -192px; } |
|||
.ui-icon-circle-arrow-w { background-position: -144px -192px; } |
|||
.ui-icon-circle-arrow-n { background-position: -160px -192px; } |
|||
.ui-icon-circle-zoomin { background-position: -176px -192px; } |
|||
.ui-icon-circle-zoomout { background-position: -192px -192px; } |
|||
.ui-icon-circle-check { background-position: -208px -192px; } |
|||
.ui-icon-circlesmall-plus { background-position: 0 -208px; } |
|||
.ui-icon-circlesmall-minus { background-position: -16px -208px; } |
|||
.ui-icon-circlesmall-close { background-position: -32px -208px; } |
|||
.ui-icon-squaresmall-plus { background-position: -48px -208px; } |
|||
.ui-icon-squaresmall-minus { background-position: -64px -208px; } |
|||
.ui-icon-squaresmall-close { background-position: -80px -208px; } |
|||
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } |
|||
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } |
|||
.ui-icon-grip-solid-vertical { background-position: -32px -224px; } |
|||
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } |
|||
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } |
|||
.ui-icon-grip-diagonal-se { background-position: -80px -224px; } |
|||
|
|||
|
|||
/* Misc visuals |
|||
----------------------------------*/ |
|||
|
|||
/* Corner radius */ |
|||
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -khtml-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; -khtml-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } |
|||
|
|||
/* Overlays */ |
|||
.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; } |
|||
.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -khtml-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; } |
|||
@ -0,0 +1,19 @@ |
|||
/*! |
|||
* jQuery UI Accordion 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Accordion#theming |
|||
*/ |
|||
/* IE/Win - Fix animation bug - #4615 */ |
|||
.ui-accordion { width: 100%; } |
|||
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } |
|||
.ui-accordion .ui-accordion-li-fix { display: inline; } |
|||
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } |
|||
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } |
|||
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } |
|||
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } |
|||
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } |
|||
.ui-accordion .ui-accordion-content-active { display: block; } |
|||
@ -0,0 +1,11 @@ |
|||
/*! |
|||
* jQuery UI CSS Framework 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Theming |
|||
*/ |
|||
@import "jquery.ui.base.css"; |
|||
@import "jquery.ui.theme.css"; |
|||
@ -0,0 +1,53 @@ |
|||
/*! |
|||
* jQuery UI Autocomplete 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Autocomplete#theming |
|||
*/ |
|||
.ui-autocomplete { position: absolute; cursor: default; } |
|||
|
|||
/* workarounds */ |
|||
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ |
|||
|
|||
/* |
|||
* jQuery UI Menu 1.8.24 |
|||
* |
|||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Menu#theming |
|||
*/ |
|||
.ui-menu { |
|||
list-style:none; |
|||
padding: 2px; |
|||
margin: 0; |
|||
display:block; |
|||
float: left; |
|||
} |
|||
.ui-menu .ui-menu { |
|||
margin-top: -3px; |
|||
} |
|||
.ui-menu .ui-menu-item { |
|||
margin:0; |
|||
padding: 0; |
|||
zoom: 1; |
|||
float: left; |
|||
clear: left; |
|||
width: 100%; |
|||
} |
|||
.ui-menu .ui-menu-item a { |
|||
text-decoration:none; |
|||
display:block; |
|||
padding:.2em .4em; |
|||
line-height:1.5; |
|||
zoom:1; |
|||
} |
|||
.ui-menu .ui-menu-item a.ui-state-hover, |
|||
.ui-menu .ui-menu-item a.ui-state-active { |
|||
font-weight: normal; |
|||
margin: -1px; |
|||
} |
|||
@ -0,0 +1,21 @@ |
|||
/*! |
|||
* jQuery UI CSS Framework 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Theming |
|||
*/ |
|||
@import url("jquery.ui.core.css"); |
|||
|
|||
@import url("jquery.ui.accordion.css"); |
|||
@import url("jquery.ui.autocomplete.css"); |
|||
@import url("jquery.ui.button.css"); |
|||
@import url("jquery.ui.datepicker.css"); |
|||
@import url("jquery.ui.dialog.css"); |
|||
@import url("jquery.ui.progressbar.css"); |
|||
@import url("jquery.ui.resizable.css"); |
|||
@import url("jquery.ui.selectable.css"); |
|||
@import url("jquery.ui.slider.css"); |
|||
@import url("jquery.ui.tabs.css"); |
|||
@ -0,0 +1,38 @@ |
|||
/*! |
|||
* jQuery UI Button 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Button#theming |
|||
*/ |
|||
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */ |
|||
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */ |
|||
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */ |
|||
.ui-button-icons-only { width: 3.4em; } |
|||
button.ui-button-icons-only { width: 3.7em; } |
|||
|
|||
/*button text element */ |
|||
.ui-button .ui-button-text { display: block; line-height: 1.4; } |
|||
.ui-button-text-only .ui-button-text { padding: .4em 1em; } |
|||
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } |
|||
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } |
|||
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } |
|||
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } |
|||
/* no icon support for input elements, provide padding by default */ |
|||
input.ui-button { padding: .4em 1em; } |
|||
|
|||
/*button icon element(s) */ |
|||
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; } |
|||
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } |
|||
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; } |
|||
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } |
|||
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } |
|||
|
|||
/*button sets*/ |
|||
.ui-buttonset { margin-right: 7px; } |
|||
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } |
|||
|
|||
/* workarounds */ |
|||
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ |
|||
@ -0,0 +1,38 @@ |
|||
/*! |
|||
* jQuery UI CSS Framework 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Theming/API |
|||
*/ |
|||
|
|||
/* Layout helpers |
|||
----------------------------------*/ |
|||
.ui-helper-hidden { display: none; } |
|||
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } |
|||
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } |
|||
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; } |
|||
.ui-helper-clearfix:after { clear: both; } |
|||
.ui-helper-clearfix { zoom: 1; } |
|||
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } |
|||
|
|||
|
|||
/* Interaction Cues |
|||
----------------------------------*/ |
|||
.ui-state-disabled { cursor: default !important; } |
|||
|
|||
|
|||
/* Icons |
|||
----------------------------------*/ |
|||
|
|||
/* states and images */ |
|||
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } |
|||
|
|||
|
|||
/* Misc visuals |
|||
----------------------------------*/ |
|||
|
|||
/* Overlays */ |
|||
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } |
|||
@ -0,0 +1,66 @@ |
|||
/*! |
|||
* jQuery UI Datepicker 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Datepicker#theming |
|||
*/ |
|||
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; } |
|||
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } |
|||
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } |
|||
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } |
|||
.ui-datepicker .ui-datepicker-prev { left:2px; } |
|||
.ui-datepicker .ui-datepicker-next { right:2px; } |
|||
.ui-datepicker .ui-datepicker-prev-hover { left:1px; } |
|||
.ui-datepicker .ui-datepicker-next-hover { right:1px; } |
|||
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } |
|||
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } |
|||
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } |
|||
.ui-datepicker select.ui-datepicker-month-year {width: 100%;} |
|||
.ui-datepicker select.ui-datepicker-month, |
|||
.ui-datepicker select.ui-datepicker-year { width: 49%;} |
|||
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } |
|||
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } |
|||
.ui-datepicker td { border: 0; padding: 1px; } |
|||
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } |
|||
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } |
|||
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } |
|||
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } |
|||
|
|||
/* with multiple calendars */ |
|||
.ui-datepicker.ui-datepicker-multi { width:auto; } |
|||
.ui-datepicker-multi .ui-datepicker-group { float:left; } |
|||
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } |
|||
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } |
|||
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } |
|||
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } |
|||
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } |
|||
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } |
|||
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } |
|||
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; } |
|||
|
|||
/* RTL support */ |
|||
.ui-datepicker-rtl { direction: rtl; } |
|||
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } |
|||
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } |
|||
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } |
|||
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } |
|||
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } |
|||
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } |
|||
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } |
|||
.ui-datepicker-rtl .ui-datepicker-group { float:right; } |
|||
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } |
|||
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } |
|||
|
|||
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ |
|||
.ui-datepicker-cover { |
|||
position: absolute; /*must have*/ |
|||
z-index: -1; /*must have*/ |
|||
filter: mask(); /*must have*/ |
|||
top: -4px; /*must have*/ |
|||
left: -4px; /*must have*/ |
|||
width: 200px; /*must have*/ |
|||
height: 200px; /*must have*/ |
|||
} |
|||
@ -0,0 +1,21 @@ |
|||
/*! |
|||
* jQuery UI Dialog 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Dialog#theming |
|||
*/ |
|||
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } |
|||
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } |
|||
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } |
|||
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } |
|||
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } |
|||
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } |
|||
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } |
|||
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } |
|||
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } |
|||
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } |
|||
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } |
|||
.ui-draggable .ui-dialog-titlebar { cursor: move; } |
|||
@ -0,0 +1,11 @@ |
|||
/*! |
|||
* jQuery UI Progressbar 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Progressbar#theming |
|||
*/ |
|||
.ui-progressbar { height:2em; text-align: left; overflow: hidden; } |
|||
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } |
|||
@ -0,0 +1,20 @@ |
|||
/*! |
|||
* jQuery UI Resizable 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Resizable#theming |
|||
*/ |
|||
.ui-resizable { position: relative;} |
|||
.ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } |
|||
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } |
|||
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } |
|||
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } |
|||
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } |
|||
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } |
|||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } |
|||
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } |
|||
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } |
|||
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} |
|||
@ -0,0 +1,10 @@ |
|||
/*! |
|||
* jQuery UI Selectable 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Selectable#theming |
|||
*/ |
|||
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } |
|||
@ -0,0 +1,24 @@ |
|||
/*! |
|||
* jQuery UI Slider 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Slider#theming |
|||
*/ |
|||
.ui-slider { position: relative; text-align: left; } |
|||
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } |
|||
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } |
|||
|
|||
.ui-slider-horizontal { height: .8em; } |
|||
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } |
|||
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } |
|||
.ui-slider-horizontal .ui-slider-range-min { left: 0; } |
|||
.ui-slider-horizontal .ui-slider-range-max { right: 0; } |
|||
|
|||
.ui-slider-vertical { width: .8em; height: 100px; } |
|||
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } |
|||
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } |
|||
.ui-slider-vertical .ui-slider-range-min { bottom: 0; } |
|||
.ui-slider-vertical .ui-slider-range-max { top: 0; } |
|||
@ -0,0 +1,18 @@ |
|||
/*! |
|||
* jQuery UI Tabs 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Tabs#theming |
|||
*/ |
|||
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ |
|||
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } |
|||
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } |
|||
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } |
|||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } |
|||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } |
|||
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ |
|||
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } |
|||
.ui-tabs .ui-tabs-hide { display: none !important; } |
|||
@ -0,0 +1,247 @@ |
|||
/*! |
|||
* jQuery UI CSS Framework 1.8.24 |
|||
* |
|||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) |
|||
* Licensed under the MIT license. |
|||
* http://jquery.org/license |
|||
* |
|||
* http://docs.jquery.com/UI/Theming/API |
|||
* |
|||
* To view and modify this theme, visit http://jqueryui.com/themeroller/ |
|||
*/ |
|||
|
|||
|
|||
/* Component containers |
|||
----------------------------------*/ |
|||
.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } |
|||
.ui-widget .ui-widget { font-size: 1em; } |
|||
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } |
|||
.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; } |
|||
.ui-widget-content a { color: #222222/*{fcContent}*/; } |
|||
.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; } |
|||
.ui-widget-header a { color: #222222/*{fcHeader}*/; } |
|||
|
|||
/* Interaction states |
|||
----------------------------------*/ |
|||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; } |
|||
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; } |
|||
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(images/ui-bg_glass_75_dadada_1x400.png)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; } |
|||
.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; } |
|||
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; } |
|||
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; } |
|||
.ui-widget :active { outline: none; } |
|||
|
|||
/* Interaction Cues |
|||
----------------------------------*/ |
|||
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; } |
|||
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; } |
|||
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; } |
|||
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; } |
|||
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; } |
|||
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } |
|||
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } |
|||
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } |
|||
|
|||
/* Icons |
|||
----------------------------------*/ |
|||
|
|||
/* states and images */ |
|||
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } |
|||
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } |
|||
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; } |
|||
.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; } |
|||
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; } |
|||
.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; } |
|||
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; } |
|||
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; } |
|||
|
|||
/* positioning */ |
|||
.ui-icon-carat-1-n { background-position: 0 0; } |
|||
.ui-icon-carat-1-ne { background-position: -16px 0; } |
|||
.ui-icon-carat-1-e { background-position: -32px 0; } |
|||
.ui-icon-carat-1-se { background-position: -48px 0; } |
|||
.ui-icon-carat-1-s { background-position: -64px 0; } |
|||
.ui-icon-carat-1-sw { background-position: -80px 0; } |
|||
.ui-icon-carat-1-w { background-position: -96px 0; } |
|||
.ui-icon-carat-1-nw { background-position: -112px 0; } |
|||
.ui-icon-carat-2-n-s { background-position: -128px 0; } |
|||
.ui-icon-carat-2-e-w { background-position: -144px 0; } |
|||
.ui-icon-triangle-1-n { background-position: 0 -16px; } |
|||
.ui-icon-triangle-1-ne { background-position: -16px -16px; } |
|||
.ui-icon-triangle-1-e { background-position: -32px -16px; } |
|||
.ui-icon-triangle-1-se { background-position: -48px -16px; } |
|||
.ui-icon-triangle-1-s { background-position: -64px -16px; } |
|||
.ui-icon-triangle-1-sw { background-position: -80px -16px; } |
|||
.ui-icon-triangle-1-w { background-position: -96px -16px; } |
|||
.ui-icon-triangle-1-nw { background-position: -112px -16px; } |
|||
.ui-icon-triangle-2-n-s { background-position: -128px -16px; } |
|||
.ui-icon-triangle-2-e-w { background-position: -144px -16px; } |
|||
.ui-icon-arrow-1-n { background-position: 0 -32px; } |
|||
.ui-icon-arrow-1-ne { background-position: -16px -32px; } |
|||
.ui-icon-arrow-1-e { background-position: -32px -32px; } |
|||
.ui-icon-arrow-1-se { background-position: -48px -32px; } |
|||
.ui-icon-arrow-1-s { background-position: -64px -32px; } |
|||
.ui-icon-arrow-1-sw { background-position: -80px -32px; } |
|||
.ui-icon-arrow-1-w { background-position: -96px -32px; } |
|||
.ui-icon-arrow-1-nw { background-position: -112px -32px; } |
|||
.ui-icon-arrow-2-n-s { background-position: -128px -32px; } |
|||
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } |
|||
.ui-icon-arrow-2-e-w { background-position: -160px -32px; } |
|||
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } |
|||
.ui-icon-arrowstop-1-n { background-position: -192px -32px; } |
|||
.ui-icon-arrowstop-1-e { background-position: -208px -32px; } |
|||
.ui-icon-arrowstop-1-s { background-position: -224px -32px; } |
|||
.ui-icon-arrowstop-1-w { background-position: -240px -32px; } |
|||
.ui-icon-arrowthick-1-n { background-position: 0 -48px; } |
|||
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } |
|||
.ui-icon-arrowthick-1-e { background-position: -32px -48px; } |
|||
.ui-icon-arrowthick-1-se { background-position: -48px -48px; } |
|||
.ui-icon-arrowthick-1-s { background-position: -64px -48px; } |
|||
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } |
|||
.ui-icon-arrowthick-1-w { background-position: -96px -48px; } |
|||
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } |
|||
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } |
|||
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } |
|||
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } |
|||
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } |
|||
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } |
|||
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } |
|||
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } |
|||
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } |
|||
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } |
|||
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } |
|||
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } |
|||
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } |
|||
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } |
|||
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } |
|||
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } |
|||
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } |
|||
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } |
|||
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } |
|||
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } |
|||
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } |
|||
.ui-icon-arrow-4 { background-position: 0 -80px; } |
|||
.ui-icon-arrow-4-diag { background-position: -16px -80px; } |
|||
.ui-icon-extlink { background-position: -32px -80px; } |
|||
.ui-icon-newwin { background-position: -48px -80px; } |
|||
.ui-icon-refresh { background-position: -64px -80px; } |
|||
.ui-icon-shuffle { background-position: -80px -80px; } |
|||
.ui-icon-transfer-e-w { background-position: -96px -80px; } |
|||
.ui-icon-transferthick-e-w { background-position: -112px -80px; } |
|||
.ui-icon-folder-collapsed { background-position: 0 -96px; } |
|||
.ui-icon-folder-open { background-position: -16px -96px; } |
|||
.ui-icon-document { background-position: -32px -96px; } |
|||
.ui-icon-document-b { background-position: -48px -96px; } |
|||
.ui-icon-note { background-position: -64px -96px; } |
|||
.ui-icon-mail-closed { background-position: -80px -96px; } |
|||
.ui-icon-mail-open { background-position: -96px -96px; } |
|||
.ui-icon-suitcase { background-position: -112px -96px; } |
|||
.ui-icon-comment { background-position: -128px -96px; } |
|||
.ui-icon-person { background-position: -144px -96px; } |
|||
.ui-icon-print { background-position: -160px -96px; } |
|||
.ui-icon-trash { background-position: -176px -96px; } |
|||
.ui-icon-locked { background-position: -192px -96px; } |
|||
.ui-icon-unlocked { background-position: -208px -96px; } |
|||
.ui-icon-bookmark { background-position: -224px -96px; } |
|||
.ui-icon-tag { background-position: -240px -96px; } |
|||
.ui-icon-home { background-position: 0 -112px; } |
|||
.ui-icon-flag { background-position: -16px -112px; } |
|||
.ui-icon-calendar { background-position: -32px -112px; } |
|||
.ui-icon-cart { background-position: -48px -112px; } |
|||
.ui-icon-pencil { background-position: -64px -112px; } |
|||
.ui-icon-clock { background-position: -80px -112px; } |
|||
.ui-icon-disk { background-position: -96px -112px; } |
|||
.ui-icon-calculator { background-position: -112px -112px; } |
|||
.ui-icon-zoomin { background-position: -128px -112px; } |
|||
.ui-icon-zoomout { background-position: -144px -112px; } |
|||
.ui-icon-search { background-position: -160px -112px; } |
|||
.ui-icon-wrench { background-position: -176px -112px; } |
|||
.ui-icon-gear { background-position: -192px -112px; } |
|||
.ui-icon-heart { background-position: -208px -112px; } |
|||
.ui-icon-star { background-position: -224px -112px; } |
|||
.ui-icon-link { background-position: -240px -112px; } |
|||
.ui-icon-cancel { background-position: 0 -128px; } |
|||
.ui-icon-plus { background-position: -16px -128px; } |
|||
.ui-icon-plusthick { background-position: -32px -128px; } |
|||
.ui-icon-minus { background-position: -48px -128px; } |
|||
.ui-icon-minusthick { background-position: -64px -128px; } |
|||
.ui-icon-close { background-position: -80px -128px; } |
|||
.ui-icon-closethick { background-position: -96px -128px; } |
|||
.ui-icon-key { background-position: -112px -128px; } |
|||
.ui-icon-lightbulb { background-position: -128px -128px; } |
|||
.ui-icon-scissors { background-position: -144px -128px; } |
|||
.ui-icon-clipboard { background-position: -160px -128px; } |
|||
.ui-icon-copy { background-position: -176px -128px; } |
|||
.ui-icon-contact { background-position: -192px -128px; } |
|||
.ui-icon-image { background-position: -208px -128px; } |
|||
.ui-icon-video { background-position: -224px -128px; } |
|||
.ui-icon-script { background-position: -240px -128px; } |
|||
.ui-icon-alert { background-position: 0 -144px; } |
|||
.ui-icon-info { background-position: -16px -144px; } |
|||
.ui-icon-notice { background-position: -32px -144px; } |
|||
.ui-icon-help { background-position: -48px -144px; } |
|||
.ui-icon-check { background-position: -64px -144px; } |
|||
.ui-icon-bullet { background-position: -80px -144px; } |
|||
.ui-icon-radio-off { background-position: -96px -144px; } |
|||
.ui-icon-radio-on { background-position: -112px -144px; } |
|||
.ui-icon-pin-w { background-position: -128px -144px; } |
|||
.ui-icon-pin-s { background-position: -144px -144px; } |
|||
.ui-icon-play { background-position: 0 -160px; } |
|||
.ui-icon-pause { background-position: -16px -160px; } |
|||
.ui-icon-seek-next { background-position: -32px -160px; } |
|||
.ui-icon-seek-prev { background-position: -48px -160px; } |
|||
.ui-icon-seek-end { background-position: -64px -160px; } |
|||
.ui-icon-seek-start { background-position: -80px -160px; } |
|||
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ |
|||
.ui-icon-seek-first { background-position: -80px -160px; } |
|||
.ui-icon-stop { background-position: -96px -160px; } |
|||
.ui-icon-eject { background-position: -112px -160px; } |
|||
.ui-icon-volume-off { background-position: -128px -160px; } |
|||
.ui-icon-volume-on { background-position: -144px -160px; } |
|||
.ui-icon-power { background-position: 0 -176px; } |
|||
.ui-icon-signal-diag { background-position: -16px -176px; } |
|||
.ui-icon-signal { background-position: -32px -176px; } |
|||
.ui-icon-battery-0 { background-position: -48px -176px; } |
|||
.ui-icon-battery-1 { background-position: -64px -176px; } |
|||
.ui-icon-battery-2 { background-position: -80px -176px; } |
|||
.ui-icon-battery-3 { background-position: -96px -176px; } |
|||
.ui-icon-circle-plus { background-position: 0 -192px; } |
|||
.ui-icon-circle-minus { background-position: -16px -192px; } |
|||
.ui-icon-circle-close { background-position: -32px -192px; } |
|||
.ui-icon-circle-triangle-e { background-position: -48px -192px; } |
|||
.ui-icon-circle-triangle-s { background-position: -64px -192px; } |
|||
.ui-icon-circle-triangle-w { background-position: -80px -192px; } |
|||
.ui-icon-circle-triangle-n { background-position: -96px -192px; } |
|||
.ui-icon-circle-arrow-e { background-position: -112px -192px; } |
|||
.ui-icon-circle-arrow-s { background-position: -128px -192px; } |
|||
.ui-icon-circle-arrow-w { background-position: -144px -192px; } |
|||
.ui-icon-circle-arrow-n { background-position: -160px -192px; } |
|||
.ui-icon-circle-zoomin { background-position: -176px -192px; } |
|||
.ui-icon-circle-zoomout { background-position: -192px -192px; } |
|||
.ui-icon-circle-check { background-position: -208px -192px; } |
|||
.ui-icon-circlesmall-plus { background-position: 0 -208px; } |
|||
.ui-icon-circlesmall-minus { background-position: -16px -208px; } |
|||
.ui-icon-circlesmall-close { background-position: -32px -208px; } |
|||
.ui-icon-squaresmall-plus { background-position: -48px -208px; } |
|||
.ui-icon-squaresmall-minus { background-position: -64px -208px; } |
|||
.ui-icon-squaresmall-close { background-position: -80px -208px; } |
|||
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } |
|||
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } |
|||
.ui-icon-grip-solid-vertical { background-position: -32px -224px; } |
|||
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } |
|||
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } |
|||
.ui-icon-grip-diagonal-se { background-position: -80px -224px; } |
|||
|
|||
|
|||
/* Misc visuals |
|||
----------------------------------*/ |
|||
|
|||
/* Corner radius */ |
|||
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -khtml-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; -khtml-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } |
|||
|
|||
/* Overlays */ |
|||
.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; } |
|||
.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -khtml-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; } |
|||
|
After Width: | Height: | Size: 180 B |
|
After Width: | Height: | Size: 178 B |
|
After Width: | Height: | Size: 120 B |
|
After Width: | Height: | Size: 105 B |
|
After Width: | Height: | Size: 111 B |
|
After Width: | Height: | Size: 110 B |
|
After Width: | Height: | Size: 119 B |
|
After Width: | Height: | Size: 101 B |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.accordion.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-accordion{width:100%}.ui-accordion .ui-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.ui-accordion .ui-accordion-li-fix{display:inline}.ui-accordion .ui-accordion-header-active{border-bottom:0!important}.ui-accordion .ui-accordion-header a{display:block;font-size:1em;padding:.5em .5em .5em .7em}.ui-accordion-icons .ui-accordion-header a{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;margin-top:-2px;position:relative;top:1px;margin-bottom:2px;overflow:auto;display:none;zoom:1}.ui-accordion .ui-accordion-content-active{display:block} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.autocomplete.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.button.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-button{display:inline-block;position:relative;padding:0;margin-right:.1em;text-decoration:none!important;cursor:pointer;text-align:center;zoom:1;overflow:visible}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner{border:0;padding:0} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.core.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.datepicker.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month-year{width:100%}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0em}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current{float:right}.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker-cover{position:absolute;z-index:-1;filter:mask();top:-4px;left:-4px;width:200px;height:200px} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.dialog.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.progressbar.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.resizable.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.selectable.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.slider.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} |
|||
@ -0,0 +1,5 @@ |
|||
/*! jQuery UI - v1.8.24 - 2012-09-28 |
|||
* https://github.com/jquery/jquery-ui |
|||
* Includes: jquery.ui.tabs.css |
|||
* Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ |
|||
.ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0!important;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{margin-bottom:0;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tabs .ui-tabs-hide{display:none!important} |
|||
@ -0,0 +1,42 @@ |
|||
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Test_Website_Webforms_NET45._Default" %> |
|||
|
|||
<asp:Content runat="server" ID="FeaturedContent" ContentPlaceHolderID="FeaturedContent"> |
|||
<section class="featured"> |
|||
<div class="content-wrapper"> |
|||
<hgroup class="title"> |
|||
<h1><%: Title %>.</h1> |
|||
<h2>Modify this template to jump-start your ASP.NET application.</h2> |
|||
</hgroup> |
|||
<p> |
|||
To learn more about ASP.NET, visit <a href="http://asp.net" title="ASP.NET Website">http://asp.net</a>. |
|||
The page features <mark>videos, tutorials, and samples</mark> to help you get the most from ASP.NET. |
|||
If you have any questions about ASP.NET visit |
|||
<a href="http://forums.asp.net/18.aspx" title="ASP.NET Forum">our forums</a>. |
|||
</p> |
|||
</div> |
|||
</section> |
|||
</asp:Content> |
|||
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent"> |
|||
<h3>We suggest the following:</h3> |
|||
|
|||
<img src="/images/Penguins.jpg?width=300" /> |
|||
|
|||
<ol class="round"> |
|||
<li class="one"> |
|||
<h5>Getting Started</h5> |
|||
ASP.NET Web Forms lets you build dynamic websites using a familiar drag-and-drop, event-driven model. |
|||
A design surface and hundreds of controls and components let you rapidly build sophisticated, powerful UI-driven sites with data access. |
|||
<a href="http://go.microsoft.com/fwlink/?LinkId=245146">Learn more…</a> |
|||
</li> |
|||
<li class="two"> |
|||
<h5>Add NuGet packages and jump-start your coding</h5> |
|||
NuGet makes it easy to install and update free libraries and tools. |
|||
<a href="http://go.microsoft.com/fwlink/?LinkId=245147">Learn more…</a> |
|||
</li> |
|||
<li class="three"> |
|||
<h5>Find Web Hosting</h5> |
|||
You can easily find a web hosting company that offers the right mix of features and price for your applications. |
|||
<a href="http://go.microsoft.com/fwlink/?LinkId=245143">Learn more…</a> |
|||
</li> |
|||
</ol> |
|||
</asp:Content> |
|||
@ -0,0 +1,17 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
public partial class _Default : Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,17 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// This code was generated by a tool.
|
|||
//
|
|||
// Changes to this file may cause incorrect behavior and will be lost if
|
|||
// the code is regenerated.
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
|
|||
|
|||
public partial class _Default |
|||
{ |
|||
} |
|||
} |
|||
@ -0,0 +1 @@ |
|||
<%@ Application Codebehind="Global.asax.cs" Inherits="Test_Website_Webforms_NET45.Global" Language="C#" %> |
|||
@ -0,0 +1,34 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.Optimization; |
|||
using System.Web.Routing; |
|||
using System.Web.Security; |
|||
using Test_Website_Webforms_NET45; |
|||
|
|||
namespace Test_Website_Webforms_NET45 |
|||
{ |
|||
public class Global : HttpApplication |
|||
{ |
|||
void Application_Start(object sender, EventArgs e) |
|||
{ |
|||
// Code that runs on application startup
|
|||
BundleConfig.RegisterBundles(BundleTable.Bundles); |
|||
AuthConfig.RegisterOpenAuth(); |
|||
RouteConfig.RegisterRoutes(RouteTable.Routes); |
|||
} |
|||
|
|||
void Application_End(object sender, EventArgs e) |
|||
{ |
|||
// Code that runs on application shutdown
|
|||
|
|||
} |
|||
|
|||
void Application_Error(object sender, EventArgs e) |
|||
{ |
|||
// Code that runs when an unhandled error occurs
|
|||
|
|||
} |
|||
} |
|||
} |
|||
|
After Width: | Height: | Size: 50 KiB |
@ -0,0 +1 @@ |
|||
757c2a628dd03b1cbe4b3ef07c153897a702b57a |
|||
@ -0,0 +1 @@ |
|||
0b88c91336ff8073f34d21ccd683a01f0e0995da |
|||
@ -0,0 +1 @@ |
|||
a587c9656db0f4773fbada4807b9377df2216d77 |
|||
@ -0,0 +1 @@ |
|||
fa4fd4110616804c956a8fe4c388700ec4408eef |
|||
@ -0,0 +1 @@ |
|||
78704a099bad91c76ecb96417137464b0fa96b28 |
|||
@ -0,0 +1 @@ |
|||
494be09b8b43cfce7550ba6d54ff3cf799e4c315 |
|||
|
After Width: | Height: | Size: 9.9 KiB |
@ -0,0 +1 @@ |
|||
c3d556d9d486b8b8b49cdbcc9c12a9d3a2db4c1f |
|||
@ -0,0 +1 @@ |
|||
8150b46ab27c62ba51aaba551eef3f1a30f08de9 |
|||
@ -0,0 +1 @@ |
|||
6ad3b846d4697584ff601ac481b14a4d3bbb5736 |
|||
@ -0,0 +1 @@ |
|||
030ab8a685bebb796c24cc710edd9e69859164f6 |
|||
@ -0,0 +1 @@ |
|||
a2c796fbb7de948230a22982ab74892891dd5198 |
|||