Table - TylorJJPublicLibrary/SystemUI GitHub Wiki
This style is used to show title of field in tables. Add class=Parent to th or td. ( th is better )
Response.Write("<th class=""Parent"">Product Name</th>")
Response.Write("<th class=""Parent"">Supplier</th>")
This style is used to show Informations.
Response.Write("<table class=""Form"" cellpadding=""0"" cellspacing=""0"">")
Response.Write(" <tr>")
Response.Write(" <td>")
Response.Write(" </td>")
Response.Write(" </tr>")
Response.Write("</table>")
.Form td{
font-family: "Open Sans";
font-size: 13px;
background-color: #fdf4d9;
}
This is used to show Detail. Usually has sub table. ( Like Task Detail )
Response.Write("<table class="""" cellpadding=""0"" cellspacing=""0"">")
Response.Write(" <tr class=""Dim"">")
Response.Write(" <td>")
Response.Write(" </td>")
Response.Write(" </tr>")
Response.Write("</table>")
tr.Dim{
background-color: #fadf90;
}
This is used to show more informations of one Objective, such as Product.
Response.Write("<table class=""Table"" cellpadding=""0"" cellspacing=""0"">")
Response.Write(" <tr class=""NoHover"">")
Response.Write(" <td class=""SubTableCell"">")
Response.Write(" </td>")
Response.Write(" </tr>")
Response.Write("</table>")
.SubTableCell {
border-bottom: 1px #ccc solid;
background-color: #f0f0f0;
background-image: url(../../images/BottomShaddow.png), url(../../images/TopShaddow.png);
background-position: top left, bottom left;
background-repeat: repeat-x;
}
.Table td.SubTableCell {
padding: 0 !important;
}