From e02557af3acd41e0d37434db998c2d0f71009a64 Mon Sep 17 00:00:00 2001 From: glaszig Date: Tue, 30 Jul 2019 14:16:07 +0200 Subject: [PATCH] add pre.unstyled css rule in bootstrap, pre blocks have background and borders. this removes them with a special class named `unstyled` just like `ul.unstyled`. --- dist/css/custom.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dist/css/custom.css b/dist/css/custom.css index 17126ae5..1b5795e4 100644 --- a/dist/css/custom.css +++ b/dist/css/custom.css @@ -53,3 +53,9 @@ width:100%; height:300px; } + +pre.unstyled { + border-width: 0; + background-color: transparent; + padding: 0; +}