diff options
author | Warren Block <wblock@FreeBSD.org> | 2014-04-05 02:09:17 +0000 |
---|---|---|
committer | Warren Block <wblock@FreeBSD.org> | 2014-04-05 02:09:17 +0000 |
commit | 4f7690f0f757aead1294e2722231bde74b576fdc (patch) | |
tree | 2642ad93280a2085824cce6f34757b879e8f06fe /share/misc | |
parent | c0239cd6487fbc6df21054db1653ff56b6719138 (diff) |
Restore a missing border-radius, reduce border radius to keep small
boxes from looking oval.
Notes
Notes:
svn path=/head/; revision=44448
Diffstat (limited to 'share/misc')
-rw-r--r-- | share/misc/docbook.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/share/misc/docbook.css b/share/misc/docbook.css index 28db7b783e..e087e83b3f 100644 --- a/share/misc/docbook.css +++ b/share/misc/docbook.css @@ -282,6 +282,7 @@ pre.screen { padding: 1ex; background-color: #edc; border: 1px solid #ccc; + border-radius: 4px; } pre.programlisting { @@ -291,7 +292,7 @@ pre.programlisting { padding: 1ex; background-color: #eee; border: 1px solid #ccc; - border-radius: 6px; + border-radius: 4px; } @media screen { /* hide from IE3 */ @@ -304,7 +305,7 @@ pre.programlisting { } .note, .tip, .important, .warning, .caution, .example, div.procedure { - border-radius: 6px; + border-radius: 4px; padding: 2ex 2ex 0 2ex; margin: .75em 3em .75em 1em; line-height: 1.3; |