From 1bf5abab3153159d09f83f5512735da2144394d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Thu, 19 Dec 2013 15:32:37 +0100 Subject: No leading pluses --- dist/css/bootstrap.css | 1 + 1 file changed, 1 insertion(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index ac82f9ac3..0aa4c49a9 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1456,6 +1456,7 @@ table col[class*="col-"] { } table td[class*="col-"], table th[class*="col-"] { + position: static; display: table-cell; float: none; } -- cgit v1.2.3 From 2854c5c3fb65b709fbf32d05faccf7a294626cca Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 19 Dec 2013 19:40:08 -0800 Subject: Fixes #11952: Refactor blockquote styles * Deprecate .pull-right class for .blockquote-reverse * Move font-size change to the parent, blockquote, instead of setting on the p element to allow more flexible content --- dist/css/bootstrap.css | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 0aa4c49a9..7822815f6 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -616,18 +616,19 @@ abbr[data-original-title] { blockquote { padding: 10px 20px; margin: 0 0 20px; - border-left: 5px solid #eee; -} -blockquote p { font-size: 17.5px; + border-left: 5px solid #eee; } -blockquote p:last-child { +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; + font-size: 80%; line-height: 1.428571429; color: #999; } @@ -636,22 +637,27 @@ blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } +.blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; + text-align: right; border-right: 5px solid #eee; border-left: 0; } -blockquote.pull-right p, -blockquote.pull-right small, -blockquote.pull-right .small { - text-align: right; -} +.blockquote-reverse footer:before, +blockquote.pull-right footer:before, +.blockquote-reverse small:before, blockquote.pull-right small:before, +.blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } +.blockquote-reverse footer:after, +blockquote.pull-right footer:after, +.blockquote-reverse small:after, blockquote.pull-right small:after, +.blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } -- cgit v1.2.3 From 7f599cedf3a9b3302bbbd8b6442354f8cf123fb2 Mon Sep 17 00:00:00 2001 From: Tobias Lindig Date: Fri, 20 Dec 2013 17:06:53 +0100 Subject: add new variables for "pagination" to improve support of customizing --- dist/css/bootstrap.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 7822815f6..39f8659f5 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4127,6 +4127,7 @@ textarea.input-group-sm > .input-group-btn > .btn { padding: 6px 12px; margin-left: -1px; line-height: 1.428571429; + color: #428bca; text-decoration: none; background-color: #fff; border: 1px solid #ddd; @@ -4146,7 +4147,9 @@ textarea.input-group-sm > .input-group-btn > .btn { .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { + color: #2a6496; background-color: #eee; + border-color: #ddd; } .pagination > .active > a, .pagination > .active > span, -- cgit v1.2.3