From 2971db4389139dcec9534f854f914d8beba1b762 Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: May 06 2016 08:48:39 +0000 Subject: add an override to indent dd elements in readmes The default reset in bootstrap seems to remove the indenting on dd items. Rather than possible breakage of these in other places, this adds an override to indent these by 2em in the readme class only. fixes:#946 --- diff --git a/pagure/static/pagure.css b/pagure/static/pagure.css index 9339687..fb96f68 100644 --- a/pagure/static/pagure.css +++ b/pagure/static/pagure.css @@ -519,3 +519,7 @@ th[data-sort] { { font-size: 0.8em; } + +.readme dd{ + margin-left:2em; +}