diff options
Diffstat (limited to 'res/css/ui.css')
| -rw-r--r-- | res/css/ui.css | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/res/css/ui.css b/res/css/ui.css new file mode 100644 index 00000000..91cc08bb --- /dev/null +++ b/res/css/ui.css @@ -0,0 +1,115 @@ +.ui-autocomplete { position: absolute; cursor: default; } + +/* workarounds */ +* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ + +/* + * jQuery UI Menu 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Menu#theming + */ +.ui-menu { + list-style:none; + padding: 2px; + margin: 0; + display:block; + float: left; + font-size: 14px; + padding-top:30px; + border-left: 1px solid #222; + + max-width: 400px; + line-height:1.5; +} +.ui-menu .ui-menu { + margin-top: -3px; +} +.ui-menu .ui-menu-item { + margin:0; + padding: 0; + zoom: 1; + float: left; + clear: left; +} +.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 , +.ui-menu .ui-menu-item a.ui-state-active { + font-weight: normal; + margin: -1px; +} + + + +.ui-helper-hidden-accessible{ + position:fixed; + top:65px; + left:20px; + text-shadow: -1px 1px 8px #EDE275, 1px -1px 8px #EDE275; + font-size:16px; +} + +.ui-datepicker { + background-color: rgb(17,17,17); + background-color: rgba(17,17,17,0.9); + width: 217px; + height: auto; + margin: 5px auto 0; + font-size: 9pt; + border: 1px solid; + + -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5); + -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5); + box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5); +} + + + +.ui-datepicker-title { + text-align: center; +} + +.ui-datepicker-prev { + float: left; + background-position: center -30px; +} +.ui-datepicker-next { + float: right; + background-position: center 0; +} + +.ui-datepicker-header { + color: #e0e0e0; + font-weight: bold; + -webkit-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, 2); + -moz-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, .2); + box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, .2); + text-shadow: 1px -1px 0 #000; + filter: dropshadow(color=#000, offx=1, offy=-1); + line-height: 30px; + border-width: 1px 0 0 0; + border-style: solid; + border-color: #111; +} + +.ui-datepicker a { + text-decoration: none; + color: #fff; +} +.ui-datepicker a:hover { + color: #E03A3E; +} + +.ui-datepicker table { + width: 100%; +} |
