Skip to content

Commit

Permalink
small or cite tag for Blockquotes
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed Aug 20, 2011
1 parent 962acdc commit 630b874
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions bootstrap-1.0.0.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Wed Aug 17 23:02:19 PDT 2011
* Date: Fri Aug 19 19:37:58 PDT 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down Expand Up @@ -387,6 +387,9 @@ a:hover {
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(0.25, #ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(#ffffff, color-stop(0.25, #ffffff), #e6e6e6);
background-image: -moz-linear-gradient(#ffffff, color-stop(#ffffff, 0.25), #e6e6e6);
background-image: -ms-linear-gradient(#ffffff, color-stop(#ffffff, 0.25), #e6e6e6);
background-image: -o-linear-gradient(#ffffff, color-stop(#ffffff, 0.25), #e6e6e6);
background-image: linear-gradient(#ffffff, color-stop(#ffffff, 0.25), #e6e6e6);
padding: 4px 14px;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
color: #333333;
Expand Down Expand Up @@ -591,14 +594,14 @@ blockquote p {
line-height: 18px;
margin-bottom: 0;
}
blockquote cite {
blockquote small, blockquote cite {
display: block;
font-size: 12px;
font-weight: 300;
line-height: 18px;
color: #bfbfbf;
}
blockquote cite:before {
blockquote small:before, blockquote cite:before {
content: '\2014 \00A0';
}
address {
Expand Down
4 changes: 2 additions & 2 deletions bootstrap-1.0.0.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/type.less
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ blockquote {
#font > .shorthand(300,14px,@baseline);
margin-bottom: 0;
}
cite {
small, cite {
display: block;
#font > .shorthand(300,12px,@baseline);
color: @grayLight;
Expand Down

0 comments on commit 630b874

Please sign in to comment.