From 2f1f37bedd85410e84aa569f813833c957191969 Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Wed, 14 Feb 2018 02:04:57 +0100 Subject: [PATCH] =?UTF-8?q?Se=20mejora=20la=20identificaci=C3=B3n=20de=20l?= =?UTF-8?q?os=20p=C3=A1rrafos=20de=20contenido=20para=20asociar=20nuevos?= =?UTF-8?q?=20estilos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/themes/circlepro/stylesheets/editor.css | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/public/themes/circlepro/stylesheets/editor.css b/public/themes/circlepro/stylesheets/editor.css index c981988..2b083dc 100644 --- a/public/themes/circlepro/stylesheets/editor.css +++ b/public/themes/circlepro/stylesheets/editor.css @@ -55,24 +55,28 @@ a:hover, a:focus { color: #f70a0a; } -body.wiki, -div#content p { - font-size: 18px; +.wiki p { text-align: justify; word-wrap: break-word; } @media screen and (max-width: 767px) { - body.wiki, - div#content p { + .wiki p { text-align: left; } } +body.wiki, .wiki p, .wiki li { + font-size: 18px; +} -body.wiki table { +.wiki li { + margin-bottom: 6px; +} + +.wiki table { border: 1px solid #bbb; border-collapse: collapse; } -body.wiki td, body.wiki th { +.wiki td, .wiki th { padding: 4px; }