web/data/cubicweb.calendar_popup.css
changeset 0 b97547f5f1fa
child 850 b747f1a1ced0
equal deleted inserted replaced
-1:000000000000 0:b97547f5f1fa
       
     1 /* styles for the calendar popup widget used to edit date fields
       
     2  *
       
     3  *  :organization: Logilab
       
     4  *  :copyright: 2003-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
       
     5  *  :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
       
     6  */
       
     7 
       
     8 div.calhelper {
       
     9   background: url("calendar.gif") no-repeat;
       
    10   border: 4px solid red;
       
    11   padding-left:18px;
       
    12   width: 10px;
       
    13   height: 10px;
       
    14   display: inline;
       
    15 }
       
    16 
       
    17 div.calpopup {
       
    18   position: absolute;
       
    19   margin-left: 130px;
       
    20   margin-top: -16px;
       
    21   width: 17em;
       
    22 }
       
    23 
       
    24 table.popupCalendar {
       
    25   text-align: center;
       
    26   border: 1px solid #ccc;
       
    27   z-index: 100;
       
    28 }
       
    29 
       
    30 
       
    31 table.popupCalendar th {
       
    32   background : #d9d9c1;
       
    33   color: black;
       
    34   padding: 2px 3px;
       
    35 }
       
    36 
       
    37 
       
    38 table.popupCalendar th.calTitle,
       
    39 table.popupCalendar th.prev,
       
    40 table.popupCalendar th.next {
       
    41   color: white;
       
    42   padding: 0px;
       
    43   background : #acac95;
       
    44 }
       
    45 
       
    46 table.popupCalendar th.prev,
       
    47 table.popupCalendar th.next {
       
    48   color: orangered;
       
    49   font-size: 50%;
       
    50   font-weight: bold;
       
    51   padding: 2px 0px;
       
    52 }
       
    53 
       
    54 
       
    55 table.popupCalendar td {
       
    56   width: 2em;
       
    57   height: 2em;
       
    58   background : #f6f5e1;
       
    59   font-size: 85%;
       
    60 }
       
    61 
       
    62 table.popupCalendar td.today {
       
    63   border: 2px solid black;
       
    64 }
       
    65