davemds pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=1910563604d65bc76b377fec75d9b5570585d239
commit 1910563604d65bc76b377fec75d9b5570585d239 Author: Dave Andreoli <d...@gurumeditation.it> Date: Sat Jan 3 20:25:47 2015 +0100 Docs: fix some text to not show up Pygments css for some highlightend text are the same color of our gray bg, just make them white --- doc/themes/efldoc/static/efl.css | 5 +++++ efl/evas/efl.evas_rect.pxi | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/themes/efldoc/static/efl.css b/doc/themes/efldoc/static/efl.css index 73d0ff8..f9d071f 100644 --- a/doc/themes/efldoc/static/efl.css +++ b/doc/themes/efldoc/static/efl.css @@ -441,3 +441,8 @@ dt:target, .highlighted { /* */ border-top: 1px solid rgb(32,32,32); border-bottom: 1px solid rgb(32,32,32); } + +/* -- pygments fix ---------------------------------------------------------- */ +.highlight .go { + color: white !important; +} diff --git a/efl/evas/efl.evas_rect.pxi b/efl/evas/efl.evas_rect.pxi index f06ef71..2e4f5f1 100644 --- a/efl/evas/efl.evas_rect.pxi +++ b/efl/evas/efl.evas_rect.pxi @@ -29,7 +29,7 @@ cdef class Rect(object): >>> r1 = Rect(10, 20, 30, 40) >>> r2 = Rect((0, 0), (100, 100)) >>> r1 - Rect(x=10, y=20, w=30, h=40) + Rect(x=10, y=20, w=30, h=40) >>> r2 Rect(x=0, y=0, w=100, h=100) >>> r1.contains(r2) --