doc: css: fix sphinx tabs style issues

Flag Sphinx tabs style properties as !important, it looks like the
default style used by the latest extension version take precedence.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2021-06-14 09:44:48 +02:00 committed by Anas Nashif
commit ab0eebca13

View file

@ -393,16 +393,16 @@ code,
.ui.tabular.menu .active.item,
.ui.segment,
.sphinx-tabs-panel {
background-color: var(--code-background-color);
background-color: var(--code-background-color) !important;
}
.sphinx-tabs-tab {
color: var(--link-color);
color: var(--link-color) !important;
}
.sphinx-tabs-tab[aria-selected="true"] {
background-color: var(--code-background-color);
border-bottom: 1px solid var(--code-background-color);
background-color: var(--code-background-color) !important;
border-bottom: 1px solid var(--code-background-color) !important;
}
/* Code literals */