36f7451c33
When a new feature gets added to the hypervisor support matrix it was not possible to state that the hypervisor did not make a support statement yet. You had to choose between "complete", "partial" and "missing" wich could be missleading. This change set adds the status "unknown" which could make the statements more precise. Change-Id: If94fc772796742de88af5893839945834b9d3eb6
42 lines
566 B
CSS
42 lines
566 B
CSS
|
|
.sp_feature_mandatory {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sp_feature_optional {
|
|
}
|
|
|
|
.sp_feature_choice {
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sp_feature_condition {
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
.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: 2em;
|
|
} |