tweaks to table styles to make them use @basefont and @baseline

This commit is contained in:
Mark Otto
2011-09-08 10:47:05 -07:00
parent 1c03a07591
commit c474f996a9
4 changed files with 50 additions and 26 deletions

13
bootstrap-1.3.0.css vendored
View File

@@ -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: Thu Sep 8 10:36:15 PDT 2011
* Date: Thu Sep 8 10:45:51 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).
@@ -1053,21 +1053,24 @@ table {
width: 100%;
margin-bottom: 18px;
padding: 0;
border-collapse: separate;
border-collapse: collapse;
font-size: 13px;
}
table th, table td {
padding: 10px 10px 9px;
line-height: 13.5px;
line-height: 18px;
text-align: left;
vertical-align: middle;
border-bottom: 1px solid #ddd;
border: 1px solid #ddd;
}
table th {
padding-top: 9px;
font-weight: bold;
vertical-align: middle;
border-bottom-width: 2px;
}
table td {
vertical-align: top;
}
.zebra-striped tbody tr:nth-child(odd) td {
background-color: #f9f9f9;
}