2013-03-30 14:15:18 -07:00
|
|
|
//
|
|
|
|
// Panels
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Base class
|
|
|
|
.panel {
|
2013-08-12 23:36:25 -07:00
|
|
|
margin-bottom: @line-height-computed;
|
2013-03-30 14:15:18 -07:00
|
|
|
background-color: @panel-bg;
|
2013-08-18 19:40:57 -07:00
|
|
|
border: 1px solid transparent;
|
2013-03-30 14:15:18 -07:00
|
|
|
border-radius: @panel-border-radius;
|
|
|
|
.box-shadow(0 1px 1px rgba(0,0,0,.05));
|
2013-08-11 15:01:16 -07:00
|
|
|
}
|
|
|
|
|
2013-08-12 23:36:25 -07:00
|
|
|
// Panel contents
|
|
|
|
.panel-body {
|
2013-12-14 11:44:54 -08:00
|
|
|
padding: @panel-body-padding;
|
Switch to `&:extend(.clearfix all)` for clearfix mixin
Original discussion:
https://github.com/less/less.js/issues/1437#issuecomment-21383639.
Since we’re switching to `grunt-contrib-less`, we can take advantage of
newer LESS features than what RECESS supported. Included in that is the
ability to `:extend`, and not only that, but `:extend(.mixin-name
all)`. By doing so, we remove duplicate CSS for all our elements that
were being clearfix-ed.
Fixes #8947, #8968, #8991, #9257, #9268, #9291, #9430, #9604, #9686,
#9929, #10731, #10793, #11305, #11498, #11533, #11570, #11604, #11652.
(dem issues, tho)
2013-12-08 23:18:28 -08:00
|
|
|
&:extend(.clearfix all);
|
2013-08-12 23:36:25 -07:00
|
|
|
}
|
|
|
|
|
2014-02-07 02:38:01 -08:00
|
|
|
// Optional heading
|
|
|
|
.panel-heading {
|
2014-02-14 15:51:01 +01:00
|
|
|
padding: @panel-heading-padding;
|
2014-02-07 02:38:01 -08:00
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
.border-top-radius((@panel-border-radius - 1));
|
|
|
|
|
|
|
|
> .dropdown .dropdown-toggle {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Within heading, strip any `h*` tag of its default margins for spacing.
|
|
|
|
.panel-title {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
font-size: ceil((@font-size-base * 1.125));
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
> a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Optional footer (stays gray in every modifier class)
|
|
|
|
.panel-footer {
|
2014-02-14 15:51:01 +01:00
|
|
|
padding: @panel-footer-padding;
|
2014-02-07 02:38:01 -08:00
|
|
|
background-color: @panel-footer-bg;
|
|
|
|
border-top: 1px solid @panel-inner-border;
|
|
|
|
.border-bottom-radius((@panel-border-radius - 1));
|
|
|
|
}
|
|
|
|
|
2013-08-18 11:08:20 -07:00
|
|
|
|
2013-08-11 15:01:16 -07:00
|
|
|
// List groups in panels
|
|
|
|
//
|
|
|
|
// By default, space out list group content from panel headings to account for
|
|
|
|
// any kind of custom content between the two.
|
2013-08-02 17:57:19 -07:00
|
|
|
|
2013-08-11 15:01:16 -07:00
|
|
|
.panel {
|
2013-08-15 18:58:02 -07:00
|
|
|
> .list-group {
|
2013-08-12 23:36:25 -07:00
|
|
|
margin-bottom: 0;
|
2014-02-08 17:29:10 -08:00
|
|
|
|
2013-08-02 17:57:19 -07:00
|
|
|
.list-group-item {
|
|
|
|
border-width: 1px 0;
|
2014-01-19 06:43:57 +09:00
|
|
|
border-radius: 0;
|
2013-08-02 17:57:19 -07:00
|
|
|
}
|
2014-02-08 17:29:10 -08:00
|
|
|
|
2014-01-19 06:43:57 +09:00
|
|
|
// Add border top radius for first one
|
|
|
|
&:first-child {
|
|
|
|
.list-group-item:first-child {
|
2014-02-08 17:29:10 -08:00
|
|
|
border-top: 0;
|
2014-01-19 06:43:57 +09:00
|
|
|
.border-top-radius((@panel-border-radius - 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Add border bottom radius for last one
|
|
|
|
&:last-child {
|
|
|
|
.list-group-item:last-child {
|
2014-02-08 17:29:10 -08:00
|
|
|
border-bottom: 0;
|
2014-01-19 06:43:57 +09:00
|
|
|
.border-bottom-radius((@panel-border-radius - 1));
|
|
|
|
}
|
|
|
|
}
|
2013-08-02 17:57:19 -07:00
|
|
|
}
|
2013-03-30 14:15:18 -07:00
|
|
|
}
|
2013-08-11 15:01:16 -07:00
|
|
|
// Collapse space between when there's no additional content.
|
|
|
|
.panel-heading + .list-group {
|
|
|
|
.list-group-item:first-child {
|
|
|
|
border-top-width: 0;
|
|
|
|
}
|
|
|
|
}
|
2014-06-03 22:48:36 -04:00
|
|
|
.list-group + .panel-footer {
|
|
|
|
border-top-width: 0;
|
|
|
|
}
|
2013-08-18 11:08:20 -07:00
|
|
|
|
|
|
|
// Tables in panels
|
|
|
|
//
|
|
|
|
// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and
|
|
|
|
// watch it go full width.
|
|
|
|
|
|
|
|
.panel {
|
2013-09-11 23:11:18 -07:00
|
|
|
> .table,
|
2014-06-08 14:08:06 -07:00
|
|
|
> .table-responsive > .table,
|
|
|
|
> .panel-collapse > .table {
|
2013-08-18 11:08:20 -07:00
|
|
|
margin-bottom: 0;
|
2014-01-19 06:43:57 +09:00
|
|
|
}
|
|
|
|
// Add border top radius for first one
|
|
|
|
> .table:first-child,
|
|
|
|
> .table-responsive:first-child > .table:first-child {
|
2014-01-30 21:49:37 -08:00
|
|
|
.border-top-radius((@panel-border-radius - 1));
|
2014-02-08 17:29:10 -08:00
|
|
|
|
2014-01-19 06:43:57 +09:00
|
|
|
> 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 {
|
2014-01-30 21:49:37 -08:00
|
|
|
.border-bottom-radius((@panel-border-radius - 1));
|
2014-02-08 17:29:10 -08:00
|
|
|
|
2013-12-23 16:07:55 -08:00
|
|
|
> 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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-18 11:08:20 -07:00
|
|
|
}
|
2013-09-11 23:11:18 -07:00
|
|
|
> .panel-body + .table,
|
|
|
|
> .panel-body + .table-responsive {
|
2013-08-18 11:08:20 -07:00
|
|
|
border-top: 1px solid @table-border-color;
|
|
|
|
}
|
2014-01-23 22:52:26 -06:00
|
|
|
> .table > tbody:first-child > tr:first-child th,
|
|
|
|
> .table > tbody:first-child > tr:first-child td {
|
2013-11-28 12:49:51 -08:00
|
|
|
border-top: 0;
|
|
|
|
}
|
2013-09-11 23:11:18 -07:00
|
|
|
> .table-bordered,
|
|
|
|
> .table-responsive > .table-bordered {
|
2013-09-05 15:10:56 -07:00
|
|
|
border: 0;
|
2013-09-05 15:54:18 -04:00
|
|
|
> thead,
|
|
|
|
> tbody,
|
|
|
|
> tfoot {
|
|
|
|
> tr {
|
|
|
|
> th:first-child,
|
|
|
|
> td:first-child {
|
2013-09-05 15:10:56 -07:00
|
|
|
border-left: 0;
|
2013-09-05 15:54:18 -04:00
|
|
|
}
|
|
|
|
> th:last-child,
|
|
|
|
> td:last-child {
|
2013-09-05 15:10:56 -07:00
|
|
|
border-right: 0;
|
|
|
|
}
|
2014-02-07 02:38:01 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
> thead,
|
|
|
|
> tbody {
|
|
|
|
> tr:first-child {
|
|
|
|
> td,
|
|
|
|
> th {
|
|
|
|
border-bottom: 0;
|
2014-01-19 06:43:57 +09:00
|
|
|
}
|
2014-02-07 02:38:01 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
> tbody,
|
|
|
|
> tfoot {
|
|
|
|
> tr:last-child {
|
|
|
|
> td,
|
|
|
|
> th {
|
2013-09-05 15:10:56 -07:00
|
|
|
border-bottom: 0;
|
2013-09-05 15:54:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-04 21:13:33 -08:00
|
|
|
> .table-responsive {
|
|
|
|
border: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-08-18 11:08:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-12 23:36:25 -07:00
|
|
|
// Collapsable panels (aka, accordion)
|
|
|
|
//
|
|
|
|
// Wrap a series of panels in `.panel-group` to turn them into an accordion with
|
|
|
|
// the help of our collapse JavaScript plugin.
|
|
|
|
|
|
|
|
.panel-group {
|
2014-01-10 18:56:44 -08:00
|
|
|
margin-bottom: @line-height-computed;
|
|
|
|
|
2013-08-12 23:36:25 -07:00
|
|
|
// Tighten up margin so it's only between panels
|
|
|
|
.panel {
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-radius: @panel-border-radius;
|
|
|
|
+ .panel {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading {
|
|
|
|
border-bottom: 0;
|
2014-06-04 15:20:36 -07:00
|
|
|
+ .panel-collapse > .panel-body {
|
2013-08-18 19:40:57 -07:00
|
|
|
border-top: 1px solid @panel-inner-border;
|
2013-08-12 23:36:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.panel-footer {
|
|
|
|
border-top: 0;
|
|
|
|
+ .panel-collapse .panel-body {
|
2013-08-18 19:40:57 -07:00
|
|
|
border-bottom: 1px solid @panel-inner-border;
|
2013-08-12 23:36:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-30 14:15:18 -07:00
|
|
|
// Contextual variations
|
2013-08-18 19:40:57 -07:00
|
|
|
.panel-default {
|
|
|
|
.panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);
|
|
|
|
}
|
2013-03-31 22:22:52 -07:00
|
|
|
.panel-primary {
|
2013-08-07 20:19:12 +02:00
|
|
|
.panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);
|
2013-03-31 22:22:52 -07:00
|
|
|
}
|
2013-03-30 14:15:18 -07:00
|
|
|
.panel-success {
|
2013-08-07 20:19:12 +02:00
|
|
|
.panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);
|
2013-03-30 14:15:18 -07:00
|
|
|
}
|
2014-01-07 22:24:45 +01:00
|
|
|
.panel-info {
|
|
|
|
.panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);
|
|
|
|
}
|
2013-03-30 14:15:18 -07:00
|
|
|
.panel-warning {
|
2013-08-07 20:19:12 +02:00
|
|
|
.panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);
|
2013-03-30 14:15:18 -07:00
|
|
|
}
|
|
|
|
.panel-danger {
|
2013-08-07 20:19:12 +02:00
|
|
|
.panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);
|
2013-03-30 14:15:18 -07:00
|
|
|
}
|