From e82290712d4239598a9b48632d5e43572635600f Mon Sep 17 00:00:00 2001 From: Akihiro Motoki <amotoki@gmail.com> Date: Sun, 5 Jun 2016 06:37:23 +0900 Subject: [PATCH] Make ``something`` more highlighted Currently it is not easy to distinguish ``something`` from regular text in rendered HTML documents. This commit make ``something`` more highlighted. Using border for an element in a table is sometimes not elegant due to double border lines, so no border is used. Change-Id: Ia68effa43df50a7362e27556714b6182c368b5a5 --- .../theme/openstackdocs/static/css/combined.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/openstackdocstheme/theme/openstackdocs/static/css/combined.css b/openstackdocstheme/theme/openstackdocs/static/css/combined.css index 796ce545..a1d9cd9a 100644 --- a/openstackdocstheme/theme/openstackdocs/static/css/combined.css +++ b/openstackdocstheme/theme/openstackdocs/static/css/combined.css @@ -35,6 +35,19 @@ ol.arabic ol { ol.arabic ol ol { list-style-type: upper-alpha; } +tt.literal { + color: #E74C3C; + padding: 1px 3px; + border: solid 1px #e1e4e5; +} + +table tt.literal { + color: #E74C3C; + padding: 1px 3px; + border: none; + /* border: solid 1px #e1e4e5; */ +} + /* @group Navigation */ #navigation { display: block;