| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 | 
.panel {  margin-bottom: @line-height-computed;  background-color: @panel-bg;  border: 1px solid transparent;  border-radius: @panel-border-radius;  .box-shadow(0 1px 1px rgba(0,0,0,.05));}.panel-body {  padding: @panel-body-padding;  &:extend(.clearfix all);}.panel-heading {  padding: @panel-heading-padding;  border-bottom: 1px solid transparent;  .border-top-radius((@panel-border-radius - 1));  > .dropdown .dropdown-toggle {    color: inherit;  }}.panel-title {  margin-top: 0;  margin-bottom: 0;  font-size: ceil((@font-size-base * 1.125));  color: inherit;  > a {    color: inherit;  }}.panel-footer {  padding: @panel-footer-padding;  background-color: @panel-footer-bg;  border-top: 1px solid @panel-inner-border;  .border-bottom-radius((@panel-border-radius - 1));}.panel {  > .list-group {    margin-bottom: 0;    .list-group-item {      border-width: 1px 0;      border-radius: 0;    }        &:first-child {      .list-group-item:first-child {        border-top: 0;        .border-top-radius((@panel-border-radius - 1));      }    }        &:last-child {      .list-group-item:last-child {        border-bottom: 0;        .border-bottom-radius((@panel-border-radius - 1));      }    }  }}.panel-heading + .list-group {  .list-group-item:first-child {    border-top-width: 0;  }}.list-group + .panel-footer {  border-top-width: 0;}.panel {  > .table,  > .table-responsive > .table,  > .panel-collapse > .table {    margin-bottom: 0;  }    > .table:first-child,  > .table-responsive:first-child > .table:first-child {    .border-top-radius((@panel-border-radius - 1));    > 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);        }      }    }  }    > .table:last-child,  > .table-responsive:last-child > .table:last-child {    .border-bottom-radius((@panel-border-radius - 1));    > 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 > tr:first-child th,  > .table > tbody:first-child > tr: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;        }      }    }    > thead,    > tbody {      > tr:first-child {        > td,        > th {          border-bottom: 0;        }      }    }    > tbody,    > tfoot {      > tr:last-child {        > td,        > th {          border-bottom: 0;        }      }    }  }  > .table-responsive {    border: 0;    margin-bottom: 0;  }}.panel-group {  margin-bottom: @line-height-computed;    .panel {    margin-bottom: 0;    border-radius: @panel-border-radius;    + .panel {      margin-top: 5px;    }  }  .panel-heading {    border-bottom: 0;    + .panel-collapse > .panel-body {      border-top: 1px solid @panel-inner-border;    }  }  .panel-footer {    border-top: 0;    + .panel-collapse .panel-body {      border-bottom: 1px solid @panel-inner-border;    }  }}.panel-default {  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);}.panel-primary {  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);}.panel-success {  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);}.panel-info {  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);}.panel-warning {  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);}.panel-danger {  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);}
 |