2013-03-30 17:15:18 -04:00
|
|
|
//
|
|
|
|
// Panels
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Base class
|
|
|
|
.panel {
|
2013-08-13 02:36:25 -04:00
|
|
|
margin-bottom: @line-height-computed;
|
2013-03-30 17:15:18 -04:00
|
|
|
background-color: @panel-bg;
|
2013-08-18 22:40:57 -04:00
|
|
|
border: 1px solid transparent;
|
2013-03-30 17:15:18 -04:00
|
|
|
border-radius: @panel-border-radius;
|
|
|
|
.box-shadow(0 1px 1px rgba(0,0,0,.05));
|
2013-08-11 18:01:16 -04:00
|
|
|
}
|
|
|
|
|
2013-08-13 02:36:25 -04:00
|
|
|
// Panel contents
|
|
|
|
.panel-body {
|
|
|
|
padding: 15px;
|
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-09 02:18:28 -05:00
|
|
|
&:extend(.clearfix all);
|
2013-08-13 02:36:25 -04:00
|
|
|
}
|
|
|
|
|
2013-08-18 14:08:20 -04:00
|
|
|
|
2013-08-11 18:01:16 -04: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 20:57:19 -04:00
|
|
|
|
2013-08-11 18:01:16 -04:00
|
|
|
.panel {
|
2013-08-15 21:58:02 -04:00
|
|
|
> .list-group {
|
2013-08-13 02:36:25 -04:00
|
|
|
margin-bottom: 0;
|
2013-08-02 20:57:19 -04:00
|
|
|
|
|
|
|
.list-group-item {
|
|
|
|
border-width: 1px 0;
|
|
|
|
|
|
|
|
// Remove border radius for top one
|
|
|
|
&:first-child {
|
|
|
|
.border-top-radius(0);
|
|
|
|
}
|
|
|
|
// But keep it for the last one
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-30 17:15:18 -04:00
|
|
|
}
|
2013-08-11 18:01:16 -04:00
|
|
|
// Collapse space between when there's no additional content.
|
|
|
|
.panel-heading + .list-group {
|
|
|
|
.list-group-item:first-child {
|
|
|
|
border-top-width: 0;
|
|
|
|
}
|
|
|
|
}
|
2013-03-30 17:15:18 -04:00
|
|
|
|
2013-08-18 14:08:20 -04: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-12 02:11:18 -04:00
|
|
|
> .table,
|
2013-11-25 18:19:11 -05:00
|
|
|
> .table-responsive > .table {
|
2013-08-18 14:08:20 -04:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-09-12 02:11:18 -04:00
|
|
|
> .panel-body + .table,
|
|
|
|
> .panel-body + .table-responsive {
|
2013-08-18 14:08:20 -04:00
|
|
|
border-top: 1px solid @table-border-color;
|
|
|
|
}
|
2013-11-28 15:49:51 -05:00
|
|
|
> .table > tbody:first-child th,
|
|
|
|
> .table > tbody:first-child td {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
2013-09-12 02:11:18 -04:00
|
|
|
> .table-bordered,
|
|
|
|
> .table-responsive > .table-bordered {
|
2013-09-05 18:10:56 -04:00
|
|
|
border: 0;
|
2013-09-05 15:54:18 -04:00
|
|
|
> thead,
|
|
|
|
> tbody,
|
|
|
|
> tfoot {
|
|
|
|
> tr {
|
|
|
|
> th:first-child,
|
|
|
|
> td:first-child {
|
2013-09-05 18:10:56 -04:00
|
|
|
border-left: 0;
|
2013-09-05 15:54:18 -04:00
|
|
|
}
|
|
|
|
> th:last-child,
|
|
|
|
> td:last-child {
|
2013-09-05 18:10:56 -04:00
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child > th,
|
|
|
|
&:last-child > td {
|
|
|
|
border-bottom: 0;
|
2013-09-05 15:54:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-05 00:13:33 -05:00
|
|
|
> .table-responsive {
|
|
|
|
border: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2013-08-18 14:08:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-30 17:15:18 -04:00
|
|
|
// Optional heading
|
|
|
|
.panel-heading {
|
|
|
|
padding: 10px 15px;
|
2013-08-18 22:40:57 -04:00
|
|
|
border-bottom: 1px solid transparent;
|
2013-08-09 03:24:38 -04:00
|
|
|
.border-top-radius(@panel-border-radius - 1);
|
2013-10-21 01:56:29 -04:00
|
|
|
|
2013-11-01 21:19:11 -04:00
|
|
|
> .dropdown .dropdown-toggle {
|
2013-09-16 05:38:26 -04:00
|
|
|
color: inherit;
|
|
|
|
}
|
2013-03-30 17:15:18 -04:00
|
|
|
}
|
|
|
|
|
2013-07-26 00:16:43 -04:00
|
|
|
// Within heading, strip any `h*` tag of it's default margins for spacing.
|
|
|
|
.panel-title {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
2013-08-17 16:18:10 -04:00
|
|
|
font-size: ceil((@font-size-base * 1.125));
|
2013-11-30 17:53:54 -05:00
|
|
|
color: inherit;
|
|
|
|
|
2013-08-05 02:44:02 -04:00
|
|
|
> a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2013-07-26 00:16:43 -04:00
|
|
|
}
|
|
|
|
|
2013-05-14 21:55:37 -04:00
|
|
|
// Optional footer (stays gray in every modifier class)
|
|
|
|
.panel-footer {
|
|
|
|
padding: 10px 15px;
|
|
|
|
background-color: @panel-footer-bg;
|
2013-08-18 22:40:57 -04:00
|
|
|
border-top: 1px solid @panel-inner-border;
|
2013-08-09 03:24:38 -04:00
|
|
|
.border-bottom-radius(@panel-border-radius - 1);
|
2013-05-14 21:55:37 -04:00
|
|
|
}
|
|
|
|
|
2013-08-13 02:36:25 -04: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 {
|
|
|
|
// Tighten up margin so it's only between panels
|
|
|
|
.panel {
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-radius: @panel-border-radius;
|
|
|
|
overflow: hidden; // crop contents when collapsed
|
|
|
|
+ .panel {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading {
|
|
|
|
border-bottom: 0;
|
|
|
|
+ .panel-collapse .panel-body {
|
2013-08-18 22:40:57 -04:00
|
|
|
border-top: 1px solid @panel-inner-border;
|
2013-08-13 02:36:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.panel-footer {
|
|
|
|
border-top: 0;
|
|
|
|
+ .panel-collapse .panel-body {
|
2013-08-18 22:40:57 -04:00
|
|
|
border-bottom: 1px solid @panel-inner-border;
|
2013-08-13 02:36:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-30 17:15:18 -04:00
|
|
|
// Contextual variations
|
2013-08-18 22:40:57 -04:00
|
|
|
.panel-default {
|
|
|
|
.panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);
|
|
|
|
}
|
2013-04-01 01:22:52 -04:00
|
|
|
.panel-primary {
|
2013-08-07 14:19:12 -04:00
|
|
|
.panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);
|
2013-04-01 01:22:52 -04:00
|
|
|
}
|
2013-03-30 17:15:18 -04:00
|
|
|
.panel-success {
|
2013-08-07 14:19:12 -04:00
|
|
|
.panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);
|
2013-03-30 17:15:18 -04:00
|
|
|
}
|
|
|
|
.panel-warning {
|
2013-08-07 14:19:12 -04:00
|
|
|
.panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);
|
2013-03-30 17:15:18 -04:00
|
|
|
}
|
|
|
|
.panel-danger {
|
2013-08-07 14:19:12 -04:00
|
|
|
.panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);
|
2013-03-30 17:15:18 -04:00
|
|
|
}
|
|
|
|
.panel-info {
|
2013-08-07 14:19:12 -04:00
|
|
|
.panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);
|
2013-03-30 17:15:18 -04:00
|
|
|
}
|