source: trunk/spip/esqueleto-redcta/plugins/spip-listes_1_9_2/img_pack/date_picker.css @ 90

Last change on this file since 90 was 90, checked in by guille, 15 years ago

importacion de spip-listes-1_9_2

File size: 1.9 KB
Line 
1/* Date picker specific styles follow */
2
3a.date-picker {
4        width: 26px;
5        height: 26px;
6        border: none;
7        color: #fff;
8        padding: 0;
9        margin: 0;
10        float: left;
11        overflow: hidden;
12        cursor: pointer;
13        background: url(select_day_26.gif) no-repeat; 
14}
15a.date-picker span {
16        margin: 0 0 0 -2000px;
17}
18div.date-picker-holder {
19        position: relative;
20}
21div.date-picker-holder input {
22        float: left;
23}
24div.popup-calendar * {
25        margin: 0;
26        padding: 0;
27}
28div.popup-calendar {
29        display: none;
30        position: absolute;
31        z-index: 2;
32        top: 0;
33        left: -16px; /* value for IE */
34        padding: 4px;
35        border: 2px solid #000;
36        background: #fff;
37        color: #000;
38        overflow:hidden;
39        width: 163px;
40        font-size:0.8em;
41}
42html>body div.popup-calendar {
43        left: 99px; /* value for decent browsers */
44}
45div.popup-calendar iframe
46{
47        display:none;/*sorry for IE5*/
48        display/**/:block;/*sorry for IE5*/
49        position:absolute;
50        top:0;
51        left:0;
52        z-index:-1;
53        filter:mask();
54        width:3000px;
55        height:3000px;
56}
57div.popup-calendar div.link-close {
58        float: right;
59}
60div.popup-calendar div.link-prev {
61        float: left;
62}
63div.popup-calendar h3 {
64        font-size: 1.1em;
65        font-weight:bold;
66        margin: 2px 0 5px 3px;
67}
68div.popup-calendar div.link-next {
69        float: right;
70}
71div.popup-calendar div a {
72        padding: 1px 2px;
73        color: #000;
74}
75div.popup-calendar div a:hover {
76        background-color: #000;
77        color: #fff;
78}
79div.popup-calendar table {
80        margin: 0;
81}
82* html div.popup-calendar table {
83        display: inline;
84}
85div.popup-calendar table th, div.popup-calendar table td {
86        background: #eee;
87        width: 21px;
88        height: 17px;
89        text-align: center;
90}
91div.popup-calendar table td.inactive {
92        color: #aaa;
93        padding: 1px 0 0;
94}
95div.popup-calendar table td a {
96        display: block;
97        border: 1px solid #eee;
98        width: 19px;
99        height: 15px;
100        text-decoration: none;
101        color: #333;
102}
103div.popup-calendar table td.today a {
104        border-color: #aaa;
105}
106div.popup-calendar table td a.selected, div.popup-calendar table td a:hover {
107        background: #333; 
108        color: #fff;
109}
Note: See TracBrowser for help on using the repository browser.