Skip to content

Commit

Permalink
fix: table background (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
Revathyvenugopal162 authored Nov 10, 2023
1 parent fff3974 commit 78770c1
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 7 deletions.
14 changes: 8 additions & 6 deletions doc/styles/Vocab/ANSYS/accept.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
ANSYS
Ansys
ansys
Ansys Sphinx Theme
[Aa]nsys
[Ss]phinx
[Tt]heme
boolean
datatable
MeiliSearch
Linkcode
linkcode
[Ll]inkcode
link_code_library
link_code_source
link_code_branch
html_context
html_context
HTML
CSS
PDF
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Bases: {% for base in obj.bases %}{{ base|link_objs }}{% if not loop.last %}, {%
{% endif %}

{% if obj.docstring -%}
{{ obj.summary|indent(3) }}
{{ obj.docstring|indent(3) }}
{% endif %}

{% if "inherited-members" in autoapi_options %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ html[data-theme="light"] {

--pst-color-link: #1e6ddc;
--pst-color-link-hover: #32cfea;
--pst-color-link-visted: #9428f2;
--pst-color-inline-code: #000;
--pst-color-target: rgb(255, 255, 255);

Expand Down Expand Up @@ -144,6 +145,7 @@ html[data-theme="dark"] {

--pst-color-link: #579ce5;
--pst-color-link-hover: #12b2e2;
--pst-color-link-visted: #c58af9;
--pst-color-inline-code: #fff;
--pst-color-target: rgb(71, 39, 0);

Expand Down Expand Up @@ -1133,3 +1135,36 @@ div#searchbox p.highlight-link a {
.header-article__inner {
padding: 0 1rem;
}

.table > :not(caption) > * > * {
background-color: transparent !important;
color: var(--pst-color-text-base) !important;
}

nav.bd-links li > a {
text-decoration: none;
}

.bd-header .navbar-nav li a.nav-link:hover {
text-decoration: none;
font-weight: 600;
}

a {
text-decoration: none;
}

a:active,
a:visited,
a:visited:hover,
a:active:hover,
a:hover {
text-decoration: underline;
color: var(--pst-color-link);
font-weight: 500;
}

a:visited,
a:visited:hover {
color: var(--pst-color-link-visted);
}

0 comments on commit 78770c1

Please sign in to comment.