From 8b76e0d0f0c5679f12935c4a3dad98917636702b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 11 Aug 2013 17:23:19 -0700 Subject: addressing #9189 manually, part 1: code and pre vars --- less/code.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'less/code.less') diff --git a/less/code.less b/less/code.less index cd6132560..74a3a7a39 100644 --- a/less/code.less +++ b/less/code.less @@ -16,7 +16,7 @@ code { color: @code-color; background-color: @code-bg; white-space: nowrap; - border-radius: 4px; + border-radius: @border-radius-base; } // Blocks of code @@ -28,7 +28,7 @@ pre { line-height: @line-height-base; word-break: break-all; word-wrap: break-word; - color: @gray-dark; + color: @pre-color; background-color: @pre-bg; border: 1px solid @pre-border-color; border-radius: @border-radius-base; @@ -50,6 +50,6 @@ pre { // Enable scrollable blocks of code .pre-scrollable { - max-height: 340px; + max-height: @pre-scrollable-max-height; overflow-y: scroll; } -- cgit v1.2.3