Скругленные столы в Twitter Bootstrap 3

Bootstrap 3 выпал закругленные углы на столах. Какие стили я должен применить, чтобы вернуть их, когда я применяю.table-bordered класс, пожалуйста?

ОБНОВИТЬ

Пока ямы пришли к этому коду, без эффекта.

CSS взят из Bootstrap 2.3.2:

.table-bordered
{
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.table-bordered thead:first-child tr:first-child > th:first-child, .table-bordered tbody:first-child tr:first-child > td:first-child, .table-bordered tbody:first-child tr:first-child > th:first-child
{
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
}

.table-bordered thead:last-child tr:last-child > th:first-child, .table-bordered tbody:last-child tr:last-child > td:first-child, .table-bordered tbody:last-child tr:last-child > th:first-child, .table-bordered tfoot:last-child tr:last-child > td:first-child, .table-bordered tfoot:last-child tr:last-child > th:first-child
{
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
}

HTML код:


    
        
            
                Config. Name
            
            
                API Calls
            
            
                Current Amount
            
            
                Actions
            
        
    
    
        
            
                <a href="/searchsources/details">Agennda</a>
            
            
                2,876
            
            
                $ 80.67
            
            
                <a href="/searchsources/details">Edit</a>
            
        
    

Ответы на вопрос(10)

Ваш ответ на вопрос