Fix documentation table layout

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-09-01 19:49:17 -04:00
parent 2d44f62e1b
commit fb92b3a6a5
3 changed files with 22 additions and 7 deletions

View file

@ -1,3 +1,4 @@
# Hardening Guide # Hardening Guide
## Overview ## Overview
@ -18,6 +19,7 @@ lead to have specific clients unable to reach your site or similar consequences.
This guide refers to chapters in the CIS Benchmark. For full explanation you should refer to the benchmark document itself This guide refers to chapters in the CIS Benchmark. For full explanation you should refer to the benchmark document itself
## Configuration Guide ## Configuration Guide
| Chapter in CIS benchmark | Status | Default | Action to do if not default| | Chapter in CIS benchmark | Status | Default | Action to do if not default|
|:-------------------------|:-------|:--------|:---------------------------| |:-------------------------|:-------|:--------|:---------------------------|
| __1 Initial Setup__ ||| | | __1 Initial Setup__ ||| |
@ -110,3 +112,15 @@ This guide refers to chapters in the CIS Benchmark. For full explanation you sho
| 5.3.5 Ensure the Referrer Policy is enabled and configured properly (Not Scored)| ACTION NEEDED | Depends on application. It should be handled in the applications webserver itself, not in the load balancing ingress | check backend webserver | | 5.3.5 Ensure the Referrer Policy is enabled and configured properly (Not Scored)| ACTION NEEDED | Depends on application. It should be handled in the applications webserver itself, not in the load balancing ingress | check backend webserver |
| ||| | | ||| |
| __6 Mandatory Access Control__| n/a| too high level, depends on backends | | | __6 Mandatory Access Control__| n/a| too high level, depends on backends | |
<style type="text/css" rel="stylesheet">
@media only screen and (min-width: 768px) {
td:nth-child(1){
white-space:normal !important;
}
.md-typeset table:not([class]) td {
padding: .2rem .3rem;
}
}
</style>

View file

@ -2,9 +2,8 @@
min-width: 100%; min-width: 100%;
} }
@media only screen and (min-width: 768px) @media only screen and (min-width: 768px) {
{ td:nth-child(1) {
td:nth-child(1){
white-space: nowrap; white-space: nowrap;
} }
} }

View file

@ -4,6 +4,8 @@ repo_url: https://github.com/kubernetes/ingress-nginx
site_url: https://kubernetes.github.io/ingress-nginx site_url: https://kubernetes.github.io/ingress-nginx
markdown_extensions: markdown_extensions:
- attr_list
- pymdownx.emoji
- admonition - admonition
- codehilite - codehilite
- pymdownx.inlinehilite - pymdownx.inlinehilite