Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Doc: Make first line in tables darker & bullets in tables #11430

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion doc/_static/mpl.css
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ div.seealso {
color: #3F5E7F;
}

div.warning {
div.warning, div.important {
background-color: #F3E5E5;
border-color: #CC8E8E;
color: #7F1919;
Expand Down Expand Up @@ -495,6 +495,12 @@ p.topic-title {
padding-top: 0.7em;
}

.contents ul > li::before {
content: "\25FE";
color: #bbb;
padding-right: .3em;
}

.contents > ul > li > a {
font-size: 1.0em;
}
Expand Down Expand Up @@ -633,6 +639,10 @@ table.docutils tr:last-of-type td {
border-bottom-color: #888;
}

table.docutils tr:first-of-type td {
border-top-color: #888;
}

/* Section titles within classes */
dl.class p.rubric {
font-size: 16px;
Expand Down