jscheffl commented on code in PR #45563:
URL: https://github.com/apache/airflow/pull/45563#discussion_r1912429547
##########
docs/sphinx_design/static/custom.css:
##########
@@ -40,3 +40,14 @@ div.admonition.warning {
.rst-content .warning .admonition-title {
background: #cc341d;
}
+
+section {
+ padding-top: 0rem !important;
+ padding-bottom: 0rem !important;
+}
+
+a.headerlink::after {
+ content: url(/images/anchor.svg) !important; /* TODO - Image not existing
:-( Needs replacement */
+ visibility: visible !important;
+ font-size: 100% !important;
+}
Review Comment:
Further rework
```suggestion
/* Patches as of moving to Sphinx 7 to get layout to previous state */
/* Needs to be cleaned in a follow-up to source this from the origin style
in */
/*
https://github.com/apache/airflow-site/blob/main/landing-pages/site/assets/scss/_rst-content.scss
*/
.base-layout {
padding-top: 123px !important;
}
section {
padding-top: 0rem !important;
padding-bottom: 0rem !important;
}
section ol li p:last-child, section ul li p:last-child {
margin-bottom: 0 !important;
}
a.headerlink {
content: "" !important;
font-size: 75% !important;
}
a.headerlink::after {
content: " [link]" !important; /* Theme image not existing */
visibility: visible !important;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]