forked from gavdraper/ServiceBrokerTicketMaster
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 73f6feb
Showing
211 changed files
with
124,055 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 11 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApp", "BrokerTicketingExample\WebApp.csproj", "{94C5BD01-9AA8-4829-AEA6-20B95703F93A}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PaymentProcessor", "PaymentProcessor\PaymentProcessor.csproj", "{F3AA3C90-1561-43B5-958E-EE504E476218}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrintProcessor", "PrintProcessor\PrintProcessor.csproj", "{A0ED7ABD-F57B-4B85-8847-2C2ABC3590EF}" | ||
EndProject | ||
Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "TicketMasterDb", "TicketMasterDb\TicketMasterDb.sqlproj", "{A2F95316-5A72-455B-8700-D4F9A1EF7135}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{94C5BD01-9AA8-4829-AEA6-20B95703F93A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{94C5BD01-9AA8-4829-AEA6-20B95703F93A}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{94C5BD01-9AA8-4829-AEA6-20B95703F93A}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{94C5BD01-9AA8-4829-AEA6-20B95703F93A}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{A0ED7ABD-F57B-4B85-8847-2C2ABC3590EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{A0ED7ABD-F57B-4B85-8847-2C2ABC3590EF}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{A0ED7ABD-F57B-4B85-8847-2C2ABC3590EF}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{A0ED7ABD-F57B-4B85-8847-2C2ABC3590EF}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{A2F95316-5A72-455B-8700-D4F9A1EF7135}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{A2F95316-5A72-455B-8700-D4F9A1EF7135}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{A2F95316-5A72-455B-8700-D4F9A1EF7135}.Debug|Any CPU.Deploy.0 = Debug|Any CPU | ||
{A2F95316-5A72-455B-8700-D4F9A1EF7135}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{A2F95316-5A72-455B-8700-D4F9A1EF7135}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{A2F95316-5A72-455B-8700-D4F9A1EF7135}.Release|Any CPU.Deploy.0 = Release|Any CPU | ||
{F3AA3C90-1561-43B5-958E-EE504E476218}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{F3AA3C90-1561-43B5-958E-EE504E476218}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{F3AA3C90-1561-43B5-958E-EE504E476218}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{F3AA3C90-1561-43B5-958E-EE504E476218}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
body { | ||
font-size: .85em; | ||
font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif; | ||
color: #232323; | ||
background-color: #fff; | ||
} | ||
|
||
header, footer, nav, section { | ||
display: block; | ||
} | ||
|
||
|
||
/* Styles for basic forms | ||
-----------------------------------------------------------*/ | ||
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; | ||
} | ||
|
||
.editor-label { | ||
margin: 1em 0 0 0; | ||
} | ||
|
||
.editor-field { | ||
margin: 0.5em 0 0 0; | ||
} | ||
|
||
|
||
/* Styles for validation helpers | ||
-----------------------------------------------------------*/ | ||
.field-validation-error { | ||
color: #f00; | ||
} | ||
|
||
.field-validation-valid { | ||
display: none; | ||
} | ||
|
||
.input-validation-error { | ||
border: 1px solid #f00; | ||
background-color: #fee; | ||
} | ||
|
||
.validation-summary-errors { | ||
font-weight: bold; | ||
color: #f00; | ||
} | ||
|
||
.validation-summary-valid { | ||
display: none; | ||
} |
Binary file added
BIN
+180 Bytes
BrokerTicketingExample/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+178 Bytes
BrokerTicketingExample/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+120 Bytes
BrokerTicketingExample/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+105 Bytes
BrokerTicketingExample/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+111 Bytes
BrokerTicketingExample/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+110 Bytes
BrokerTicketingExample/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+119 Bytes
BrokerTicketingExample/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+101 Bytes
...tingExample/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.27 KB
BrokerTicketingExample/Content/themes/base/images/ui-icons_222222_256x240.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.27 KB
BrokerTicketingExample/Content/themes/base/images/ui-icons_2e83ff_256x240.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.27 KB
BrokerTicketingExample/Content/themes/base/images/ui-icons_454545_256x240.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.27 KB
BrokerTicketingExample/Content/themes/base/images/ui-icons_888888_256x240.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.27 KB
BrokerTicketingExample/Content/themes/base/images/ui-icons_cd0a0a_256x240.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions
24
BrokerTicketingExample/Content/themes/base/jquery.ui.accordion.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* 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 4 Developer Preview. | ||
* 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; } |
16 changes: 16 additions & 0 deletions
16
BrokerTicketingExample/Content/themes/base/jquery.ui.all.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* 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 4 Developer Preview. | ||
* 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"; |
62 changes: 62 additions & 0 deletions
62
BrokerTicketingExample/Content/themes/base/jquery.ui.autocomplete.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* 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 4 Developer Preview. | ||
* 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 4 Developer Preview. | ||
* 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; | ||
} |
11 changes: 11 additions & 0 deletions
11
BrokerTicketingExample/Content/themes/base/jquery.ui.base.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
@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"); |
43 changes: 43 additions & 0 deletions
43
BrokerTicketingExample/Content/themes/base/jquery.ui.button.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* 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 4 Developer Preview. | ||
* 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 */ |
46 changes: 46 additions & 0 deletions
46
BrokerTicketingExample/Content/themes/base/jquery.ui.core.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* 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 4 Developer Preview. | ||
* 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%; } |
73 changes: 73 additions & 0 deletions
73
BrokerTicketingExample/Content/themes/base/jquery.ui.datepicker.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* 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 4 Developer Preview. | ||
* 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*/ | ||
} |
Oops, something went wrong.