/* $Id: wingset-gecko.css,v 1.5 2005/03/14 10:50:50 neurolabs Exp $
   WINGSET GECKO VISUALS

   This is a pure OPTIONAL visual styling CSS file for the wingset demo.

   Drop/Replace/Modify this CSS file for your own wings application style.
   Avoid using absolute CSS selectors like table,img,... etc.
   Preferer the wings CSS classes like STable as seen in the wings distribution core stylesheet.
*/

/* [GECKO] selcted row */
div.STable > table > tbody > tr[selected="true"] {
    background-color: #FF5050!important;
}
/* [MSIE]  selected row */
.STable table tbody tr.selected {
    background-color: #FF5050 !important;
}

/* [GECKO] mouse over row */
div.STable > table > tbody > tr:hover {
    background-color: #FF0000!important;
}

/* [GECKO] odd row */
div.STable > table > tbody > tr[odd="true"] {
    background-color: #FFD0D0;
}

/* [GECKO] & [MSIE] odd row */
.STable table tbody tr.odd {
    background-color: #FFD0D0;
}

/* [GECKO] even row */
div.STable > table > tbody > tr[even="true"] {
    background-color: #FFB5B5;
}

/* [GECKO] & [MSIE] even row */
.STable table tbody tr.even {
    background-color: #FFB5B5;
}

/*div.STable > table > thead > tr > th {
   font-weight: bold;
   background-color: #FF0000;
}*/

/* [GECKO] & [MSIE] table header */
.STable table thead tr th {
   font-weight: bold;
   background-color: #FF0000;
}


div.mail_inactive, table.mail_inactive {
    color: #FF6060 !important;
}

div.tableCellDisabled, table.tableCellDisabled {
    color: #707070;
    font-style: italic;
}

div.tableCellEnabled,table.tableCellEnabled {
    color: #000000;
    font-style: normal;
}

/** All white, no border, smaller sans-serif-font */
BODY {
    background: #ffffff;
    margin: 0px;
    font-family: sans-serif;
    font-style: normal;
    font-size: 0.8em;
}

/* Input fields singe-dot lined, orange bg. */
TEXTAREA, INPUT[type="text"], select {
    background-color: #f6decc;
    border: 1px solid #e66e32;
}

/* Links: No visited colour, no underline  */
A:link, A:visited, A:active {
    color: #000066;
    text-decoration: none;
}

pre.label {
    font-family: sans-serif;
}
