/
githubmirror
/
brackets
Обзор
Документация
Войти
/
githubmirror
/
brackets
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/spec/CSSUtils-test-files/panels.less
83 строки
2 KB
RaymondLim
less and scss unit tests
12 сен 2014, 22:57
12 сен 2014, 22:57
812fe37
Код
Авторство
О чём код?
// Tables in panels // // Place a non-bordered `.table` within a panel (not within a `.panel-body`) and // watch it go full width. .panel { > .table, > .table-responsive > .table { margin-bottom: 0; } // Add border top radius for first one > .table:first-child, > .table-responsive:first-child > .table:first-child { > thead:first-child, > tbody:first-child { > tr:first-child { td:first-child, th:first-child { border-top-left-radius: (@panel-border-radius - 1); } td:last-child, th:last-child { border-top-right-radius: (@panel-border-radius - 1); } } } } // Add border bottom radius for last one > .table:last-child, > .table-responsive:last-child > .table:last-child { > tbody:last-child, > tfoot:last-child { > tr:last-child { td:first-child, th:first-child { border-bottom-left-radius: (@panel-border-radius - 1); } td:last-child, th:last-child { border-bottom-right-radius: (@panel-border-radius - 1); } } } } > .panel-body + .table, > .panel-body + .table-responsive { border-top: 1px solid @table-border-color; } > .table > tbody:first-child th, > .table > tbody:first-child td { border-top: 0; } > .table-bordered, > .table-responsive > .table-bordered { border: 0; > thead, > tbody, > tfoot { > tr { > th:first-child, > td:first-child { border-left: 0; } > th:last-child, > td:last-child { border-right: 0; } &:first-child > th, &:first-child > td { border-top: 0; } &:last-child > th, &:last-child > td { border-bottom: 0; } } } } > .table-responsive { border: 0; margin-bottom: 0; } }