
This patch fixes the summary table border to render properly when other CSS content uses no border for tables. It also sets the table font size to medium, improving the space used by the summary table as well as the look of the table. Change-Id: I0f2bdee6eb67753f5f365b2681c4c7e3ae35c3ec
38 lines
544 B
CSS
38 lines
544 B
CSS
.sp_feature_required {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sp_feature_cells {
|
|
border: solid 1px black;
|
|
text-align: center;
|
|
}
|
|
|
|
.sp_impl_complete {
|
|
color: rgb(0, 120, 0);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.sp_impl_missing {
|
|
color: rgb(120, 0, 0);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.sp_impl_partial {
|
|
color: rgb(170, 170, 0);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.sp_impl_unknown {
|
|
color: rgb(170, 170, 170);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.sp_impl_summary {
|
|
font-size: medium;
|
|
}
|
|
|
|
.sp_cli {
|
|
font-family: monospace;
|
|
background-color: #F5F5F5;
|
|
}
|