authserver/testCAS/resources/assets/less/bootstrap/mixins/panels.less
changeset 0 1afc9d2ab94d
equal deleted inserted replaced
-1:000000000000 0:1afc9d2ab94d
       
     1 // Panels
       
     2 
       
     3 .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
       
     4   border-color: @border;
       
     5 
       
     6   & > .panel-heading {
       
     7     color: @heading-text-color;
       
     8     background-color: @heading-bg-color;
       
     9     border-color: @heading-border;
       
    10 
       
    11     + .panel-collapse > .panel-body {
       
    12       border-top-color: @border;
       
    13     }
       
    14     .badge {
       
    15       color: @heading-bg-color;
       
    16       background-color: @heading-text-color;
       
    17     }
       
    18   }
       
    19   & > .panel-footer {
       
    20     + .panel-collapse > .panel-body {
       
    21       border-bottom-color: @border;
       
    22     }
       
    23   }
       
    24 }