From 17f00133c407717f49817a2eb2c0f1e8393261ee Mon Sep 17 00:00:00 2001 From: Juanfran Date: Tue, 19 Aug 2014 13:41:05 +0200 Subject: [PATCH] fix #681 --- app/styles/components/wysiwyg.scss | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/app/styles/components/wysiwyg.scss b/app/styles/components/wysiwyg.scss index 09ae3872..52556031 100644 --- a/app/styles/components/wysiwyg.scss +++ b/app/styles/components/wysiwyg.scss @@ -36,4 +36,31 @@ unicode-bidi: embed; white-space: pre; } + table { + border: $gray-light 1px solid; + margin-bottom: 1rem; + tbody { + tr:last-child { + border-bottom: 0; + } + } + } + tr { + border-bottom: $gray-light 1px solid; + + } + th { + border-right: $gray-light 1px solid; + padding: 1rem 1rem 1rem .5rem; + &:last-child { + border-right: 0; + } + } + td { + border-right: $gray-light 1px solid; + padding: .5rem; + &:last-child { + border-right: 0; + } + } }