8000 Merge pull request #7236 from NelleV/enh_contributing_guidelines · matplotlib/matplotlib@28f4b6e · GitHub
[go: up one dir, main page]

Skip to content

Commit 28f4b6e

Browse files
committed
Merge pull request #7236 from NelleV/enh_contributing_guidelines
ENH Improving the contribution guidelines
1 parent 4ea9892 commit 28f4b6e

17 files changed

+519
-353
lines changed

doc/_static/mpl.css

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,19 @@ div.admonition, div.warning {
357357
font-size: 0.9em;
358358
}
359359

360+
div.warning {
361+
color: #b94a48;
362+
background-color: #F3E5E5;
363+
border: 1px solid #eed3d7;
364+
}
365+
366+
div.green {
367+
color: #468847;
368+
background-color: #dff0d8;
369+
border: 1px solid #d6e9c6;
370+
}
371+
372+
360373
div.admonition p, div.warning p {
361374
margin: 0.5em 1em 0.5em 1em;
362375
padding: 0;
@@ -366,19 +379,57 @@ div.admonition pre, div.warning pre {
366379
margin: 0.4em 1em 0.4em 1em;
367380
}
368381

382+
div.admonition p.admonition-title + p {
383+
display: inline;
384+
}
385+
386+
369387
div.admonition p.admonition-title,
370388
div.warning p.admonition-title {
371389
margin: 0;
372390
font-weight: bold;
373391
font-size: 14px;
374392
}
375393

394+
div.admonition {
395+
margin-bottom: 10px;
396+
margin-top: 10px;
397+
padding: 7px;
398+
border-radius: 4px;
399+
-moz-border-radius: 4px;
400+
}
401+
402+
403+
div.note {
404+
background-color: #eee;
405+
border: 1px solid #ccc;
406+
}
407+
408+
div.topic {
409+
background-color: #eee;
410+
border: 1px solid #CCC;
411+
margin: 10px 0px;
412+
padding: 7px 7px 0px;
413+
border-radius: 4px;
414+
-moz-border-radius: 4px;
415+
}
416+
417+
p.topic-title {
418+
font-size: 1.1em;
419+
font-weight: bold;
420+
}
421+
422+
div.seealso {
423+
background-color: #FFFBE8;
424+
border: 1px solid #fbeed5;
425+
color: #AF8A4B;
426+
}
427+
376428
div.warning {
377429
border: 1px solid #940000;
378430
}
379431

380432
div.warning p.admonition-title {
381-
background-color: #CF0000;
382433
border-bottom-color: #940000;
383434
}
384435

doc/api/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
text_api.rst
5252
ticker_api.rst
5353
tight_layout_api.rst
54+
transformations.rst
5455
tri_api.rst
5556
type1font.rst
5657
units_api.rst
File renamed without changes.

doc/devel/add_new_projection.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _adding-new-scales:
22

3-
***********************************************
4-
Adding new scales and projections to matplotlib
5-
***********************************************
3+
=========================================================
4+
Developer's guide for creating scales and transformations
5+
=========================================================
66

77
.. ::author Michael Droettboom
88

0 commit comments

Comments
 (0)
0