Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Thornton <jacobthornton@gmail.com>2012-04-17 03:34:08 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-04-17 03:34:08 +0400
commit2881269e16be1beb007633501496d6a8e8924b4b (patch)
tree74cc8785b4648817162038526b5c6abebf19be67 /less/tables.less
parenta3ec868ac278fb4ec29b21b662f1fd417ac16f2a (diff)
lots of property ordering
Diffstat (limited to 'less/tables.less')
-rw-r--r--less/tables.less12
1 files changed, 6 insertions, 6 deletions
diff --git a/less/tables.less b/less/tables.less
index 8d4f534bc8..b4f6027bf9 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -9,9 +9,9 @@
table {
max-width: 100%;
+ background-color: @tableBackground;
border-collapse: collapse;
border-spacing: 0;
- background-color: @tableBackground;
}
// BASELINE STYLES
@@ -69,9 +69,9 @@ table {
.table-bordered {
border: 1px solid @tableBorder;
- border-left: 0;
border-collapse: separate; // Done so we can round those corners!
*border-collapse: collapsed; // IE7 can't round corners anyway
+ border-left: 0;
.border-radius(4px);
th,
td {
@@ -93,28 +93,28 @@ table {
thead:first-child tr:first-child th:first-child,
tbody:first-child tr:first-child td:first-child {
-webkit-border-top-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
+ -moz-border-radius-topleft: 4px;
}
thead:first-child tr:first-child th:last-child,
tbody:first-child tr:first-child td:last-child {
-webkit-border-top-right-radius: 4px;
- -moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
+ -moz-border-radius-topright: 4px;
}
// For first th or td in the first row in the first thead or tbody
thead:last-child tr:last-child th:first-child,
tbody:last-child tr:last-child td:first-child {
.border-radius(0 0 0 4px);
-webkit-border-bottom-left-radius: 4px;
- -moz-border-radius-bottomleft: 4px;
border-bottom-left-radius: 4px;
+ -moz-border-radius-bottomleft: 4px;
}
thead:last-child tr:last-child th:last-child,
tbody:last-child tr:last-child td:last-child {
-webkit-border-bottom-right-radius: 4px;
- -moz-border-radius-bottomright: 4px;
border-bottom-right-radius: 4px;
+ -moz-border-radius-bottomright: 4px;
}
}