diff --git a/src/calibre/ebooks/docx/char_styles.py b/src/calibre/ebooks/docx/char_styles.py index 655f3c1b42..01b23a500a 100644 --- a/src/calibre/ebooks/docx/char_styles.py +++ b/src/calibre/ebooks/docx/char_styles.py @@ -17,7 +17,7 @@ def read_text_border(parent, dest): elems = XPath('./w:bdr')(parent) if elems and elems[0].attrib: border_color = simple_color('auto') - border_style = 'solid' + border_style = 'none' border_width = 1 for elem in elems: color = get(elem, 'w:color')