Skip to content

Commit

Permalink
Merge branch '3.0.0-wip' of github.com:twitter/bootstrap into 3.0.0-wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Apr 20, 2013
2 parents a8391da + 61ea1ae commit 90b1958
Show file tree
Hide file tree
Showing 5 changed files with 218 additions and 189 deletions.
2 changes: 1 addition & 1 deletion docs/_includes/docs-nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h3 class="bs-docs-sidenav-heading"><a href="/">Bootstrap</a></h3>
<li><a href="#tables-example">Basic example</a></li>
<li><a href="#tables-striped">Zebra striping</a></li>
<li><a href="#tables-bordered">Bordered tables</a></li>
<li><a href="#tables-hover">Hover rows</a></li>
<li><a href="#tables-hover-rows">Hover rows</a></li>
<li><a href="#tables-condensed">Condensed tables</a></li>
<li><a href="#tables-row-classes">Contextual row classes</a></li>
</ul>
Expand Down
101 changes: 52 additions & 49 deletions docs/assets/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -1013,8 +1013,6 @@ pre code {
table {
max-width: 100%;
background-color: transparent;
border-collapse: collapse;
border-spacing: 0;
}

th {
Expand Down Expand Up @@ -3262,10 +3260,34 @@ button.close {
background-color: #eeeeee;
}

.nav > li.disabled > a {
color: #999999;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
color: #999999;
text-decoration: none;
cursor: default;
background-color: transparent;
}

.nav > li + .nav-header {
margin-top: 9px;
}

.nav > .pull-right {
float: right;
}

.nav .divider {
height: 2px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
border-bottom: 1px solid #ffffff;
}

.nav-tabs {
border-bottom: 1px solid #ddd;
}
Expand All @@ -3286,16 +3308,37 @@ button.close {
border-color: #eeeeee #eeeeee #dddddd;
}

.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
color: #555555;
cursor: default;
background-color: #ffffff;
border: 1px solid #ddd;
border-bottom-color: transparent;
}

.nav-tabs.nav-justified {
width: 100%;
border-bottom: 0;
}

.nav-tabs.nav-justified > li {
display: table-cell;
float: none;
width: 1%;
text-align: center;
}

.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-bottom: 1px solid #ddd;
}

.nav-tabs.nav-justified > .active > a {
border-bottom-color: #ffffff;
}

.nav-pills > li {
float: left;
}
Expand All @@ -3308,9 +3351,9 @@ button.close {
margin-left: 2px;
}

.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: #fff;
background-color: #428bca;
}
Expand All @@ -3335,34 +3378,6 @@ button.close {
text-align: center;
}

.nav-justified.nav-tabs {
border-bottom: 0;
}

.nav-justified.nav-tabs > li > a {
border-bottom: 1px solid #ddd;
}

.nav-justified.nav-tabs > .active > a {
border-bottom-color: #ffffff;
}

.nav-justified > li > a {
margin-right: 0;
}

.nav > .disabled > a {
color: #999999;
}

.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
color: #999999;
text-decoration: none;
cursor: default;
background-color: transparent;
}

.nav-header {
display: block;
padding: 3px 15px;
Expand All @@ -3374,18 +3389,6 @@ button.close {
text-transform: uppercase;
}

.nav li + .nav-header {
margin-top: 9px;
}

.nav .divider {
height: 2px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
border-bottom: 1px solid #ffffff;
}

.tabbable:before,
.tabbable:after {
display: table;
Expand Down Expand Up @@ -4237,7 +4240,7 @@ button.close {
.pager .disabled > span {
color: #999999;
cursor: default;
background-color: #fff;
background-color: #ffffff;
}

.modal-open {
Expand Down
Loading

0 comments on commit 90b1958

Please sign in to comment.