Commit d4a16d35 authored by Mark Otto's avatar Mark Otto
Browse files

fixes #4996: incorrect border radius on a table

parent 3fa4ca2d
Showing with 2 additions and 2 deletions
+2 -2
...@@ -1944,7 +1944,7 @@ table { ...@@ -1944,7 +1944,7 @@ table {
.table-bordered colgroup + tbody tr:first-child td:last-child { .table-bordered colgroup + tbody tr:first-child td:last-child {
-webkit-border-top-right-radius: 4px; -webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px; border-top-right-radius: 4px;
-moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px;
} }
.table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) td,
......
...@@ -133,7 +133,7 @@ table { ...@@ -133,7 +133,7 @@ table {
colgroup + tbody tr:first-child td:last-child { colgroup + tbody tr:first-child td:last-child {
-webkit-border-top-right-radius: 4px; -webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px; border-top-right-radius: 4px;
-moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px;
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment