authserver/testCAS/resources/assets/less/bootstrap/mixins/panels.less
author durandn
Fri, 20 Nov 2015 11:10:03 +0100
changeset 184 b8fc9a694b91
parent 0 1afc9d2ab94d
permissions -rw-r--r--
fixed templates so the video size is always the same

// Panels

.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
  border-color: @border;

  & > .panel-heading {
    color: @heading-text-color;
    background-color: @heading-bg-color;
    border-color: @heading-border;

    + .panel-collapse > .panel-body {
      border-top-color: @border;
    }
    .badge {
      color: @heading-bg-color;
      background-color: @heading-text-color;
    }
  }
  & > .panel-footer {
    + .panel-collapse > .panel-body {
      border-bottom-color: @border;
    }
  }
}