/*
 * $Header: /cvsroot/tikiwiki/tiki/styles/notheme/notheme-table.css,v 1.9 2004/02/16 20:01:23 mose Exp $
 *
 */

/* General tables */

/*
 * These styles apply to tables used to display
 * common listings such as the wiki page listing,
 * last changes, listings in admin screens, etc.
 */

/* The table */
table.normal {
    width: 100%;
    border: 2px ridge WindowFrame;
}

table.normalnoborder {
    width: 100%;
}
/* Do not show border if normaltab inside a simplebox */
div.simplebox table.normal {
    width: 100%;
    border: none;
}

/* Cells where nothing is specified */
td {
    vertical-align: top;
}

/* Cells in forms without background color (inside a div for example) */
td.form {
    color: WindowText;
    font-size: small;
    vertical-align: top;
}
/* Cells in forms using a background color */
.formcolor {
    color: WindowText;
    background-color: Button;
    text-align: left;
    vertical-align: top;
    border: 1px outset WindowFrame;
}
.formcolor:hover {
	background-color: ButtonHighlight;
}
/* Table headings */
td.heading {
    color: HighlightText;
    background-color: Highlight;
    font-weight: bold;
    border: 1px outset WindowFrame;
    height: 25px;
    padding-left: 2px;
    padding-right: 5px;
    vertical-align: middle;
}

td.button {
    height: 25px;
    text-align: center;
    vertical-align: middle;
}

/* Links in table headings */
.tableheading, .tableheading:visited, .tableheading:visited:hover,
.tableheading:hover, .tableheading:active {
    color: HighlightText;
    text-decoration: none;
}

/*
 * When a find button is provided for a listing the table
 *form is displayed in a table with the following style
 */
table.findtable {
    width: 100%;
    margin-bottom: 20px;
}

td.findtitle {
}

/* Tables odd rows */
.odd {
    background-color: Window;
    border: 1px outset WindowFrame;
}

.even {
    border: 1px outset WindowFrame;
}
/* I saw only sections n forums list with such class */
td.third {
    color: InfoText;
    background-color: InfoBackground;
}

/*
 * Caption in tables.
 * Currently in Attachments and comments only.
 */
caption {
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}

table.wikitopline {
    width: 100%;
}

/* Input fields inside forms */
table.normal input[type="text"] {
    width: 100%;
}
