mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
merge in master after merging a pull request, add comment
This commit is contained in:
commit
a4dc2c8955
3 changed files with 9 additions and 8 deletions
6
bootstrap-1.2.0.css
vendored
6
bootstrap-1.2.0.css
vendored
|
@ -6,7 +6,7 @@
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
||||||
* Date: Fri Sep 2 09:48:25 PDT 2011
|
* Date: Fri Sep 2 09:52:17 PDT 2011
|
||||||
*/
|
*/
|
||||||
/* Reset.less
|
/* 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).
|
* 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).
|
||||||
|
@ -404,11 +404,11 @@ body {
|
||||||
.container-fluid:after {
|
.container-fluid:after {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
.container-fluid .sidebar {
|
.container-fluid > .sidebar {
|
||||||
float: left;
|
float: left;
|
||||||
width: 220px;
|
width: 220px;
|
||||||
}
|
}
|
||||||
.container-fluid .content {
|
.container-fluid > .content {
|
||||||
min-width: 700px;
|
min-width: 700px;
|
||||||
max-width: 1180px;
|
max-width: 1180px;
|
||||||
margin-left: 240px;
|
margin-left: 240px;
|
||||||
|
|
4
bootstrap-1.2.0.min.css
vendored
4
bootstrap-1.2.0.min.css
vendored
|
@ -68,8 +68,8 @@ body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:
|
||||||
.container{width:940px;margin:0 auto;}
|
.container{width:940px;margin:0 auto;}
|
||||||
.container-fluid{padding:0 20px;zoom:1;margin-bottom:18px;}.container-fluid:before,.container-fluid:after{display:table;content:"";}
|
.container-fluid{padding:0 20px;zoom:1;margin-bottom:18px;}.container-fluid:before,.container-fluid:after{display:table;content:"";}
|
||||||
.container-fluid:after{clear:both;}
|
.container-fluid:after{clear:both;}
|
||||||
.container-fluid .sidebar{float:left;width:220px;}
|
.container-fluid>.sidebar{float:left;width:220px;}
|
||||||
.container-fluid .content{min-width:700px;max-width:1180px;margin-left:240px;}
|
.container-fluid>.content{min-width:700px;max-width:1180px;margin-left:240px;}
|
||||||
a{color:#0069d6;text-decoration:none;line-height:inherit;font-weight:inherit;}a:hover{color:#0050a3;text-decoration:underline;}
|
a{color:#0069d6;text-decoration:none;line-height:inherit;font-weight:inherit;}a:hover{color:#0050a3;text-decoration:underline;}
|
||||||
p{font-size:13px;font-weight:normal;line-height:18px;margin-bottom:9px;}p small{font-size:11px;color:#bfbfbf;}
|
p{font-size:13px;font-weight:normal;line-height:18px;margin-bottom:9px;}p small{font-size:11px;color:#bfbfbf;}
|
||||||
h1,h2,h3,h4,h5,h6{font-weight:bold;color:#404040;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{color:#bfbfbf;}
|
h1,h2,h3,h4,h5,h6{font-weight:bold;color:#404040;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{color:#bfbfbf;}
|
||||||
|
|
|
@ -81,11 +81,12 @@ body {
|
||||||
.container-fluid {
|
.container-fluid {
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
.clearfix();
|
.clearfix();
|
||||||
.sidebar {
|
> .sidebar {
|
||||||
float: left;
|
float: left;
|
||||||
width: 220px;
|
width: 220px;
|
||||||
}
|
}
|
||||||
.content {
|
// TODO in v2: rename this and .popover .content to be more specific
|
||||||
|
> .content {
|
||||||
min-width: 700px;
|
min-width: 700px;
|
||||||
max-width: 1180px;
|
max-width: 1180px;
|
||||||
margin-left: 240px;
|
margin-left: 240px;
|
||||||
|
|
Loading…
Add table
Reference in a new issue