1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/*!
* Ext JS Library 3.0.3
* Copyright(c) 2006-2009 Ext JS, LLC
* licensing@extjs.com
* http://www.extjs.com/license
*/
.x-date-picker {
border-color: #1b376c;
background-color:#fff;
}
.x-date-middle,.x-date-left,.x-date-right {
background-image: url(../images/default/shared/hd-sprite.gif);
color:#fff;
font:bold 11px "sans serif", tahoma, verdana, helvetica;
}
.x-date-middle .x-btn .x-btn-text {
color:#fff;
}
.x-date-middle .x-btn-mc em.x-btn-arrow {
background-image:url(../images/default/toolbar/btn-arrow-light.gif);
}
.x-date-right a {
background-image: url(../images/default/shared/right-btn.gif);
}
.x-date-left a{
background-image: url(../images/default/shared/left-btn.gif);
}
.x-date-inner th {
background-color:#dfecfb;
background-image:url(../images/default/shared/glass-bg.gif);
border-bottom-color:#a3bad9;
font:normal 10px arial, helvetica,tahoma,sans-serif;
color:#233d6d;
}
.x-date-inner td {
border-color:#fff;
}
.x-date-inner a {
font:normal 11px arial, helvetica,tahoma,sans-serif;
color:#000;
}
.x-date-inner .x-date-active{
color:#000;
}
.x-date-inner .x-date-selected a{
background-color:#dfecfb;
background-image:url(../images/default/shared/glass-bg.gif);
border-color:#8db2e3;
}
.x-date-inner .x-date-today a{
border-color:darkred;
}
.x-date-inner .x-date-selected span{
font-weight:bold;
}
.x-date-inner .x-date-prevday a,.x-date-inner .x-date-nextday a {
color:#aaa;
}
.x-date-bottom {
border-top-color:#a3bad9;
background-color:#dfecfb;
background-image:url(../images/default/shared/glass-bg.gif);
}
.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{
color:#000;
background-color:#ddecfe;
}
.x-date-inner .x-date-disabled a {
background-color:#eee;
color:#bbb;
}
.x-date-mmenu{
background-color:#eee !important;
}
.x-date-mmenu .x-menu-item {
font-size:10px;
color:#000;
}
.x-date-mp {
background-color:#fff;
}
.x-date-mp td {
font:normal 11px arial, helvetica,tahoma,sans-serif;
}
.x-date-mp-btns button {
background-color:#083772;
color:#fff;
border-color: #3366cc #000055 #000055 #3366cc;
font:normal 11px arial, helvetica,tahoma,sans-serif;
}
.x-date-mp-btns {
background-color: #dfecfb;
background-image: url(../images/default/shared/glass-bg.gif);
}
.x-date-mp-btns td {
border-top-color: #c5d2df;
}
td.x-date-mp-month a,td.x-date-mp-year a {
color:#15428b;
}
td.x-date-mp-month a:hover,td.x-date-mp-year a:hover {
color:#15428b;
background-color: #ddecfe;
}
td.x-date-mp-sel a {
background-color: #dfecfb;
background-image: url(../images/default/shared/glass-bg.gif);
border-color:#8db2e3;
}
.x-date-mp-ybtn a {
background-image:url(../images/default/panel/tool-sprites.gif);
}
td.x-date-mp-sep {
border-right-color:#c5d2df;
}
|