mirror of https://github.com/SixLabors/ImageSharp
90 changed files with 500 additions and 5361 deletions
@ -0,0 +1,52 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
|
|||
namespace ImageProcessor.Web.Helpers |
|||
{ |
|||
using System.Linq.Expressions; |
|||
using System.Reflection; |
|||
|
|||
public class ObjectFactory |
|||
{ |
|||
public delegate T ObjectActivator<out T>(params object[] args); |
|||
|
|||
public static ObjectActivator<T> GetActivator<T>(ConstructorInfo ctor) |
|||
{ |
|||
Type type = ctor.DeclaringType; |
|||
ParameterInfo[] paramsInfo = ctor.GetParameters(); |
|||
|
|||
//create a single param of type object[]
|
|||
ParameterExpression param = Expression.Parameter(typeof(object[]), "args"); |
|||
|
|||
Expression[] argsExp = new Expression[paramsInfo.Length]; |
|||
|
|||
//pick each arg from the params array
|
|||
//and create a typed expression of them
|
|||
for (int i = 0; i < paramsInfo.Length; i++) |
|||
{ |
|||
Expression index = Expression.Constant(i); |
|||
Type paramType = paramsInfo[i].ParameterType; |
|||
|
|||
Expression paramAccessorExp = Expression.ArrayIndex(param, index); |
|||
|
|||
Expression paramCastExp = Expression.Convert(paramAccessorExp, paramType); |
|||
|
|||
argsExp[i] = paramCastExp; |
|||
} |
|||
|
|||
//make a NewExpression that calls the
|
|||
//ctor with the args we just created
|
|||
NewExpression newExp = Expression.New(ctor, argsExp); |
|||
|
|||
//create a lambda with the New
|
|||
//Expression as body and our param object[] as arg
|
|||
LambdaExpression lambda = Expression.Lambda(typeof(ObjectActivator<T>), newExp, param); |
|||
|
|||
//compile it
|
|||
ObjectActivator<T> compiled = (ObjectActivator<T>)lambda.Compile(); |
|||
return compiled; |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,20 @@ |
|||
|
|||
|
|||
namespace ImageProcessor.Web.Helpers |
|||
{ |
|||
using System; |
|||
using System.Linq.Expressions; |
|||
using ImageProcessor.Processors; |
|||
|
|||
public static class ProcessorFactory |
|||
{ |
|||
public static T New<T>() where T:IGraphicsProcessor |
|||
{ |
|||
Type t = typeof(T); |
|||
Func<T> method = Expression.Lambda<Func<T>>(Expression.Block(t, new Expression[] { Expression.New(t) })).Compile(); |
|||
|
|||
return method(); |
|||
} |
|||
} |
|||
|
|||
} |
|||
@ -1,325 +0,0 @@ |
|||
/*---------------------------------------------------------- |
|||
The base color for this template is #5c87b2. If you'd like |
|||
to use a different color start by replacing all instances of |
|||
#5c87b2 with your new color. |
|||
----------------------------------------------------------*/ |
|||
body { |
|||
background-color: #5c87b2; |
|||
font-size: .85em; |
|||
font-family: "Trebuchet MS", Verdana, Helvetica, Sans-Serif; |
|||
margin: 0; |
|||
padding: 0; |
|||
color: #696969; |
|||
} |
|||
|
|||
a:link { |
|||
color: #034af3; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
a:visited { |
|||
color: #505abc; |
|||
} |
|||
|
|||
a:hover { |
|||
color: #1d60ff; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
a:active { |
|||
color: #12eb87; |
|||
} |
|||
|
|||
p, ul { |
|||
margin-bottom: 20px; |
|||
line-height: 1.6em; |
|||
} |
|||
|
|||
header, |
|||
footer, |
|||
nav, |
|||
section { |
|||
display: block; |
|||
} |
|||
|
|||
/* HEADINGS |
|||
----------------------------------------------------------*/ |
|||
h1, h2, h3, h4, h5, h6 { |
|||
font-size: 1.5em; |
|||
color: #000; |
|||
} |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
padding-bottom: 0; |
|||
margin-bottom: 0; |
|||
} |
|||
|
|||
h2 { |
|||
padding: 0 0 10px 0; |
|||
} |
|||
|
|||
h3 { |
|||
font-size: 1.2em; |
|||
} |
|||
|
|||
h4 { |
|||
font-size: 1.1em; |
|||
} |
|||
|
|||
h5, h6 { |
|||
font-size: 1em; |
|||
} |
|||
|
|||
/* PRIMARY LAYOUT ELEMENTS |
|||
----------------------------------------------------------*/ |
|||
|
|||
/* you can specify a greater or lesser percentage for the |
|||
page width. Or, you can specify an exact pixel width. */ |
|||
.page { |
|||
width: 90%; |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
} |
|||
|
|||
header, #header { |
|||
position: relative; |
|||
margin-bottom: 0px; |
|||
color: #000; |
|||
padding: 0; |
|||
} |
|||
|
|||
header h1, #header h1 { |
|||
font-weight: bold; |
|||
padding: 5px 0; |
|||
margin: 0; |
|||
color: #fff; |
|||
border: none; |
|||
line-height: 2em; |
|||
font-size: 32px !important; |
|||
text-shadow: 1px 1px 2px #111; |
|||
} |
|||
|
|||
#main { |
|||
padding: 30px 30px 15px 30px; |
|||
background-color: #fff; |
|||
border-radius: 4px 0 0 0; |
|||
-webkit-border-radius: 4px 0 0 0; |
|||
-moz-border-radius: 4px 0 0 0; |
|||
} |
|||
|
|||
footer, |
|||
#footer { |
|||
background-color: #fff; |
|||
color: #999; |
|||
padding: 10px 0; |
|||
text-align: center; |
|||
line-height: normal; |
|||
margin: 0 0 30px 0; |
|||
font-size: .9em; |
|||
border-radius: 0 0 4px 4px; |
|||
-webkit-border-radius: 0 0 4px 4px; |
|||
-moz-border-radius: 0 0 4px 4px; |
|||
} |
|||
|
|||
/* TAB MENU |
|||
----------------------------------------------------------*/ |
|||
ul#menu { |
|||
border-bottom: 1px #5C87B2 solid; |
|||
padding: 0 0 2px; |
|||
position: relative; |
|||
margin: 0; |
|||
text-align: right; |
|||
} |
|||
|
|||
ul#menu li { |
|||
display: inline; |
|||
list-style: none; |
|||
} |
|||
|
|||
ul#menu li#greeting { |
|||
padding: 10px 20px; |
|||
font-weight: bold; |
|||
text-decoration: none; |
|||
line-height: 2.8em; |
|||
color: #fff; |
|||
} |
|||
|
|||
ul#menu li a { |
|||
padding: 10px 20px; |
|||
font-weight: bold; |
|||
text-decoration: none; |
|||
line-height: 2.8em; |
|||
background-color: #e8eef4; |
|||
color: #034af3; |
|||
border-radius: 4px 4px 0 0; |
|||
-webkit-border-radius: 4px 4px 0 0; |
|||
-moz-border-radius: 4px 4px 0 0; |
|||
} |
|||
|
|||
ul#menu li a:hover { |
|||
background-color: #fff; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
ul#menu li a:active { |
|||
background-color: #a6e2a6; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
ul#menu li.selected a { |
|||
background-color: #fff; |
|||
color: #000; |
|||
} |
|||
|
|||
/* FORM LAYOUT ELEMENTS |
|||
----------------------------------------------------------*/ |
|||
|
|||
fieldset { |
|||
border: 1px solid #ddd; |
|||
padding: 0 1.4em 1.4em 1.4em; |
|||
margin: 0 0 1.5em 0; |
|||
} |
|||
|
|||
legend { |
|||
font-size: 1.2em; |
|||
font-weight: bold; |
|||
} |
|||
|
|||
textarea { |
|||
min-height: 75px; |
|||
} |
|||
|
|||
input[type="text"], |
|||
input[type="password"] { |
|||
border: 1px solid #ccc; |
|||
padding: 2px; |
|||
font-size: 1.2em; |
|||
color: #444; |
|||
width: 200px; |
|||
} |
|||
|
|||
select { |
|||
border: 1px solid #ccc; |
|||
padding: 2px; |
|||
font-size: 1.2em; |
|||
color: #444; |
|||
} |
|||
|
|||
input[type="submit"] { |
|||
font-size: 1.2em; |
|||
padding: 5px; |
|||
} |
|||
|
|||
/* TABLE |
|||
----------------------------------------------------------*/ |
|||
|
|||
table { |
|||
border: solid 1px #e8eef4; |
|||
border-collapse: collapse; |
|||
} |
|||
|
|||
table td { |
|||
padding: 5px; |
|||
border: solid 1px #e8eef4; |
|||
} |
|||
|
|||
table th { |
|||
padding: 6px 5px; |
|||
text-align: left; |
|||
background-color: #e8eef4; |
|||
border: solid 1px #e8eef4; |
|||
} |
|||
|
|||
/* MISC |
|||
----------------------------------------------------------*/ |
|||
.clear { |
|||
clear: both; |
|||
} |
|||
|
|||
.error { |
|||
color: Red; |
|||
} |
|||
|
|||
nav, |
|||
#menucontainer { |
|||
margin-top: 40px; |
|||
} |
|||
|
|||
div#title { |
|||
display: block; |
|||
float: left; |
|||
text-align: left; |
|||
} |
|||
|
|||
#logindisplay { |
|||
font-size: 1.1em; |
|||
display: block; |
|||
text-align: right; |
|||
margin: 10px; |
|||
color: White; |
|||
height: 40px; |
|||
} |
|||
|
|||
#logindisplay a:link { |
|||
color: white; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
#logindisplay a:visited { |
|||
color: white; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
#logindisplay a:hover { |
|||
color: white; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
/* Styles for validation helpers |
|||
-----------------------------------------------------------*/ |
|||
.field-validation-error { |
|||
color: #ff0000; |
|||
} |
|||
|
|||
.field-validation-valid { |
|||
display: none; |
|||
} |
|||
|
|||
.input-validation-error { |
|||
border: 1px solid #ff0000; |
|||
background-color: #ffeeee; |
|||
} |
|||
|
|||
.validation-summary-errors { |
|||
font-weight: bold; |
|||
color: #ff0000; |
|||
} |
|||
|
|||
.validation-summary-valid { |
|||
display: none; |
|||
} |
|||
|
|||
/* Styles for editor and display helpers |
|||
----------------------------------------------------------*/ |
|||
.display-label, |
|||
.editor-label { |
|||
margin: 1em 0 0 0; |
|||
} |
|||
|
|||
.display-field, |
|||
.editor-field { |
|||
margin: 0.5em 0 0 0; |
|||
} |
|||
|
|||
.text-box { |
|||
width: 30em; |
|||
} |
|||
|
|||
.text-box.multi-line { |
|||
height: 6.5em; |
|||
} |
|||
|
|||
.tri-state { |
|||
width: 6em; |
|||
} |
|||
@ -0,0 +1,212 @@ |
|||
/* ==|== Flexo 2.0.1 ============================================================= |
|||
Author: James South |
|||
twitter : http://twitter.com/James_M_South |
|||
github : https://github.com/JimBobSquarePants/Flexo |
|||
Copyright (c) James South. |
|||
Licensed under the Apache License v2.0. |
|||
============================================================================== */ |
|||
|
|||
/* ============================================================================= |
|||
Base |
|||
========================================================================== */ |
|||
html { |
|||
/*Use the iOS devices hardware accelerator to provide native scrolling*/ |
|||
-webkit-overflow-scrolling: touch; |
|||
/* Prevents iOS text size adjust after orientation change, without disabling user zoom. */ |
|||
-webkit-text-size-adjust: 100%; |
|||
-ms-text-size-adjust: 100%; |
|||
} |
|||
|
|||
html, body { |
|||
height: 100%; |
|||
margin: 0; |
|||
position: relative; |
|||
} |
|||
|
|||
.page { |
|||
min-height: 100%; |
|||
position: relative; |
|||
margin-bottom: -150px; |
|||
padding-bottom: 150px; |
|||
-webkit-box-sizing: border-box; |
|||
-moz-box-sizing: border-box; |
|||
-ms-box-sizing: border-box; |
|||
box-sizing: border-box; |
|||
} |
|||
|
|||
.page.no-box { |
|||
padding-bottom: 0; |
|||
} |
|||
|
|||
.page-push, .page-footer { |
|||
height: 150px; |
|||
} |
|||
|
|||
.page-footer { |
|||
margin: 0 auto; |
|||
position: relative; |
|||
z-index: 1; |
|||
} |
|||
|
|||
.container { |
|||
margin: 0 auto; |
|||
/* Manages width in a single place */ |
|||
width: 95%; |
|||
max-width: 1140px; |
|||
} |
|||
|
|||
/* Contains floats so all columns can float left*/ |
|||
.container:before, |
|||
.container:after, |
|||
.row:before, |
|||
.row:after { |
|||
content: ""; |
|||
display: table; |
|||
} |
|||
|
|||
.container:after, |
|||
.row:after { |
|||
clear: both; |
|||
} |
|||
|
|||
/* ============================================================================= |
|||
Grid |
|||
========================================================================== */ |
|||
|
|||
[class*="clmn"] { |
|||
display: block; |
|||
-webkit-box-sizing: border-box; |
|||
-moz-box-sizing: border-box; |
|||
-ms-box-sizing: border-box; |
|||
box-sizing: border-box; |
|||
min-height: 1px; |
|||
float: left; |
|||
} |
|||
|
|||
/* ==|== media queries =================================================== |
|||
Portrait phone viewport to Landscape phone < 767px |
|||
========================================================================== */ |
|||
@media screen and (max-width: 767px) { |
|||
body:not(.flexo-fixed) [class*="clmn"], |
|||
body:not(.flexo-fixed) [class*="offset"] { |
|||
float: none; |
|||
width: 100%; |
|||
margin-left: 0!important; |
|||
} |
|||
} |
|||
|
|||
/* ============================================================================= |
|||
Grid |
|||
========================================================================== */ |
|||
[class*="clmn"] + [class*="clmn"]:not([class*="offset"]) { |
|||
margin-left: 2%; |
|||
} |
|||
|
|||
/* Columns */ |
|||
|
|||
/* Full width calculated with margins */ |
|||
.clmn1 { |
|||
width: 100%; |
|||
} |
|||
|
|||
/* 2 column */ |
|||
.clmn2 { |
|||
width: 49%; |
|||
} |
|||
|
|||
/* 3 column */ |
|||
.clmn3 { |
|||
width: 32%; |
|||
} |
|||
|
|||
/* 4 column */ |
|||
.clmn4 { |
|||
width: 23.5%; |
|||
} |
|||
|
|||
/* 5 column */ |
|||
.clmn5 { |
|||
width: 18.4%; |
|||
} |
|||
|
|||
/* Fillers*/ |
|||
/* 2/3 column */ |
|||
.clmn2-3 { |
|||
width: 66%; |
|||
} |
|||
|
|||
/* 3/4 column */ |
|||
.clmn3-4 { |
|||
width: 74.5%; |
|||
} |
|||
|
|||
/* 2/5 column */ |
|||
.clmn2-5 { |
|||
width: 38.8%; |
|||
} |
|||
|
|||
/* 3/5 column */ |
|||
.clmn3-5 { |
|||
width: 59.2%; |
|||
} |
|||
|
|||
/* 4/5 column */ |
|||
.clmn4-5 { |
|||
width: 79.6%; |
|||
} |
|||
|
|||
/* Offsetting columns */ |
|||
|
|||
/*offset 1/2*/ |
|||
.offset2 { |
|||
margin-left: 51%; |
|||
} |
|||
|
|||
/*offset 1/3 */ |
|||
.offset3 { |
|||
margin-left: 34%; |
|||
} |
|||
|
|||
/*offset 1/4 */ |
|||
.offset4 { |
|||
margin-left: 25.5%; |
|||
} |
|||
|
|||
/*offset 1/5 */ |
|||
.offset5 { |
|||
margin-left: 20.4%; |
|||
} |
|||
|
|||
/* offset 2/3 */ |
|||
.offset2-3 { |
|||
margin-left: 68%; |
|||
} |
|||
|
|||
/* offset 3/4 */ |
|||
.offset3-4 { |
|||
margin-left: 76.5%; |
|||
} |
|||
|
|||
/* offset 2/5 */ |
|||
.offset2-5 { |
|||
margin-left: 40.8%; |
|||
} |
|||
|
|||
/* offset 3/5 */ |
|||
.offset3-5 { |
|||
margin-left: 61.2%; |
|||
} |
|||
|
|||
/* offset 4/5 */ |
|||
.offset4-5 { |
|||
margin-left: 81.6%; |
|||
} |
|||
|
|||
|
|||
/* ============================================================================= |
|||
Fixed Grid |
|||
========================================================================== */ |
|||
.flexo-fixed .container { |
|||
/* Manages width in a single place */ |
|||
width: 1140px; |
|||
} |
|||
@ -0,0 +1,62 @@ |
|||
body { |
|||
font-family: "Segoe UI",Tahoma,Arial,Verdana,Sans-Serif; |
|||
color: #333; |
|||
} |
|||
|
|||
h1, h2, h3 { |
|||
font-family: "Segoe UI Light", "Segoe UI",Tahoma,Arial,Verdana,Sans-Serif; |
|||
font-weight: 400; |
|||
} |
|||
|
|||
h1 { |
|||
margin-top: 0; |
|||
font-size: 3em; |
|||
} |
|||
|
|||
img { |
|||
background: #fff; |
|||
padding: 3px; |
|||
-webkit-box-shadow: 0 0 5px rgb(0, 0, 0, 0.4); |
|||
box-shadow: 0 0 5px rgb(0, 0, 0, 0.4); |
|||
} |
|||
|
|||
.no-bullets { |
|||
padding-left: 0; |
|||
} |
|||
|
|||
.no-bullets > li { |
|||
list-style: none; |
|||
float: left; |
|||
margin-right: .5em; |
|||
} |
|||
|
|||
/* |
|||
* Clearfix: contain floats |
|||
* |
|||
* For modern browsers |
|||
* 1. The space content is one way to avoid an Opera bug when the |
|||
* `contenteditable` attribute is included anywhere else in the document. |
|||
* Otherwise it causes space to appear at the top and bottom of elements |
|||
* that receive the `clearfix` class. |
|||
* 2. The use of `table` rather than `block` is only necessary if using |
|||
* `:before` to contain the top-margins of child elements. |
|||
*/ |
|||
|
|||
.clearfix:before, |
|||
.clearfix:after { |
|||
content: " "; /* 1 */ |
|||
display: table; /* 2 */ |
|||
} |
|||
|
|||
.clearfix:after { |
|||
clear: both; |
|||
} |
|||
|
|||
/* |
|||
* For IE 6/7 only |
|||
* Include this rule to trigger hasLayout and contain floats. |
|||
*/ |
|||
|
|||
.clearfix { |
|||
*zoom: 1; |
|||
} |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:9a8492a580bf85d3e98ae8861fbd45567e5a1f83eeafcf9574da0399d5f602ab |
|||
size 180 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:39ab7ccd9f4e82579da78a9241265df288d8eb65dbbd7cf48aed2d0129887df5 |
|||
size 178 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:691597e8a40a891ea94d3589976ecfc33e6145c49422443b00ac2b5a0022964c |
|||
size 120 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:f0e6cd91b837d5c5644d026e5ffeccd907953317cd5c0f689901733afda260b2 |
|||
size 105 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:c108f5cbf2dd9ec07a26530695ddd95e1664597ce6c056ae44c162cc2e28cec4 |
|||
size 111 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:ddf5dd4e0ef2b185e8bb0af7b6e90ebe74a84384cb4700658e76e754c8bfe550 |
|||
size 110 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:f6f1c1bedf1a0f37cfef81d12f5f012869d1ee7c984775a569827a1784d34f5c |
|||
size 119 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:54270656df079c4da5182629a080fc633b6f84b87985eb016d25a560e2c38d4a |
|||
size 101 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:57adb0d65f4e91dacfee975d9574422bee7486c8a182d60133728c672f2cdbbc |
|||
size 4369 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:20f8c6667afc48aa433ee9eb6d8a0584bdbd6b4a4a9091ff1e6b3adb31e63bd9 |
|||
size 4369 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:07460e843c3e59aaadbb34231e699e856a2980753c7a47b66447da5d9f93fb7f |
|||
size 4369 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:ea2e29625de3463465e93b002b065f5833e05b97f7a052b1c141e754d62e1a8b |
|||
size 4369 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:1e32c6dbf5d3fd342f27a78aa881550d6412aa207f48468724a6a15402b6041b |
|||
size 4369 |
|||
@ -1,24 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Accordion 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; } |
|||
@ -1,16 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI CSS Framework 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* http://docs.jquery.com/UI/Theming |
|||
*/ |
|||
@import "jquery.ui.base.css"; |
|||
@import "jquery.ui.theme.css"; |
|||
@ -1,62 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Autocomplete 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* 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 */ |
|||
|
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Menu 1.8.11 |
|||
* |
|||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; |
|||
} |
|||
@ -1,11 +0,0 @@ |
|||
@import url("jquery.ui.core.css"); |
|||
@import url("jquery.ui.resizable.css"); |
|||
@import url("jquery.ui.selectable.css"); |
|||
@import url("jquery.ui.accordion.css"); |
|||
@import url("jquery.ui.autocomplete.css"); |
|||
@import url("jquery.ui.button.css"); |
|||
@import url("jquery.ui.dialog.css"); |
|||
@import url("jquery.ui.slider.css"); |
|||
@import url("jquery.ui.tabs.css"); |
|||
@import url("jquery.ui.datepicker.css"); |
|||
@import url("jquery.ui.progressbar.css"); |
|||
@ -1,43 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Button 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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 */ |
|||
@ -1,46 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI CSS Framework 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } |
|||
.ui-helper-clearfix { display: inline-block; } |
|||
/* required comment for clearfix to work in Opera \*/ |
|||
* html .ui-helper-clearfix { height:1%; } |
|||
.ui-helper-clearfix { display:block; } |
|||
/* end clearfix */ |
|||
.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%; } |
|||
@ -1,73 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Datepicker 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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%; } |
|||
|
|||
/* 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 { |
|||
display: none; /*sorry for IE5*/ |
|||
display/**/: block; /*sorry for IE5*/ |
|||
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*/ |
|||
} |
|||
@ -1,26 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Dialog 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; } |
|||
@ -1,16 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Progressbar 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* http://docs.jquery.com/UI/Progressbar#theming |
|||
*/ |
|||
.ui-progressbar { height:2em; text-align: left; } |
|||
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } |
|||
@ -1,25 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Resizable 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)] |
|||
* |
|||
* http://docs.jquery.com/UI/Resizable#theming |
|||
*/ |
|||
.ui-resizable { position: relative;} |
|||
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; 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;} |
|||
@ -1,15 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Selectable 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* http://docs.jquery.com/UI/Selectable#theming |
|||
*/ |
|||
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } |
|||
@ -1,29 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Slider 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; } |
|||
@ -1,23 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Tabs 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; } |
|||
@ -1,257 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI CSS Framework 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-top { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-right { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-left { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-all { -moz-border-radius: 4px/*{cornerRadius}*/; -webkit-border-radius: 4px/*{cornerRadius}*/; border-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}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; } |
|||
@ -0,0 +1 @@ |
|||
8f290942360078af430fc9ce5d6e746500d21d74 |
|||
@ -1,7 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<!-- VSdocman config file for current project/solution.--> |
|||
<activeProfile>default</activeProfile> |
|||
<appSettings> |
|||
</appSettings> |
|||
</configuration> |
|||
@ -1,10 +1,57 @@ |
|||
@{ |
|||
ViewBag.Title = "Home Page"; |
|||
} |
|||
|
|||
<h2>@ViewBag.Message</h2> |
|||
<p> |
|||
Click the about tab to load up a page of resized images. |
|||
</p> |
|||
<h3>Remote image test</h3> |
|||
<img src="/remote.axd?http://images.mymovies.net/images/film/cin/500x377/fid11707.jpg?width=200"/> |
|||
@{ |
|||
ViewBag.Title = "Home Page"; |
|||
} |
|||
<section class="row"> |
|||
@* <div class="clmn2"> |
|||
<h2>Resized Image</h2> |
|||
<img src="/images/Penguins.jpg?width=300" /> |
|||
</div> |
|||
<div class="clmn2"> |
|||
<h2>Cropped Image</h2> |
|||
<img src="/images/Penguins.jpg?crop=0-0-300-225" /> |
|||
</div>*@ |
|||
</section> |
|||
<section> |
|||
<h2>Filtered Image</h2> |
|||
<ul class="no-bullets clearfix"> |
|||
<li> |
|||
<h3>blackwhite</h3> |
|||
<img src="/images/Penguins.jpg?width=300&filter=blackwhite" /> |
|||
</li> |
|||
<li> |
|||
<h3>comic</h3> |
|||
<img src="/images/Penguins.jpg?width=300&filter=comic" /> |
|||
</li> |
|||
<li> |
|||
<h3>lomograph</h3> |
|||
<img src="/images/Penguins.jpg?width=300&filter=lomograph" /> |
|||
</li> |
|||
@* <li> |
|||
<h3>greyscale</h3> |
|||
<img src="/images/Penguins.jpg?width=300&filter=greyscale" /> |
|||
</li> |
|||
<li> |
|||
<h3>polaroid</h3> |
|||
<img src="/images/Penguins.jpg?width=300&filter=polaroid" /> |
|||
</li> |
|||
<li> |
|||
<h3>sepia</h3> |
|||
<img src="/images/Penguins.jpg?width=300&filter=sepia" /> |
|||
</li> |
|||
<li> |
|||
<h3>gotham</h3> |
|||
<img src="/images/Penguins.jpg?width=300&filter=gotham" /> |
|||
</li> |
|||
<li> |
|||
<h3>hisatch</h3> |
|||
<img src="/images/Penguins.jpg?width=300&filter=hisatch" /> |
|||
</li> |
|||
<li> |
|||
<h3>losatch</h3> |
|||
<img src="/images/Penguins.jpg?width=300&filter=losatch" /> |
|||
</li>*@ |
|||
</ul> |
|||
|
|||
</section> |
|||
@*<h3>Remote image test</h3> |
|||
<img src="/remote.axd?http://images.mymovies.net/images/film/cin/500x377/fid11707.jpg?width=200" />*@ |
|||
@ -1,32 +1,25 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<meta charset="utf-8" /> |
|||
<title>@ViewBag.Title</title> |
|||
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" /> |
|||
</head> |
|||
<body> |
|||
<div class="page"> |
|||
<header> |
|||
<div id="title"> |
|||
<h1> |
|||
ImageProcessor Test Website</h1> |
|||
</div> |
|||
<div id="logindisplay"> |
|||
</div> |
|||
<nav> |
|||
<ul id="menu"> |
|||
<li>@Html.ActionLink("Home", "Index", "Home")</li> |
|||
<li>@Html.ActionLink("About", "About", "Home")</li> |
|||
<li>@Html.ActionLink("Responsive", "Responsive", "Home")</li> |
|||
</ul> |
|||
</nav> |
|||
</header> |
|||
<section id="main"> |
|||
@RenderBody() |
|||
</section> |
|||
<footer> |
|||
</footer> |
|||
</div> |
|||
</body> |
|||
</html> |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<meta charset="utf-8" /> |
|||
<title>@ViewBag.Title</title> |
|||
<link href="@Url.Content("~/Content/flexo.css")" rel="stylesheet" type="text/css" /> |
|||
<link href="@Url.Content("~/Content/style.css")" rel="stylesheet" type="text/css" /> |
|||
</head> |
|||
<body> |
|||
<div class="page"> |
|||
<div class="container"> |
|||
<header> |
|||
<div> |
|||
<h1>ImageProcessor Test Website</h1> |
|||
</div> |
|||
</header> |
|||
<section id="main"> |
|||
@RenderBody() |
|||
</section> |
|||
</div> |
|||
</div> |
|||
<footer class="page-footer"> |
|||
</footer> |
|||
</body> |
|||
</html> |
|||
|
|||
@ -1,9 +1,4 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<packages> |
|||
<package id="EntityFramework" version="4.1.10331.0" /> |
|||
<package id="jQuery" version="1.5.1" /> |
|||
<package id="jQuery.UI.Combined" version="1.8.11" /> |
|||
<package id="jQuery.Validation" version="1.8.0" /> |
|||
<package id="jQuery.vsdoc" version="1.5.1" /> |
|||
<package id="Modernizr" version="1.7" /> |
|||
</packages> |
|||
@ -1 +0,0 @@ |
|||
6c2337ee82b7b6bc2dea37bb89cff832c057bef8 |
|||
@ -1 +0,0 @@ |
|||
cbb615d89365c6c7b290e4ad0cc2e226df9bbb61 |
|||
@ -1 +0,0 @@ |
|||
61abdd39cc4cb11c00715a43ad2203c3e5e97415 |
|||
@ -1,969 +0,0 @@ |
|||
/*! |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* Modernizr v1.7 |
|||
* http://www.modernizr.com
|
|||
* |
|||
* Developed by: |
|||
* - Faruk Ates http://farukat.es/
|
|||
* - Paul Irish http://paulirish.com/
|
|||
* |
|||
* Copyright (c) 2009-2011 |
|||
*/ |
|||
|
|||
|
|||
/* |
|||
* Modernizr is a script that detects native CSS3 and HTML5 features |
|||
* available in the current UA and provides an object containing all |
|||
* features with a true/false value, depending on whether the UA has |
|||
* native support for it or not. |
|||
* |
|||
* Modernizr will also add classes to the <html> element of the page, |
|||
* one for each feature it detects. If the UA supports it, a class |
|||
* like "cssgradients" will be added. If not, the class name will be |
|||
* "no-cssgradients". This allows for simple if-conditionals in your |
|||
* CSS, giving you fine control over the look & feel of your website. |
|||
* |
|||
* @author Faruk Ates |
|||
* @author Paul Irish |
|||
* @copyright (c) 2009-2011 Faruk Ates. |
|||
* @contributor Ben Alman |
|||
*/ |
|||
|
|||
window.Modernizr = (function(window,document,undefined){ |
|||
|
|||
var version = '1.7', |
|||
|
|||
ret = {}, |
|||
|
|||
/** |
|||
* !! DEPRECATED !! |
|||
* |
|||
* enableHTML5 is a private property for advanced use only. If enabled, |
|||
* it will make Modernizr.init() run through a brief while() loop in |
|||
* which it will create all HTML5 elements in the DOM to allow for |
|||
* styling them in Internet Explorer, which does not recognize any |
|||
* non-HTML4 elements unless created in the DOM this way. |
|||
* |
|||
* enableHTML5 is ON by default. |
|||
* |
|||
* The enableHTML5 toggle option is DEPRECATED as per 1.6, and will be |
|||
* replaced in 2.0 in lieu of the modular, configurable nature of 2.0. |
|||
*/ |
|||
enableHTML5 = true, |
|||
|
|||
|
|||
docElement = document.documentElement, |
|||
docHead = document.head || document.getElementsByTagName('head')[0], |
|||
|
|||
/** |
|||
* Create our "modernizr" element that we do most feature tests on. |
|||
*/ |
|||
mod = 'modernizr', |
|||
modElem = document.createElement( mod ), |
|||
m_style = modElem.style, |
|||
|
|||
/** |
|||
* Create the input element for various Web Forms feature tests. |
|||
*/ |
|||
inputElem = document.createElement( 'input' ), |
|||
|
|||
smile = ':)', |
|||
|
|||
tostring = Object.prototype.toString, |
|||
|
|||
// List of property values to set for css tests. See ticket #21
|
|||
prefixes = ' -webkit- -moz- -o- -ms- -khtml- '.split(' '), |
|||
|
|||
// Following spec is to expose vendor-specific style properties as:
|
|||
// elem.style.WebkitBorderRadius
|
|||
// and the following would be incorrect:
|
|||
// elem.style.webkitBorderRadius
|
|||
|
|||
// Webkit ghosts their properties in lowercase but Opera & Moz do not.
|
|||
// Microsoft foregoes prefixes entirely <= IE8, but appears to
|
|||
// use a lowercase `ms` instead of the correct `Ms` in IE9
|
|||
|
|||
// More here: http://github.com/Modernizr/Modernizr/issues/issue/21
|
|||
domPrefixes = 'Webkit Moz O ms Khtml'.split(' '), |
|||
|
|||
ns = {'svg': 'http://www.w3.org/2000/svg'}, |
|||
|
|||
tests = {}, |
|||
inputs = {}, |
|||
attrs = {}, |
|||
|
|||
classes = [], |
|||
|
|||
featurename, // used in testing loop
|
|||
|
|||
|
|||
|
|||
// todo: consider using http://javascript.nwbox.com/CSSSupport/css-support.js instead
|
|||
testMediaQuery = function(mq){ |
|||
|
|||
var st = document.createElement('style'), |
|||
div = document.createElement('div'), |
|||
ret; |
|||
|
|||
st.textContent = mq + '{#modernizr{height:3px}}'; |
|||
docHead.appendChild(st); |
|||
div.id = 'modernizr'; |
|||
docElement.appendChild(div); |
|||
|
|||
ret = div.offsetHeight === 3; |
|||
|
|||
st.parentNode.removeChild(st); |
|||
div.parentNode.removeChild(div); |
|||
|
|||
return !!ret; |
|||
|
|||
}, |
|||
|
|||
|
|||
/** |
|||
* isEventSupported determines if a given element supports the given event |
|||
* function from http://yura.thinkweb2.com/isEventSupported/
|
|||
*/ |
|||
isEventSupported = (function(){ |
|||
|
|||
var TAGNAMES = { |
|||
'select':'input','change':'input', |
|||
'submit':'form','reset':'form', |
|||
'error':'img','load':'img','abort':'img' |
|||
}; |
|||
|
|||
function isEventSupported(eventName, element) { |
|||
|
|||
element = element || document.createElement(TAGNAMES[eventName] || 'div'); |
|||
eventName = 'on' + eventName; |
|||
|
|||
// When using `setAttribute`, IE skips "unload", WebKit skips "unload" and "resize", whereas `in` "catches" those
|
|||
var isSupported = (eventName in element); |
|||
|
|||
if (!isSupported) { |
|||
// If it has no `setAttribute` (i.e. doesn't implement Node interface), try generic element
|
|||
if (!element.setAttribute) { |
|||
element = document.createElement('div'); |
|||
} |
|||
if (element.setAttribute && element.removeAttribute) { |
|||
element.setAttribute(eventName, ''); |
|||
isSupported = is(element[eventName], 'function'); |
|||
|
|||
// If property was created, "remove it" (by setting value to `undefined`)
|
|||
if (!is(element[eventName], undefined)) { |
|||
element[eventName] = undefined; |
|||
} |
|||
element.removeAttribute(eventName); |
|||
} |
|||
} |
|||
|
|||
element = null; |
|||
return isSupported; |
|||
} |
|||
return isEventSupported; |
|||
})(); |
|||
|
|||
|
|||
// hasOwnProperty shim by kangax needed for Safari 2.0 support
|
|||
var _hasOwnProperty = ({}).hasOwnProperty, hasOwnProperty; |
|||
if (!is(_hasOwnProperty, undefined) && !is(_hasOwnProperty.call, undefined)) { |
|||
hasOwnProperty = function (object, property) { |
|||
return _hasOwnProperty.call(object, property); |
|||
}; |
|||
} |
|||
else { |
|||
hasOwnProperty = function (object, property) { /* yes, this can give false positives/negatives, but most of the time we don't care about those */ |
|||
return ((property in object) && is(object.constructor.prototype[property], undefined)); |
|||
}; |
|||
} |
|||
|
|||
/** |
|||
* set_css applies given styles to the Modernizr DOM node. |
|||
*/ |
|||
function set_css( str ) { |
|||
m_style.cssText = str; |
|||
} |
|||
|
|||
/** |
|||
* set_css_all extrapolates all vendor-specific css strings. |
|||
*/ |
|||
function set_css_all( str1, str2 ) { |
|||
return set_css(prefixes.join(str1 + ';') + ( str2 || '' )); |
|||
} |
|||
|
|||
/** |
|||
* is returns a boolean for if typeof obj is exactly type. |
|||
*/ |
|||
function is( obj, type ) { |
|||
return typeof obj === type; |
|||
} |
|||
|
|||
/** |
|||
* contains returns a boolean for if substr is found within str. |
|||
*/ |
|||
function contains( str, substr ) { |
|||
return (''+str).indexOf( substr ) !== -1; |
|||
} |
|||
|
|||
/** |
|||
* test_props is a generic CSS / DOM property test; if a browser supports |
|||
* a certain property, it won't return undefined for it. |
|||
* A supported CSS property returns empty string when its not yet set. |
|||
*/ |
|||
function test_props( props, callback ) { |
|||
for ( var i in props ) { |
|||
if ( m_style[ props[i] ] !== undefined && ( !callback || callback( props[i], modElem ) ) ) { |
|||
return true; |
|||
} |
|||
} |
|||
} |
|||
|
|||
/** |
|||
* test_props_all tests a list of DOM properties we want to check against. |
|||
* We specify literally ALL possible (known and/or likely) properties on |
|||
* the element including the non-vendor prefixed one, for forward- |
|||
* compatibility. |
|||
*/ |
|||
function test_props_all( prop, callback ) { |
|||
|
|||
var uc_prop = prop.charAt(0).toUpperCase() + prop.substr(1), |
|||
props = (prop + ' ' + domPrefixes.join(uc_prop + ' ') + uc_prop).split(' '); |
|||
|
|||
return !!test_props( props, callback ); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* Tests |
|||
* ----- |
|||
*/ |
|||
|
|||
tests['flexbox'] = function() { |
|||
/** |
|||
* set_prefixed_value_css sets the property of a specified element |
|||
* adding vendor prefixes to the VALUE of the property. |
|||
* @param {Element} element |
|||
* @param {string} property The property name. This will not be prefixed. |
|||
* @param {string} value The value of the property. This WILL be prefixed. |
|||
* @param {string=} extra Additional CSS to append unmodified to the end of |
|||
* the CSS string. |
|||
*/ |
|||
function set_prefixed_value_css(element, property, value, extra) { |
|||
property += ':'; |
|||
element.style.cssText = (property + prefixes.join(value + ';' + property)).slice(0, -property.length) + (extra || ''); |
|||
} |
|||
|
|||
/** |
|||
* set_prefixed_property_css sets the property of a specified element |
|||
* adding vendor prefixes to the NAME of the property. |
|||
* @param {Element} element |
|||
* @param {string} property The property name. This WILL be prefixed. |
|||
* @param {string} value The value of the property. This will not be prefixed. |
|||
* @param {string=} extra Additional CSS to append unmodified to the end of |
|||
* the CSS string. |
|||
*/ |
|||
function set_prefixed_property_css(element, property, value, extra) { |
|||
element.style.cssText = prefixes.join(property + ':' + value + ';') + (extra || ''); |
|||
} |
|||
|
|||
var c = document.createElement('div'), |
|||
elem = document.createElement('div'); |
|||
|
|||
set_prefixed_value_css(c, 'display', 'box', 'width:42px;padding:0;'); |
|||
set_prefixed_property_css(elem, 'box-flex', '1', 'width:10px;'); |
|||
|
|||
c.appendChild(elem); |
|||
docElement.appendChild(c); |
|||
|
|||
var ret = elem.offsetWidth === 42; |
|||
|
|||
c.removeChild(elem); |
|||
docElement.removeChild(c); |
|||
|
|||
return ret; |
|||
}; |
|||
|
|||
// On the S60 and BB Storm, getContext exists, but always returns undefined
|
|||
// http://github.com/Modernizr/Modernizr/issues/issue/97/
|
|||
|
|||
tests['canvas'] = function() { |
|||
var elem = document.createElement( 'canvas' ); |
|||
return !!(elem.getContext && elem.getContext('2d')); |
|||
}; |
|||
|
|||
tests['canvastext'] = function() { |
|||
return !!(ret['canvas'] && is(document.createElement( 'canvas' ).getContext('2d').fillText, 'function')); |
|||
}; |
|||
|
|||
// This WebGL test false positives in FF depending on graphics hardware. But really it's quite impossible to know
|
|||
// wether webgl will succeed until after you create the context. You might have hardware that can support
|
|||
// a 100x100 webgl canvas, but will not support a 1000x1000 webgl canvas. So this feature inference is weak,
|
|||
// but intentionally so.
|
|||
tests['webgl'] = function(){ |
|||
return !!window.WebGLRenderingContext; |
|||
}; |
|||
|
|||
/* |
|||
* The Modernizr.touch test only indicates if the browser supports |
|||
* touch events, which does not necessarily reflect a touchscreen |
|||
* device, as evidenced by tablets running Windows 7 or, alas, |
|||
* the Palm Pre / WebOS (touch) phones. |
|||
* |
|||
* Additionally, Chrome (desktop) used to lie about its support on this, |
|||
* but that has since been rectified: http://crbug.com/36415
|
|||
* |
|||
* We also test for Firefox 4 Multitouch Support. |
|||
* |
|||
* For more info, see: http://modernizr.github.com/Modernizr/touch.html
|
|||
*/ |
|||
|
|||
tests['touch'] = function() { |
|||
|
|||
return ('ontouchstart' in window) || testMediaQuery('@media ('+prefixes.join('touch-enabled),(')+'modernizr)'); |
|||
|
|||
}; |
|||
|
|||
|
|||
/** |
|||
* geolocation tests for the new Geolocation API specification. |
|||
* This test is a standards compliant-only test; for more complete |
|||
* testing, including a Google Gears fallback, please see: |
|||
* http://code.google.com/p/geo-location-javascript/
|
|||
* or view a fallback solution using google's geo API: |
|||
* http://gist.github.com/366184
|
|||
*/ |
|||
tests['geolocation'] = function() { |
|||
return !!navigator.geolocation; |
|||
}; |
|||
|
|||
// Per 1.6:
|
|||
// This used to be Modernizr.crosswindowmessaging but the longer
|
|||
// name has been deprecated in favor of a shorter and property-matching one.
|
|||
// The old API is still available in 1.6, but as of 2.0 will throw a warning,
|
|||
// and in the first release thereafter disappear entirely.
|
|||
tests['postmessage'] = function() { |
|||
return !!window.postMessage; |
|||
}; |
|||
|
|||
// Web SQL database detection is tricky:
|
|||
|
|||
// In chrome incognito mode, openDatabase is truthy, but using it will
|
|||
// throw an exception: http://crbug.com/42380
|
|||
// We can create a dummy database, but there is no way to delete it afterwards.
|
|||
|
|||
// Meanwhile, Safari users can get prompted on any database creation.
|
|||
// If they do, any page with Modernizr will give them a prompt:
|
|||
// http://github.com/Modernizr/Modernizr/issues/closed#issue/113
|
|||
|
|||
// We have chosen to allow the Chrome incognito false positive, so that Modernizr
|
|||
// doesn't litter the web with these test databases. As a developer, you'll have
|
|||
// to account for this gotcha yourself.
|
|||
tests['websqldatabase'] = function() { |
|||
var result = !!window.openDatabase; |
|||
/* if (result){ |
|||
try { |
|||
result = !!openDatabase( mod + "testdb", "1.0", mod + "testdb", 2e4); |
|||
} catch(e) { |
|||
} |
|||
} */ |
|||
return result; |
|||
}; |
|||
|
|||
// Vendors have inconsistent prefixing with the experimental Indexed DB:
|
|||
// - Firefox is shipping indexedDB in FF4 as moz_indexedDB
|
|||
// - Webkit's implementation is accessible through webkitIndexedDB
|
|||
// We test both styles.
|
|||
tests['indexedDB'] = function(){ |
|||
for (var i = -1, len = domPrefixes.length; ++i < len; ){ |
|||
var prefix = domPrefixes[i].toLowerCase(); |
|||
if (window[prefix + '_indexedDB'] || window[prefix + 'IndexedDB']){ |
|||
return true; |
|||
} |
|||
} |
|||
return false; |
|||
}; |
|||
|
|||
// documentMode logic from YUI to filter out IE8 Compat Mode
|
|||
// which false positives.
|
|||
tests['hashchange'] = function() { |
|||
return isEventSupported('hashchange', window) && ( document.documentMode === undefined || document.documentMode > 7 ); |
|||
}; |
|||
|
|||
// Per 1.6:
|
|||
// This used to be Modernizr.historymanagement but the longer
|
|||
// name has been deprecated in favor of a shorter and property-matching one.
|
|||
// The old API is still available in 1.6, but as of 2.0 will throw a warning,
|
|||
// and in the first release thereafter disappear entirely.
|
|||
tests['history'] = function() { |
|||
return !!(window.history && history.pushState); |
|||
}; |
|||
|
|||
tests['draganddrop'] = function() { |
|||
return isEventSupported('dragstart') && isEventSupported('drop'); |
|||
}; |
|||
|
|||
tests['websockets'] = function(){ |
|||
return ('WebSocket' in window); |
|||
}; |
|||
|
|||
|
|||
// http://css-tricks.com/rgba-browser-support/
|
|||
tests['rgba'] = function() { |
|||
// Set an rgba() color and check the returned value
|
|||
|
|||
set_css( 'background-color:rgba(150,255,150,.5)' ); |
|||
|
|||
return contains( m_style.backgroundColor, 'rgba' ); |
|||
}; |
|||
|
|||
tests['hsla'] = function() { |
|||
// Same as rgba(), in fact, browsers re-map hsla() to rgba() internally,
|
|||
// except IE9 who retains it as hsla
|
|||
|
|||
set_css('background-color:hsla(120,40%,100%,.5)' ); |
|||
|
|||
return contains( m_style.backgroundColor, 'rgba' ) || contains( m_style.backgroundColor, 'hsla' ); |
|||
}; |
|||
|
|||
tests['multiplebgs'] = function() { |
|||
// Setting multiple images AND a color on the background shorthand property
|
|||
// and then querying the style.background property value for the number of
|
|||
// occurrences of "url(" is a reliable method for detecting ACTUAL support for this!
|
|||
|
|||
set_css( 'background:url(//:),url(//:),red url(//:)' ); |
|||
|
|||
// If the UA supports multiple backgrounds, there should be three occurrences
|
|||
// of the string "url(" in the return value for elem_style.background
|
|||
|
|||
return new RegExp("(url\\s*\\(.*?){3}").test(m_style.background); |
|||
}; |
|||
|
|||
|
|||
// In testing support for a given CSS property, it's legit to test:
|
|||
// `elem.style[styleName] !== undefined`
|
|||
// If the property is supported it will return an empty string,
|
|||
// if unsupported it will return undefined.
|
|||
|
|||
// We'll take advantage of this quick test and skip setting a style
|
|||
// on our modernizr element, but instead just testing undefined vs
|
|||
// empty string.
|
|||
|
|||
|
|||
tests['backgroundsize'] = function() { |
|||
return test_props_all( 'backgroundSize' ); |
|||
}; |
|||
|
|||
tests['borderimage'] = function() { |
|||
return test_props_all( 'borderImage' ); |
|||
}; |
|||
|
|||
|
|||
// Super comprehensive table about all the unique implementations of
|
|||
// border-radius: http://muddledramblings.com/table-of-css3-border-radius-compliance
|
|||
|
|||
tests['borderradius'] = function() { |
|||
return test_props_all( 'borderRadius', '', function( prop ) { |
|||
return contains( prop, 'orderRadius' ); |
|||
}); |
|||
}; |
|||
|
|||
// WebOS unfortunately false positives on this test.
|
|||
tests['boxshadow'] = function() { |
|||
return test_props_all( 'boxShadow' ); |
|||
}; |
|||
|
|||
// FF3.0 will false positive on this test
|
|||
tests['textshadow'] = function(){ |
|||
return document.createElement('div').style.textShadow === ''; |
|||
}; |
|||
|
|||
|
|||
tests['opacity'] = function() { |
|||
// Browsers that actually have CSS Opacity implemented have done so
|
|||
// according to spec, which means their return values are within the
|
|||
// range of [0.0,1.0] - including the leading zero.
|
|||
|
|||
set_css_all( 'opacity:.55' ); |
|||
|
|||
// The non-literal . in this regex is intentional:
|
|||
// German Chrome returns this value as 0,55
|
|||
// https://github.com/Modernizr/Modernizr/issues/#issue/59/comment/516632
|
|||
return /^0.55$/.test(m_style.opacity); |
|||
}; |
|||
|
|||
|
|||
tests['cssanimations'] = function() { |
|||
return test_props_all( 'animationName' ); |
|||
}; |
|||
|
|||
|
|||
tests['csscolumns'] = function() { |
|||
return test_props_all( 'columnCount' ); |
|||
}; |
|||
|
|||
|
|||
tests['cssgradients'] = function() { |
|||
/** |
|||
* For CSS Gradients syntax, please see: |
|||
* http://webkit.org/blog/175/introducing-css-gradients/
|
|||
* https://developer.mozilla.org/en/CSS/-moz-linear-gradient
|
|||
* https://developer.mozilla.org/en/CSS/-moz-radial-gradient
|
|||
* http://dev.w3.org/csswg/css3-images/#gradients-
|
|||
*/ |
|||
|
|||
var str1 = 'background-image:', |
|||
str2 = 'gradient(linear,left top,right bottom,from(#9f9),to(white));', |
|||
str3 = 'linear-gradient(left top,#9f9, white);'; |
|||
|
|||
set_css( |
|||
(str1 + prefixes.join(str2 + str1) + prefixes.join(str3 + str1)).slice(0,-str1.length) |
|||
); |
|||
|
|||
return contains( m_style.backgroundImage, 'gradient' ); |
|||
}; |
|||
|
|||
|
|||
tests['cssreflections'] = function() { |
|||
return test_props_all( 'boxReflect' ); |
|||
}; |
|||
|
|||
|
|||
tests['csstransforms'] = function() { |
|||
return !!test_props([ 'transformProperty', 'WebkitTransform', 'MozTransform', 'OTransform', 'msTransform' ]); |
|||
}; |
|||
|
|||
|
|||
tests['csstransforms3d'] = function() { |
|||
|
|||
var ret = !!test_props([ 'perspectiveProperty', 'WebkitPerspective', 'MozPerspective', 'OPerspective', 'msPerspective' ]); |
|||
|
|||
// Webkit’s 3D transforms are passed off to the browser's own graphics renderer.
|
|||
// It works fine in Safari on Leopard and Snow Leopard, but not in Chrome in
|
|||
// some conditions. As a result, Webkit typically recognizes the syntax but
|
|||
// will sometimes throw a false positive, thus we must do a more thorough check:
|
|||
if (ret && 'webkitPerspective' in docElement.style){ |
|||
|
|||
// Webkit allows this media query to succeed only if the feature is enabled.
|
|||
// `@media (transform-3d),(-o-transform-3d),(-moz-transform-3d),(-ms-transform-3d),(-webkit-transform-3d),(modernizr){ ... }`
|
|||
ret = testMediaQuery('@media ('+prefixes.join('transform-3d),(')+'modernizr)'); |
|||
} |
|||
return ret; |
|||
}; |
|||
|
|||
|
|||
tests['csstransitions'] = function() { |
|||
return test_props_all( 'transitionProperty' ); |
|||
}; |
|||
|
|||
|
|||
// @font-face detection routine by Diego Perini
|
|||
// http://javascript.nwbox.com/CSSSupport/
|
|||
tests['fontface'] = function(){ |
|||
|
|||
var |
|||
sheet, bool, |
|||
head = docHead || docElement, |
|||
style = document.createElement("style"), |
|||
impl = document.implementation || { hasFeature: function() { return false; } }; |
|||
|
|||
style.type = 'text/css'; |
|||
head.insertBefore(style, head.firstChild); |
|||
sheet = style.sheet || style.styleSheet; |
|||
|
|||
var supportAtRule = impl.hasFeature('CSS2', '') ? |
|||
function(rule) { |
|||
if (!(sheet && rule)) return false; |
|||
var result = false; |
|||
try { |
|||
sheet.insertRule(rule, 0); |
|||
result = (/src/i).test(sheet.cssRules[0].cssText); |
|||
sheet.deleteRule(sheet.cssRules.length - 1); |
|||
} catch(e) { } |
|||
return result; |
|||
} : |
|||
function(rule) { |
|||
if (!(sheet && rule)) return false; |
|||
sheet.cssText = rule; |
|||
|
|||
return sheet.cssText.length !== 0 && (/src/i).test(sheet.cssText) && |
|||
sheet.cssText |
|||
.replace(/\r+|\n+/g, '') |
|||
.indexOf(rule.split(' ')[0]) === 0; |
|||
}; |
|||
|
|||
bool = supportAtRule('@font-face { font-family: "font"; src: url(data:,); }'); |
|||
head.removeChild(style); |
|||
return bool; |
|||
}; |
|||
|
|||
|
|||
// These tests evaluate support of the video/audio elements, as well as
|
|||
// testing what types of content they support.
|
|||
//
|
|||
// We're using the Boolean constructor here, so that we can extend the value
|
|||
// e.g. Modernizr.video // true
|
|||
// Modernizr.video.ogg // 'probably'
|
|||
//
|
|||
// Codec values from : http://github.com/NielsLeenheer/html5test/blob/9106a8/index.html#L845
|
|||
// thx to NielsLeenheer and zcorpan
|
|||
|
|||
// Note: in FF 3.5.1 and 3.5.0, "no" was a return value instead of empty string.
|
|||
// Modernizr does not normalize for that.
|
|||
|
|||
tests['video'] = function() { |
|||
var elem = document.createElement('video'), |
|||
bool = !!elem.canPlayType; |
|||
|
|||
if (bool){ |
|||
bool = new Boolean(bool); |
|||
bool.ogg = elem.canPlayType('video/ogg; codecs="theora"'); |
|||
|
|||
// Workaround required for IE9, which doesn't report video support without audio codec specified.
|
|||
// bug 599718 @ msft connect
|
|||
var h264 = 'video/mp4; codecs="avc1.42E01E'; |
|||
bool.h264 = elem.canPlayType(h264 + '"') || elem.canPlayType(h264 + ', mp4a.40.2"'); |
|||
|
|||
bool.webm = elem.canPlayType('video/webm; codecs="vp8, vorbis"'); |
|||
} |
|||
return bool; |
|||
}; |
|||
|
|||
tests['audio'] = function() { |
|||
var elem = document.createElement('audio'), |
|||
bool = !!elem.canPlayType; |
|||
|
|||
if (bool){ |
|||
bool = new Boolean(bool); |
|||
bool.ogg = elem.canPlayType('audio/ogg; codecs="vorbis"'); |
|||
bool.mp3 = elem.canPlayType('audio/mpeg;'); |
|||
|
|||
// Mimetypes accepted:
|
|||
// https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements
|
|||
// http://bit.ly/iphoneoscodecs
|
|||
bool.wav = elem.canPlayType('audio/wav; codecs="1"'); |
|||
bool.m4a = elem.canPlayType('audio/x-m4a;') || elem.canPlayType('audio/aac;'); |
|||
} |
|||
return bool; |
|||
}; |
|||
|
|||
|
|||
// Firefox has made these tests rather unfun.
|
|||
|
|||
// In FF4, if disabled, window.localStorage should === null.
|
|||
|
|||
// Normally, we could not test that directly and need to do a
|
|||
// `('localStorage' in window) && ` test first because otherwise Firefox will
|
|||
// throw http://bugzil.la/365772 if cookies are disabled
|
|||
|
|||
// However, in Firefox 4 betas, if dom.storage.enabled == false, just mentioning
|
|||
// the property will throw an exception. http://bugzil.la/599479
|
|||
// This looks to be fixed for FF4 Final.
|
|||
|
|||
// Because we are forced to try/catch this, we'll go aggressive.
|
|||
|
|||
// FWIW: IE8 Compat mode supports these features completely:
|
|||
// http://www.quirksmode.org/dom/html5.html
|
|||
// But IE8 doesn't support either with local files
|
|||
|
|||
tests['localstorage'] = function() { |
|||
try { |
|||
return !!localStorage.getItem; |
|||
} catch(e) { |
|||
return false; |
|||
} |
|||
}; |
|||
|
|||
tests['sessionstorage'] = function() { |
|||
try { |
|||
return !!sessionStorage.getItem; |
|||
} catch(e){ |
|||
return false; |
|||
} |
|||
}; |
|||
|
|||
|
|||
tests['webWorkers'] = function () { |
|||
return !!window.Worker; |
|||
}; |
|||
|
|||
|
|||
tests['applicationcache'] = function() { |
|||
return !!window.applicationCache; |
|||
}; |
|||
|
|||
|
|||
// Thanks to Erik Dahlstrom
|
|||
tests['svg'] = function(){ |
|||
return !!document.createElementNS && !!document.createElementNS(ns.svg, "svg").createSVGRect; |
|||
}; |
|||
|
|||
tests['inlinesvg'] = function() { |
|||
var div = document.createElement('div'); |
|||
div.innerHTML = '<svg/>'; |
|||
return (div.firstChild && div.firstChild.namespaceURI) == ns.svg; |
|||
}; |
|||
|
|||
// Thanks to F1lt3r and lucideer
|
|||
// http://github.com/Modernizr/Modernizr/issues#issue/35
|
|||
tests['smil'] = function(){ |
|||
return !!document.createElementNS && /SVG/.test(tostring.call(document.createElementNS(ns.svg,'animate'))); |
|||
}; |
|||
|
|||
tests['svgclippaths'] = function(){ |
|||
// Possibly returns a false positive in Safari 3.2?
|
|||
return !!document.createElementNS && /SVG/.test(tostring.call(document.createElementNS(ns.svg,'clipPath'))); |
|||
}; |
|||
|
|||
|
|||
// input features and input types go directly onto the ret object, bypassing the tests loop.
|
|||
// Hold this guy to execute in a moment.
|
|||
function webforms(){ |
|||
|
|||
// Run through HTML5's new input attributes to see if the UA understands any.
|
|||
// We're using f which is the <input> element created early on
|
|||
// Mike Taylr has created a comprehensive resource for testing these attributes
|
|||
// when applied to all input types:
|
|||
// http://miketaylr.com/code/input-type-attr.html
|
|||
// spec: http://www.whatwg.org/specs/web-apps/current-work/multipage/the-input-element.html#input-type-attr-summary
|
|||
ret['input'] = (function(props) { |
|||
for (var i = 0, len = props.length; i<len; i++) { |
|||
attrs[ props[i] ] = !!(props[i] in inputElem); |
|||
} |
|||
return attrs; |
|||
})('autocomplete autofocus list placeholder max min multiple pattern required step'.split(' ')); |
|||
|
|||
// Run through HTML5's new input types to see if the UA understands any.
|
|||
// This is put behind the tests runloop because it doesn't return a
|
|||
// true/false like all the other tests; instead, it returns an object
|
|||
// containing each input type with its corresponding true/false value
|
|||
|
|||
// Big thanks to @miketaylr for the html5 forms expertise. http://miketaylr.com/
|
|||
ret['inputtypes'] = (function(props) { |
|||
|
|||
for (var i = 0, bool, inputElemType, defaultView, len=props.length; i < len; i++) { |
|||
|
|||
inputElem.setAttribute('type', inputElemType = props[i]); |
|||
bool = inputElem.type !== 'text'; |
|||
|
|||
// We first check to see if the type we give it sticks..
|
|||
// If the type does, we feed it a textual value, which shouldn't be valid.
|
|||
// If the value doesn't stick, we know there's input sanitization which infers a custom UI
|
|||
if (bool){ |
|||
|
|||
inputElem.value = smile; |
|||
inputElem.style.cssText = 'position:absolute;visibility:hidden;'; |
|||
|
|||
if (/^range$/.test(inputElemType) && inputElem.style.WebkitAppearance !== undefined){ |
|||
|
|||
docElement.appendChild(inputElem); |
|||
defaultView = document.defaultView; |
|||
|
|||
// Safari 2-4 allows the smiley as a value, despite making a slider
|
|||
bool = defaultView.getComputedStyle && |
|||
defaultView.getComputedStyle(inputElem, null).WebkitAppearance !== 'textfield' && |
|||
// Mobile android web browser has false positive, so must
|
|||
// check the height to see if the widget is actually there.
|
|||
(inputElem.offsetHeight !== 0); |
|||
|
|||
docElement.removeChild(inputElem); |
|||
|
|||
} else if (/^(search|tel)$/.test(inputElemType)){ |
|||
// Spec doesnt define any special parsing or detectable UI
|
|||
// behaviors so we pass these through as true
|
|||
|
|||
// Interestingly, opera fails the earlier test, so it doesn't
|
|||
// even make it here.
|
|||
|
|||
} else if (/^(url|email)$/.test(inputElemType)) { |
|||
// Real url and email support comes with prebaked validation.
|
|||
bool = inputElem.checkValidity && inputElem.checkValidity() === false; |
|||
|
|||
} else if (/^color$/.test(inputElemType)) { |
|||
// chuck into DOM and force reflow for Opera bug in 11.00
|
|||
// github.com/Modernizr/Modernizr/issues#issue/159
|
|||
docElement.appendChild(inputElem); |
|||
docElement.offsetWidth; |
|||
bool = inputElem.value != smile; |
|||
docElement.removeChild(inputElem); |
|||
|
|||
} else { |
|||
// If the upgraded input compontent rejects the :) text, we got a winner
|
|||
bool = inputElem.value != smile; |
|||
} |
|||
} |
|||
|
|||
inputs[ props[i] ] = !!bool; |
|||
} |
|||
return inputs; |
|||
})('search tel url email datetime date month week time datetime-local number range color'.split(' ')); |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
// End of test definitions
|
|||
// -----------------------
|
|||
|
|||
|
|||
|
|||
// Run through all tests and detect their support in the current UA.
|
|||
// todo: hypothetically we could be doing an array of tests and use a basic loop here.
|
|||
for ( var feature in tests ) { |
|||
if ( hasOwnProperty( tests, feature ) ) { |
|||
// run the test, throw the return value into the Modernizr,
|
|||
// then based on that boolean, define an appropriate className
|
|||
// and push it into an array of classes we'll join later.
|
|||
featurename = feature.toLowerCase(); |
|||
ret[ featurename ] = tests[ feature ](); |
|||
|
|||
classes.push( ( ret[ featurename ] ? '' : 'no-' ) + featurename ); |
|||
} |
|||
} |
|||
|
|||
// input tests need to run.
|
|||
if (!ret.input) webforms(); |
|||
|
|||
|
|||
|
|||
// Per 1.6: deprecated API is still accesible for now:
|
|||
ret.crosswindowmessaging = ret.postmessage; |
|||
ret.historymanagement = ret.history; |
|||
|
|||
|
|||
|
|||
/** |
|||
* Addtest allows the user to define their own feature tests |
|||
* the result will be added onto the Modernizr object, |
|||
* as well as an appropriate className set on the html element |
|||
* |
|||
* @param feature - String naming the feature |
|||
* @param test - Function returning true if feature is supported, false if not |
|||
*/ |
|||
ret.addTest = function (feature, test) { |
|||
feature = feature.toLowerCase(); |
|||
|
|||
if (ret[ feature ]) { |
|||
return; // quit if you're trying to overwrite an existing test
|
|||
} |
|||
test = !!(test()); |
|||
docElement.className += ' ' + (test ? '' : 'no-') + feature; |
|||
ret[ feature ] = test; |
|||
return ret; // allow chaining.
|
|||
}; |
|||
|
|||
/** |
|||
* Reset m.style.cssText to nothing to reduce memory footprint. |
|||
*/ |
|||
set_css( '' ); |
|||
modElem = inputElem = null; |
|||
|
|||
//>>BEGIN IEPP
|
|||
// Enable HTML 5 elements for styling in IE.
|
|||
// fyi: jscript version does not reflect trident version
|
|||
// therefore ie9 in ie7 mode will still have a jScript v.9
|
|||
if ( enableHTML5 && window.attachEvent && (function(){ var elem = document.createElement("div"); |
|||
elem.innerHTML = "<elem></elem>"; |
|||
return elem.childNodes.length !== 1; })()) { |
|||
// iepp v1.6.2 by @jon_neal : code.google.com/p/ie-print-protector
|
|||
(function(win, doc) { |
|||
var elems = 'abbr|article|aside|audio|canvas|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video', |
|||
elemsArr = elems.split('|'), |
|||
elemsArrLen = elemsArr.length, |
|||
elemRegExp = new RegExp('(^|\\s)('+elems+')', 'gi'), |
|||
tagRegExp = new RegExp('<(\/*)('+elems+')', 'gi'), |
|||
ruleRegExp = new RegExp('(^|[^\\n]*?\\s)('+elems+')([^\\n]*)({[\\n\\w\\W]*?})', 'gi'), |
|||
docFrag = doc.createDocumentFragment(), |
|||
html = doc.documentElement, |
|||
head = html.firstChild, |
|||
bodyElem = doc.createElement('body'), |
|||
styleElem = doc.createElement('style'), |
|||
body; |
|||
function shim(doc) { |
|||
var a = -1; |
|||
while (++a < elemsArrLen) |
|||
// Use createElement so IE allows HTML5-named elements in a document
|
|||
doc.createElement(elemsArr[a]); |
|||
} |
|||
function getCSS(styleSheetList, mediaType) { |
|||
var a = -1, |
|||
len = styleSheetList.length, |
|||
styleSheet, |
|||
cssTextArr = []; |
|||
while (++a < len) { |
|||
styleSheet = styleSheetList[a]; |
|||
// Get css from all non-screen stylesheets and their imports
|
|||
if ((mediaType = styleSheet.media || mediaType) != 'screen') cssTextArr.push(getCSS(styleSheet.imports, mediaType), styleSheet.cssText); |
|||
} |
|||
return cssTextArr.join(''); |
|||
} |
|||
// Shim the document and iepp fragment
|
|||
shim(doc); |
|||
shim(docFrag); |
|||
// Add iepp custom print style element
|
|||
head.insertBefore(styleElem, head.firstChild); |
|||
styleElem.media = 'print'; |
|||
win.attachEvent( |
|||
'onbeforeprint', |
|||
function() { |
|||
var a = -1, |
|||
cssText = getCSS(doc.styleSheets, 'all'), |
|||
cssTextArr = [], |
|||
rule; |
|||
body = body || doc.body; |
|||
// Get only rules which reference HTML5 elements by name
|
|||
while ((rule = ruleRegExp.exec(cssText)) != null) |
|||
// Replace all html5 element references with iepp substitute classnames
|
|||
cssTextArr.push((rule[1]+rule[2]+rule[3]).replace(elemRegExp, '$1.iepp_$2')+rule[4]); |
|||
// Write iepp custom print CSS
|
|||
styleElem.styleSheet.cssText = cssTextArr.join('\n'); |
|||
while (++a < elemsArrLen) { |
|||
var nodeList = doc.getElementsByTagName(elemsArr[a]), |
|||
nodeListLen = nodeList.length, |
|||
b = -1; |
|||
while (++b < nodeListLen) |
|||
if (nodeList[b].className.indexOf('iepp_') < 0) |
|||
// Append iepp substitute classnames to all html5 elements
|
|||
nodeList[b].className += ' iepp_'+elemsArr[a]; |
|||
} |
|||
docFrag.appendChild(body); |
|||
html.appendChild(bodyElem); |
|||
// Write iepp substitute print-safe document
|
|||
bodyElem.className = body.className; |
|||
// Replace HTML5 elements with <font> which is print-safe and shouldn't conflict since it isn't part of html5
|
|||
bodyElem.innerHTML = body.innerHTML.replace(tagRegExp, '<$1font'); |
|||
} |
|||
); |
|||
win.attachEvent( |
|||
'onafterprint', |
|||
function() { |
|||
// Undo everything done in onbeforeprint
|
|||
bodyElem.innerHTML = ''; |
|||
html.removeChild(bodyElem); |
|||
html.appendChild(body); |
|||
styleElem.styleSheet.cssText = ''; |
|||
} |
|||
); |
|||
})(window, document); |
|||
} |
|||
//>>END IEPP
|
|||
|
|||
// Assign private properties to the return object with prefix
|
|||
ret._enableHTML5 = enableHTML5; |
|||
ret._version = version; |
|||
|
|||
// Remove "no-js" class from <html> element, if it exists:
|
|||
docElement.className = docElement.className.replace(/\bno-js\b/,'') |
|||
+ ' js ' |
|||
|
|||
// Add the new classes to the <html> element.
|
|||
+ classes.join( ' ' ); |
|||
|
|||
return ret; |
|||
|
|||
})(this,this.document); |
|||
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -1 +0,0 @@ |
|||
5948d8cc4932a48bc126343cf1d5ea2ac5f0b3c0 |
|||
@ -1 +0,0 @@ |
|||
eec584bc589cf1ab1fe50781c1780f89c90aa31b |
|||
@ -1 +0,0 @@ |
|||
10542650ebb596cd1cfef53bf8fd64b86ee5f957 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:9a8492a580bf85d3e98ae8861fbd45567e5a1f83eeafcf9574da0399d5f602ab |
|||
size 180 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:39ab7ccd9f4e82579da78a9241265df288d8eb65dbbd7cf48aed2d0129887df5 |
|||
size 178 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:691597e8a40a891ea94d3589976ecfc33e6145c49422443b00ac2b5a0022964c |
|||
size 120 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:f0e6cd91b837d5c5644d026e5ffeccd907953317cd5c0f689901733afda260b2 |
|||
size 105 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:c108f5cbf2dd9ec07a26530695ddd95e1664597ce6c056ae44c162cc2e28cec4 |
|||
size 111 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:ddf5dd4e0ef2b185e8bb0af7b6e90ebe74a84384cb4700658e76e754c8bfe550 |
|||
size 110 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:f6f1c1bedf1a0f37cfef81d12f5f012869d1ee7c984775a569827a1784d34f5c |
|||
size 119 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:54270656df079c4da5182629a080fc633b6f84b87985eb016d25a560e2c38d4a |
|||
size 101 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:57adb0d65f4e91dacfee975d9574422bee7486c8a182d60133728c672f2cdbbc |
|||
size 4369 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:20f8c6667afc48aa433ee9eb6d8a0584bdbd6b4a4a9091ff1e6b3adb31e63bd9 |
|||
size 4369 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:07460e843c3e59aaadbb34231e699e856a2980753c7a47b66447da5d9f93fb7f |
|||
size 4369 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:ea2e29625de3463465e93b002b065f5833e05b97f7a052b1c141e754d62e1a8b |
|||
size 4369 |
|||
@ -1,3 +0,0 @@ |
|||
version https://git-lfs.github.com/spec/v1 |
|||
oid sha256:1e32c6dbf5d3fd342f27a78aa881550d6412aa207f48468724a6a15402b6041b |
|||
size 4369 |
|||
@ -1,24 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Accordion 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; } |
|||
@ -1,16 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI CSS Framework 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* http://docs.jquery.com/UI/Theming |
|||
*/ |
|||
@import "jquery.ui.base.css"; |
|||
@import "jquery.ui.theme.css"; |
|||
@ -1,62 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Autocomplete 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* 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 */ |
|||
|
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Menu 1.8.11 |
|||
* |
|||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; |
|||
} |
|||
@ -1,11 +0,0 @@ |
|||
@import url("jquery.ui.core.css"); |
|||
@import url("jquery.ui.resizable.css"); |
|||
@import url("jquery.ui.selectable.css"); |
|||
@import url("jquery.ui.accordion.css"); |
|||
@import url("jquery.ui.autocomplete.css"); |
|||
@import url("jquery.ui.button.css"); |
|||
@import url("jquery.ui.dialog.css"); |
|||
@import url("jquery.ui.slider.css"); |
|||
@import url("jquery.ui.tabs.css"); |
|||
@import url("jquery.ui.datepicker.css"); |
|||
@import url("jquery.ui.progressbar.css"); |
|||
@ -1,43 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Button 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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 */ |
|||
@ -1,46 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI CSS Framework 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } |
|||
.ui-helper-clearfix { display: inline-block; } |
|||
/* required comment for clearfix to work in Opera \*/ |
|||
* html .ui-helper-clearfix { height:1%; } |
|||
.ui-helper-clearfix { display:block; } |
|||
/* end clearfix */ |
|||
.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%; } |
|||
@ -1,73 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Datepicker 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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%; } |
|||
|
|||
/* 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 { |
|||
display: none; /*sorry for IE5*/ |
|||
display/**/: block; /*sorry for IE5*/ |
|||
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*/ |
|||
} |
|||
@ -1,26 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Dialog 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; } |
|||
@ -1,16 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Progressbar 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* http://docs.jquery.com/UI/Progressbar#theming |
|||
*/ |
|||
.ui-progressbar { height:2em; text-align: left; } |
|||
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } |
|||
@ -1,25 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Resizable 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)] |
|||
* |
|||
* http://docs.jquery.com/UI/Resizable#theming |
|||
*/ |
|||
.ui-resizable { position: relative;} |
|||
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; 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;} |
|||
@ -1,15 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Selectable 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* http://docs.jquery.com/UI/Selectable#theming |
|||
*/ |
|||
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } |
|||
@ -1,29 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Slider 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; } |
|||
@ -1,23 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI Tabs 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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; } |
|||
@ -1,257 +0,0 @@ |
|||
/* |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery UI CSS Framework 1.8.11 |
|||
* |
|||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) |
|||
* |
|||
* 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-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-top { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-right { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-left { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; } |
|||
.ui-corner-all { -moz-border-radius: 4px/*{cornerRadius}*/; -webkit-border-radius: 4px/*{cornerRadius}*/; border-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}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; } |
|||
@ -1 +0,0 @@ |
|||
79285779228262f9c021d1ee5a455c6f7f4c1113 |
|||
@ -1 +0,0 @@ |
|||
89ff61bcba0fbfbe359c0d3734942d260b702a4b |
|||
@ -1 +0,0 @@ |
|||
fec4bd7ea4b03d4eb775a39e20dc1d4da6a928ae |
|||
File diff suppressed because it is too large
File diff suppressed because it is too large
@ -1,53 +0,0 @@ |
|||
/** |
|||
* Note: While Microsoft is not the author of this file, Microsoft is |
|||
* offering you a license subject to the terms of the Microsoft Software |
|||
* License Terms for Microsoft ASP.NET Model View Controller 3. |
|||
* Microsoft reserves all other rights. The notices below are provided |
|||
* for informational purposes only and are not the license terms under |
|||
* which Microsoft distributed this file. |
|||
* |
|||
* jQuery Validation Plugin 1.8.0 |
|||
* |
|||
* http://bassistance.de/jquery-plugins/jquery-plugin-validation/
|
|||
* http://docs.jquery.com/Plugins/Validation
|
|||
* |
|||
* Copyright (c) 2006 - 2011 Jörn Zaefferer |
|||
*/ |
|||
(function(c){c.extend(c.fn,{validate:function(a){if(this.length){var b=c.data(this[0],"validator");if(b)return b;b=new c.validator(a,this[0]);c.data(this[0],"validator",b);if(b.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){b.cancelSubmit=true});b.settings.submitHandler&&this.find("input, button").filter(":submit").click(function(){b.submitButton=this});this.submit(function(d){function e(){if(b.settings.submitHandler){if(b.submitButton)var f=c("<input type='hidden'/>").attr("name", |
|||
b.submitButton.name).val(b.submitButton.value).appendTo(b.currentForm);b.settings.submitHandler.call(b,b.currentForm);b.submitButton&&f.remove();return false}return true}b.settings.debug&&d.preventDefault();if(b.cancelSubmit){b.cancelSubmit=false;return e()}if(b.form()){if(b.pendingRequest){b.formSubmitted=true;return false}return e()}else{b.focusInvalid();return false}})}return b}else a&&a.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing")},valid:function(){if(c(this[0]).is("form"))return this.validate().form(); |
|||
else{var a=true,b=c(this[0].form).validate();this.each(function(){a&=b.element(this)});return a}},removeAttrs:function(a){var b={},d=this;c.each(a.split(/\s/),function(e,f){b[f]=d.attr(f);d.removeAttr(f)});return b},rules:function(a,b){var d=this[0];if(a){var e=c.data(d.form,"validator").settings,f=e.rules,g=c.validator.staticRules(d);switch(a){case "add":c.extend(g,c.validator.normalizeRule(b));f[d.name]=g;if(b.messages)e.messages[d.name]=c.extend(e.messages[d.name],b.messages);break;case "remove":if(!b){delete f[d.name]; |
|||
return g}var h={};c.each(b.split(/\s/),function(j,i){h[i]=g[i];delete g[i]});return h}}d=c.validator.normalizeRules(c.extend({},c.validator.metadataRules(d),c.validator.classRules(d),c.validator.attributeRules(d),c.validator.staticRules(d)),d);if(d.required){e=d.required;delete d.required;d=c.extend({required:e},d)}return d}});c.extend(c.expr[":"],{blank:function(a){return!c.trim(""+a.value)},filled:function(a){return!!c.trim(""+a.value)},unchecked:function(a){return!a.checked}});c.validator=function(a, |
|||
b){this.settings=c.extend(true,{},c.validator.defaults,a);this.currentForm=b;this.init()};c.validator.format=function(a,b){if(arguments.length==1)return function(){var d=c.makeArray(arguments);d.unshift(a);return c.validator.format.apply(this,d)};if(arguments.length>2&&b.constructor!=Array)b=c.makeArray(arguments).slice(1);if(b.constructor!=Array)b=[b];c.each(b,function(d,e){a=a.replace(RegExp("\\{"+d+"\\}","g"),e)});return a};c.extend(c.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error", |
|||
validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:c([]),errorLabelContainer:c([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(a){this.lastActive=a;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,a,this.settings.errorClass,this.settings.validClass);this.addWrapper(this.errorsFor(a)).hide()}},onfocusout:function(a){if(!this.checkable(a)&&(a.name in this.submitted||!this.optional(a)))this.element(a)}, |
|||
onkeyup:function(a){if(a.name in this.submitted||a==this.lastElement)this.element(a)},onclick:function(a){if(a.name in this.submitted)this.element(a);else a.parentNode.name in this.submitted&&this.element(a.parentNode)},highlight:function(a,b,d){c(a).addClass(b).removeClass(d)},unhighlight:function(a,b,d){c(a).removeClass(b).addClass(d)}},setDefaults:function(a){c.extend(c.validator.defaults,a)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.", |
|||
url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:c.validator.format("Please enter no more than {0} characters."),minlength:c.validator.format("Please enter at least {0} characters."),rangelength:c.validator.format("Please enter a value between {0} and {1} characters long."), |
|||
range:c.validator.format("Please enter a value between {0} and {1}."),max:c.validator.format("Please enter a value less than or equal to {0}."),min:c.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){function a(e){var f=c.data(this[0].form,"validator");e="on"+e.type.replace(/^validate/,"");f.settings[e]&&f.settings[e].call(f,this[0])}this.labelContainer=c(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&& |
|||
this.labelContainer||c(this.currentForm);this.containers=c(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var b=this.groups={};c.each(this.settings.groups,function(e,f){c.each(f.split(/\s/),function(g,h){b[h]=e})});var d=this.settings.rules;c.each(d,function(e,f){d[e]=c.validator.normalizeRule(f)});c(this.currentForm).validateDelegate(":text, :password, :file, select, textarea", |
|||
"focusin focusout keyup",a).validateDelegate(":radio, :checkbox, select, option","click",a);this.settings.invalidHandler&&c(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler)},form:function(){this.checkForm();c.extend(this.submitted,this.errorMap);this.invalid=c.extend({},this.errorMap);this.valid()||c(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid()},checkForm:function(){this.prepareForm();for(var a=0,b=this.currentElements=this.elements();b[a];a++)this.check(b[a]); |
|||
return this.valid()},element:function(a){this.lastElement=a=this.clean(a);this.prepareElement(a);this.currentElements=c(a);var b=this.check(a);if(b)delete this.invalid[a.name];else this.invalid[a.name]=true;if(!this.numberOfInvalids())this.toHide=this.toHide.add(this.containers);this.showErrors();return b},showErrors:function(a){if(a){c.extend(this.errorMap,a);this.errorList=[];for(var b in a)this.errorList.push({message:a[b],element:this.findByName(b)[0]});this.successList=c.grep(this.successList, |
|||
function(d){return!(d.name in a)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){c.fn.resetForm&&c(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass)},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(a){var b=0,d;for(d in a)b++;return b},hideErrors:function(){this.addWrapper(this.toHide).hide()}, |
|||
valid:function(){return this.size()==0},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid)try{c(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin")}catch(a){}},findLastActive:function(){var a=this.lastActive;return a&&c.grep(this.errorList,function(b){return b.element.name==a.name}).length==1&&a},elements:function(){var a=this,b={};return c([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&& |
|||
a.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in b||!a.objectLength(c(this).rules()))return false;return b[this.name]=true})},clean:function(a){return c(a)[0]},errors:function(){return c(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext)},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=c([]);this.toHide=c([]);this.currentElements=c([])},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers)}, |
|||
prepareElement:function(a){this.reset();this.toHide=this.errorsFor(a)},check:function(a){a=this.clean(a);if(this.checkable(a))a=this.findByName(a.name).not(this.settings.ignore)[0];var b=c(a).rules(),d=false,e;for(e in b){var f={method:e,parameters:b[e]};try{var g=c.validator.methods[e].call(this,a.value.replace(/\r/g,""),a,f.parameters);if(g=="dependency-mismatch")d=true;else{d=false;if(g=="pending"){this.toHide=this.toHide.not(this.errorsFor(a));return}if(!g){this.formatAndAdd(a,f);return false}}}catch(h){this.settings.debug&& |
|||
window.console&&console.log("exception occured when checking element "+a.id+", check the '"+f.method+"' method",h);throw h;}}if(!d){this.objectLength(b)&&this.successList.push(a);return true}},customMetaMessage:function(a,b){if(c.metadata){var d=this.settings.meta?c(a).metadata()[this.settings.meta]:c(a).metadata();return d&&d.messages&&d.messages[b]}},customMessage:function(a,b){var d=this.settings.messages[a];return d&&(d.constructor==String?d:d[b])},findDefined:function(){for(var a=0;a<arguments.length;a++)if(arguments[a]!== |
|||
undefined)return arguments[a]},defaultMessage:function(a,b){return this.findDefined(this.customMessage(a.name,b),this.customMetaMessage(a,b),!this.settings.ignoreTitle&&a.title||undefined,c.validator.messages[b],"<strong>Warning: No message defined for "+a.name+"</strong>")},formatAndAdd:function(a,b){var d=this.defaultMessage(a,b.method),e=/\$?\{(\d+)\}/g;if(typeof d=="function")d=d.call(this,b.parameters,a);else if(e.test(d))d=jQuery.format(d.replace(e,"{$1}"),b.parameters);this.errorList.push({message:d, |
|||
element:a});this.errorMap[a.name]=d;this.submitted[a.name]=d},addWrapper:function(a){if(this.settings.wrapper)a=a.add(a.parent(this.settings.wrapper));return a},defaultShowErrors:function(){for(var a=0;this.errorList[a];a++){var b=this.errorList[a];this.settings.highlight&&this.settings.highlight.call(this,b.element,this.settings.errorClass,this.settings.validClass);this.showLabel(b.element,b.message)}if(this.errorList.length)this.toShow=this.toShow.add(this.containers);if(this.settings.success)for(a= |
|||
0;this.successList[a];a++)this.showLabel(this.successList[a]);if(this.settings.unhighlight){a=0;for(b=this.validElements();b[a];a++)this.settings.unhighlight.call(this,b[a],this.settings.errorClass,this.settings.validClass)}this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return c(this.errorList).map(function(){return this.element})},showLabel:function(a, |
|||
b){var d=this.errorsFor(a);if(d.length){d.removeClass().addClass(this.settings.errorClass);d.attr("generated")&&d.html(b)}else{d=c("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(a),generated:true}).addClass(this.settings.errorClass).html(b||"");if(this.settings.wrapper)d=d.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();this.labelContainer.append(d).length||(this.settings.errorPlacement?this.settings.errorPlacement(d,c(a)):d.insertAfter(a))}if(!b&&this.settings.success){d.text(""); |
|||
typeof this.settings.success=="string"?d.addClass(this.settings.success):this.settings.success(d)}this.toShow=this.toShow.add(d)},errorsFor:function(a){var b=this.idOrName(a);return this.errors().filter(function(){return c(this).attr("for")==b})},idOrName:function(a){return this.groups[a.name]||(this.checkable(a)?a.name:a.id||a.name)},checkable:function(a){return/radio|checkbox/i.test(a.type)},findByName:function(a){var b=this.currentForm;return c(document.getElementsByName(a)).map(function(d,e){return e.form== |
|||
b&&e.name==a&&e||null})},getLength:function(a,b){switch(b.nodeName.toLowerCase()){case "select":return c("option:selected",b).length;case "input":if(this.checkable(b))return this.findByName(b.name).filter(":checked").length}return a.length},depend:function(a,b){return this.dependTypes[typeof a]?this.dependTypes[typeof a](a,b):true},dependTypes:{"boolean":function(a){return a},string:function(a,b){return!!c(a,b.form).length},"function":function(a,b){return a(b)}},optional:function(a){return!c.validator.methods.required.call(this, |
|||
c.trim(a.value),a)&&"dependency-mismatch"},startRequest:function(a){if(!this.pending[a.name]){this.pendingRequest++;this.pending[a.name]=true}},stopRequest:function(a,b){this.pendingRequest--;if(this.pendingRequest<0)this.pendingRequest=0;delete this.pending[a.name];if(b&&this.pendingRequest==0&&this.formSubmitted&&this.form()){c(this.currentForm).submit();this.formSubmitted=false}else if(!b&&this.pendingRequest==0&&this.formSubmitted){c(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted= |
|||
false}},previousValue:function(a){return c.data(a,"previousValue")||c.data(a,"previousValue",{old:null,valid:true,message:this.defaultMessage(a,"remote")})}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(a,b){a.constructor==String?this.classRuleSettings[a]=b:c.extend(this.classRuleSettings, |
|||
a)},classRules:function(a){var b={};(a=c(a).attr("class"))&&c.each(a.split(" "),function(){this in c.validator.classRuleSettings&&c.extend(b,c.validator.classRuleSettings[this])});return b},attributeRules:function(a){var b={};a=c(a);for(var d in c.validator.methods){var e=a.attr(d);if(e)b[d]=e}b.maxlength&&/-1|2147483647|524288/.test(b.maxlength)&&delete b.maxlength;return b},metadataRules:function(a){if(!c.metadata)return{};var b=c.data(a.form,"validator").settings.meta;return b?c(a).metadata()[b]: |
|||
c(a).metadata()},staticRules:function(a){var b={},d=c.data(a.form,"validator");if(d.settings.rules)b=c.validator.normalizeRule(d.settings.rules[a.name])||{};return b},normalizeRules:function(a,b){c.each(a,function(d,e){if(e===false)delete a[d];else if(e.param||e.depends){var f=true;switch(typeof e.depends){case "string":f=!!c(e.depends,b.form).length;break;case "function":f=e.depends.call(b,b)}if(f)a[d]=e.param!==undefined?e.param:true;else delete a[d]}});c.each(a,function(d,e){a[d]=c.isFunction(e)? |
|||
e(b):e});c.each(["minlength","maxlength","min","max"],function(){if(a[this])a[this]=Number(a[this])});c.each(["rangelength","range"],function(){if(a[this])a[this]=[Number(a[this][0]),Number(a[this][1])]});if(c.validator.autoCreateRanges){if(a.min&&a.max){a.range=[a.min,a.max];delete a.min;delete a.max}if(a.minlength&&a.maxlength){a.rangelength=[a.minlength,a.maxlength];delete a.minlength;delete a.maxlength}}a.messages&&delete a.messages;return a},normalizeRule:function(a){if(typeof a=="string"){var b= |
|||
{};c.each(a.split(/\s/),function(){b[this]=true});a=b}return a},addMethod:function(a,b,d){c.validator.methods[a]=b;c.validator.messages[a]=d!=undefined?d:c.validator.messages[a];b.length<3&&c.validator.addClassRules(a,c.validator.normalizeRule(a))},methods:{required:function(a,b,d){if(!this.depend(d,b))return"dependency-mismatch";switch(b.nodeName.toLowerCase()){case "select":return(a=c(b).val())&&a.length>0;case "input":if(this.checkable(b))return this.getLength(a,b)>0;default:return c.trim(a).length> |
|||
0}},remote:function(a,b,d){if(this.optional(b))return"dependency-mismatch";var e=this.previousValue(b);this.settings.messages[b.name]||(this.settings.messages[b.name]={});e.originalMessage=this.settings.messages[b.name].remote;this.settings.messages[b.name].remote=e.message;d=typeof d=="string"&&{url:d}||d;if(this.pending[b.name])return"pending";if(e.old===a)return e.valid;e.old=a;var f=this;this.startRequest(b);var g={};g[b.name]=a;c.ajax(c.extend(true,{url:d,mode:"abort",port:"validate"+b.name, |
|||
dataType:"json",data:g,success:function(h){f.settings.messages[b.name].remote=e.originalMessage;var j=h===true;if(j){var i=f.formSubmitted;f.prepareElement(b);f.formSubmitted=i;f.successList.push(b);f.showErrors()}else{i={};h=h||f.defaultMessage(b,"remote");i[b.name]=e.message=c.isFunction(h)?h(a):h;f.showErrors(i)}e.valid=j;f.stopRequest(b,j)}},d));return"pending"},minlength:function(a,b,d){return this.optional(b)||this.getLength(c.trim(a),b)>=d},maxlength:function(a,b,d){return this.optional(b)|| |
|||
this.getLength(c.trim(a),b)<=d},rangelength:function(a,b,d){a=this.getLength(c.trim(a),b);return this.optional(b)||a>=d[0]&&a<=d[1]},min:function(a,b,d){return this.optional(b)||a>=d},max:function(a,b,d){return this.optional(b)||a<=d},range:function(a,b,d){return this.optional(b)||a>=d[0]&&a<=d[1]},email:function(a,b){return this.optional(b)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(a)}, |
|||
url:function(a,b){return this.optional(b)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(a)}, |
|||
date:function(a,b){return this.optional(b)||!/Invalid|NaN/.test(new Date(a))},dateISO:function(a,b){return this.optional(b)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(a)},digits:function(a,b){return this.optional(b)||/^\d+$/.test(a)},creditcard:function(a,b){if(this.optional(b))return"dependency-mismatch";if(/[^0-9-]+/.test(a))return false;var d=0,e=0,f=false;a=a.replace(/\D/g,"");for(var g=a.length-1;g>= |
|||
0;g--){e=a.charAt(g);e=parseInt(e,10);if(f)if((e*=2)>9)e-=9;d+=e;f=!f}return d%10==0},accept:function(a,b,d){d=typeof d=="string"?d.replace(/,/g,"|"):"png|jpe?g|gif";return this.optional(b)||a.match(RegExp(".("+d+")$","i"))},equalTo:function(a,b,d){d=c(d).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){c(b).valid()});return a==d.val()}}});c.format=c.validator.format})(jQuery); |
|||
(function(c){var a={};if(c.ajaxPrefilter)c.ajaxPrefilter(function(d,e,f){e=d.port;if(d.mode=="abort"){a[e]&&a[e].abort();a[e]=f}});else{var b=c.ajax;c.ajax=function(d){var e=("port"in d?d:c.ajaxSettings).port;if(("mode"in d?d:c.ajaxSettings).mode=="abort"){a[e]&&a[e].abort();return a[e]=b.apply(this,arguments)}return b.apply(this,arguments)}}})(jQuery); |
|||
(function(c){!jQuery.event.special.focusin&&!jQuery.event.special.focusout&&document.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(e){e=c.event.fix(e);e.type=b;return c.event.handle.call(this,e)}c.event.special[b]={setup:function(){this.addEventListener(a,d,true)},teardown:function(){this.removeEventListener(a,d,true)},handler:function(e){arguments[0]=c.event.fix(e);arguments[0].type=b;return c.event.handle.apply(this,arguments)}}});c.extend(c.fn,{validateDelegate:function(a, |
|||
b,d){return this.bind(b,function(e){var f=c(e.target);if(f.is(a))return d.apply(f,arguments)})}})})(jQuery); |
|||
Binary file not shown.
@ -1 +0,0 @@ |
|||
8f56f29ea15515370d52a560396067bb28b52005 |
|||
@ -1 +0,0 @@ |
|||
f26892e9cc1b962bbca6e841091ff9be27dbb522 |
|||
@ -1,4 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<repositories> |
|||
<repository path="..\Test\packages.config" /> |
|||
</repositories> |
|||
Loading…
Reference in new issue