Author: rjollos
Date: Sun Mar 3 23:18:19 2013
New Revision: 1452153
URL: http://svn.apache.org/r1452153
Log:
Refs #420: Copied styling for `code` tags from `bootstrap.css` to
`bloodhound.css` and applied to `tt` tags.
Modified:
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
Modified:
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
URL:
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css?rev=1452153&r1=1452152&r2=1452153&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
(original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
Sun Mar 3 23:18:19 2013
@@ -655,13 +655,26 @@ input[type="submit"].btn.btn-micro {
}
/* Revert some changes introduced in 2.1.0 */
-
h6 {
color: #A4A4A4;
margin: 0px 0.5em;
text-transform: uppercase;
}
+/* Style tt elements like code elements (#420/t:#11094). */
+tt {
+ background-color: #f7f7f9;
+ border: 1px solid #e1e1e8;
+ color: #d14;
+ font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
+ font-size: 12px;
+ padding: 2px 4px;
+ white-space: nowrap;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+
/* @end */
/* @group Bootstrap extensions */