Blame doc/include/sortabletable.css

Packit Service 21b5d1
/* -------------------------------------------------------------------------- */
Packit Service 21b5d1
.BoxTable {
Packit Service 21b5d1
        width:          90%;
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.BoxTable>td {
Packit Service 21b5d1
        width:          100%;
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
/* -------------------------------------------------------------------------- */
Packit Service 21b5d1
.ParamTable {
Packit Service 21b5d1
        text-align:     right;
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ParamTable td.Desc {
Packit Service 21b5d1
        font-weight:    bold;
Packit Service 21b5d1
        text-align:     right;
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
/* -------------------------------------------------------------------------- */
Packit Service 21b5d1
.ReportTable {
Packit Service 21b5d1
	font:		Icon;
Packit Service 21b5d1
        width:          100%;
Packit Service 21b5d1
	border:		1px Solid ThreeDShadow;
Packit Service 21b5d1
	background:	Window;
Packit Service 21b5d1
	color:		WindowText;
Packit Service 21b5d1
        border-spacing: 0px;
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ReportTable thead {
Packit Service 21b5d1
        background:     ButtonFace;
Packit Service 21b5d1
        font-weight:    bold; 
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ReportTable th {
Packit Service 21b5d1
        border:         1px solid; 
Packit Service 21b5d1
        border-color:   ButtonHighlight ButtonShadow
Packit Service 21b5d1
                        ButtonShadow ButtonHighlight;
Packit Service 21b5d1
        cursor:         default; 
Packit Service 21b5d1
        text-align:     center; 
Packit Service 21b5d1
	padding:        1px 1px 1px 1px; 
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ReportTable th:active {
Packit Service 21b5d1
	border-color:   ButtonShadow ButtonHighlight 
Packit Service 21b5d1
                        ButtonHighlight ButtonShadow;
Packit Service 21b5d1
	padding:        1px 1px 1px 1px; 
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ReportTable tbody tr.OddRow {
Packit Service 21b5d1
        background:     #FFFFFF
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ReportTable tbody tr.EvenRow {
Packit Service 21b5d1
        background:     #CCDBEA
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ReportTable tfoot {
Packit Service 21b5d1
        background:     #FFFFFF;
Packit Service 21b5d1
        font-weight:    bold; 
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ReportTable tfoot tr {
Packit Service 21b5d1
	border:		1px Solid ThreeDShadow;
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ReportTable>td {
Packit Service 21b5d1
	padding:	2px 5px;
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.ReportTable td.Total {
Packit Service 21b5d1
        text-align:     right;
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
/* -------------------------------------------------------------------------- */
Packit Service 21b5d1
.SortArrow {
Packit Service 21b5d1
	width:          11px;
Packit Service 21b5d1
	height:         11px;
Packit Service 21b5d1
	background-position: center center;
Packit Service 21b5d1
	background-repeat: no-repeat;
Packit Service 21b5d1
	margin:         0 2px;
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.SortArrow.descending {
Packit Service 21b5d1
	background-image: url("descending.png"); /* relative to this css file */
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
.SortArrow.ascending {
Packit Service 21b5d1
	background-image: url("ascending.png");  /* relative to this css file */
Packit Service 21b5d1
}