2014-08-06 08:12:24 +08:00
|
|
|
//
|
|
|
|
// Base styles
|
|
|
|
//
|
|
|
|
|
|
|
|
.card {
|
|
|
|
position: relative;
|
2016-12-23 08:41:28 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-01-21 05:23:05 +08:00
|
|
|
min-width: 0; // See https://github.com/twbs/bootstrap/pull/22740#issuecomment-305868106
|
2017-06-02 05:21:33 +08:00
|
|
|
word-wrap: break-word;
|
2015-09-23 07:40:34 +08:00
|
|
|
background-color: $card-bg;
|
2017-07-01 06:28:50 +08:00
|
|
|
background-clip: border-box;
|
2016-05-09 04:24:45 +08:00
|
|
|
border: $card-border-width solid $card-border-color;
|
2016-11-29 05:23:59 +08:00
|
|
|
@include border-radius($card-border-radius);
|
2017-10-02 07:53:16 +08:00
|
|
|
|
|
|
|
> hr {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2017-10-04 19:11:00 +08:00
|
|
|
|
|
|
|
> .list-group:first-child {
|
|
|
|
.list-group-item:first-child {
|
|
|
|
@include border-top-radius($card-border-radius);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .list-group:last-child {
|
|
|
|
.list-group-item:last-child {
|
|
|
|
@include border-bottom-radius($card-border-radius);
|
|
|
|
}
|
|
|
|
}
|
2015-05-29 05:07:34 +08:00
|
|
|
}
|
|
|
|
|
2017-06-15 13:01:16 +08:00
|
|
|
.card-body {
|
2016-12-23 08:40:58 +08:00
|
|
|
// Enable `flex-grow: 1` for decks and groups so that card blocks take up
|
|
|
|
// as much space as possible, ensuring footers are aligned to the bottom.
|
|
|
|
flex: 1 1 auto;
|
2019-06-04 15:25:19 +08:00
|
|
|
// Workaround for the image size bug in IE
|
|
|
|
// See: https://github.com/twbs/bootstrap/pull/28855
|
|
|
|
min-height: 1px;
|
2015-05-29 05:07:34 +08:00
|
|
|
padding: $card-spacer-x;
|
2019-01-21 05:38:29 +08:00
|
|
|
color: $card-color;
|
2014-08-06 08:12:24 +08:00
|
|
|
}
|
2015-05-29 05:07:34 +08:00
|
|
|
|
2014-08-06 08:12:24 +08:00
|
|
|
.card-title {
|
2015-05-29 05:07:34 +08:00
|
|
|
margin-bottom: $card-spacer-y;
|
2014-08-06 08:12:24 +08:00
|
|
|
}
|
2015-05-29 05:07:34 +08:00
|
|
|
|
|
|
|
.card-subtitle {
|
2018-12-15 00:54:44 +08:00
|
|
|
margin-top: -$card-spacer-y / 2;
|
2014-08-06 08:12:24 +08:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2015-05-29 05:07:34 +08:00
|
|
|
|
|
|
|
.card-text:last-child {
|
|
|
|
margin-bottom: 0;
|
2014-08-06 08:12:24 +08:00
|
|
|
}
|
2015-05-29 05:07:34 +08:00
|
|
|
|
2015-01-01 17:05:01 +08:00
|
|
|
.card-link {
|
2018-09-18 07:10:07 +08:00
|
|
|
&:hover {
|
2015-01-01 17:05:01 +08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-08-06 08:12:24 +08:00
|
|
|
|
2015-05-29 05:07:34 +08:00
|
|
|
+ .card-link {
|
|
|
|
margin-left: $card-spacer-x;
|
|
|
|
}
|
|
|
|
}
|
2014-08-06 08:12:24 +08:00
|
|
|
|
2015-05-28 10:00:11 +08:00
|
|
|
//
|
2015-05-29 05:07:34 +08:00
|
|
|
// Optional textual caps
|
2015-05-28 10:00:11 +08:00
|
|
|
//
|
|
|
|
|
2015-05-29 05:07:34 +08:00
|
|
|
.card-header {
|
|
|
|
padding: $card-spacer-y $card-spacer-x;
|
2016-09-12 14:32:51 +08:00
|
|
|
margin-bottom: 0; // Removes the default margin-bottom of <hN>
|
2018-10-21 16:05:54 +08:00
|
|
|
color: $card-cap-color;
|
2015-05-29 16:59:54 +08:00
|
|
|
background-color: $card-cap-bg;
|
2016-05-12 11:22:07 +08:00
|
|
|
border-bottom: $card-border-width solid $card-border-color;
|
2015-05-28 10:00:11 +08:00
|
|
|
|
2015-05-29 05:07:34 +08:00
|
|
|
&:first-child {
|
2017-06-02 06:51:31 +08:00
|
|
|
@include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
|
2015-05-29 05:07:34 +08:00
|
|
|
}
|
2017-09-27 15:57:40 +08:00
|
|
|
|
|
|
|
+ .list-group {
|
|
|
|
.list-group-item:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
}
|
2015-05-28 10:00:11 +08:00
|
|
|
}
|
|
|
|
|
2015-05-29 05:07:34 +08:00
|
|
|
.card-footer {
|
|
|
|
padding: $card-spacer-y $card-spacer-x;
|
2015-05-29 16:59:54 +08:00
|
|
|
background-color: $card-cap-bg;
|
2016-05-12 11:22:07 +08:00
|
|
|
border-top: $card-border-width solid $card-border-color;
|
2015-05-29 05:07:34 +08:00
|
|
|
|
|
|
|
&:last-child {
|
2017-06-02 06:51:31 +08:00
|
|
|
@include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);
|
2015-05-29 05:07:34 +08:00
|
|
|
}
|
2015-05-28 10:00:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-18 10:55:24 +08:00
|
|
|
//
|
|
|
|
// Header navs
|
|
|
|
//
|
|
|
|
|
|
|
|
.card-header-tabs {
|
2018-12-15 00:54:44 +08:00
|
|
|
margin-right: -$card-spacer-x / 2;
|
2016-01-18 10:55:24 +08:00
|
|
|
margin-bottom: -$card-spacer-y;
|
2018-12-15 00:54:44 +08:00
|
|
|
margin-left: -$card-spacer-x / 2;
|
2016-01-18 10:55:24 +08:00
|
|
|
border-bottom: 0;
|
2019-05-30 00:38:36 +08:00
|
|
|
|
|
|
|
@if $nav-tabs-link-active-bg != $card-bg {
|
|
|
|
.nav-link.active {
|
|
|
|
background-color: $card-bg;
|
|
|
|
border-bottom-color: $card-bg;
|
|
|
|
}
|
|
|
|
}
|
2016-01-18 10:55:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-header-pills {
|
2018-12-15 00:54:44 +08:00
|
|
|
margin-right: -$card-spacer-x / 2;
|
|
|
|
margin-left: -$card-spacer-x / 2;
|
2016-01-18 10:55:24 +08:00
|
|
|
}
|
|
|
|
|
2014-08-06 08:12:24 +08:00
|
|
|
// Card image
|
|
|
|
.card-img-overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2016-02-17 15:25:18 +08:00
|
|
|
padding: $card-img-overlay-padding;
|
2014-08-06 08:12:24 +08:00
|
|
|
}
|
|
|
|
|
2017-03-28 13:52:24 +08:00
|
|
|
.card-img {
|
|
|
|
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
2017-06-02 06:51:31 +08:00
|
|
|
@include border-radius($card-inner-border-radius);
|
2017-03-28 13:52:24 +08:00
|
|
|
}
|
2014-08-06 08:12:24 +08:00
|
|
|
|
|
|
|
// Card image caps
|
|
|
|
.card-img-top {
|
2017-03-28 13:52:24 +08:00
|
|
|
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
2017-06-02 06:51:31 +08:00
|
|
|
@include border-top-radius($card-inner-border-radius);
|
2014-08-06 08:12:24 +08:00
|
|
|
}
|
2017-03-28 13:52:24 +08:00
|
|
|
|
2014-08-06 08:12:24 +08:00
|
|
|
.card-img-bottom {
|
2017-03-28 13:52:24 +08:00
|
|
|
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
2017-06-02 06:51:31 +08:00
|
|
|
@include border-bottom-radius($card-inner-border-radius);
|
2014-08-06 08:12:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-25 12:01:09 +08:00
|
|
|
// Card deck
|
2014-08-06 08:12:24 +08:00
|
|
|
|
2017-08-14 05:53:24 +08:00
|
|
|
.card-deck {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.card {
|
|
|
|
margin-bottom: $card-deck-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2016-12-22 12:26:17 +08:00
|
|
|
flex-flow: row wrap;
|
2017-03-28 13:53:39 +08:00
|
|
|
margin-right: -$card-deck-margin;
|
|
|
|
margin-left: -$card-deck-margin;
|
2016-12-22 12:26:17 +08:00
|
|
|
|
|
|
|
.card {
|
2015-09-07 00:36:19 +08:00
|
|
|
display: flex;
|
2018-04-02 19:55:58 +08:00
|
|
|
// Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
|
2017-06-08 03:43:22 +08:00
|
|
|
flex: 1 0 0%;
|
2016-12-22 12:26:17 +08:00
|
|
|
flex-direction: column;
|
2017-03-28 13:53:39 +08:00
|
|
|
margin-right: $card-deck-margin;
|
2017-08-14 05:53:24 +08:00
|
|
|
margin-bottom: 0; // Override the default
|
2017-03-28 13:53:39 +08:00
|
|
|
margin-left: $card-deck-margin;
|
2015-05-29 05:07:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-06 08:12:24 +08:00
|
|
|
|
2016-12-22 12:26:17 +08:00
|
|
|
|
2014-08-06 08:12:24 +08:00
|
|
|
//
|
|
|
|
// Card groups
|
|
|
|
//
|
|
|
|
|
2017-08-14 05:53:24 +08:00
|
|
|
.card-group {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2017-11-16 18:41:48 +08:00
|
|
|
// The child selector allows nested `.card` within `.card-group`
|
|
|
|
// to display properly.
|
|
|
|
> .card {
|
2017-08-14 05:53:24 +08:00
|
|
|
margin-bottom: $card-group-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2016-12-22 12:26:17 +08:00
|
|
|
flex-flow: row wrap;
|
2017-11-16 18:41:48 +08:00
|
|
|
// The child selector allows nested `.card` within `.card-group`
|
|
|
|
// to display properly.
|
|
|
|
> .card {
|
2018-04-02 19:55:58 +08:00
|
|
|
// Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
|
2017-06-08 03:43:22 +08:00
|
|
|
flex: 1 0 0%;
|
2017-08-17 06:45:21 +08:00
|
|
|
margin-bottom: 0;
|
2015-05-29 05:07:34 +08:00
|
|
|
|
2015-09-07 00:36:19 +08:00
|
|
|
+ .card {
|
|
|
|
margin-left: 0;
|
|
|
|
border-left: 0;
|
2015-05-29 05:07:34 +08:00
|
|
|
}
|
2015-09-07 00:36:19 +08:00
|
|
|
|
|
|
|
// Handle rounded corners
|
|
|
|
@if $enable-rounded {
|
2018-12-23 15:19:07 +08:00
|
|
|
&:not(:last-child) {
|
2015-11-13 14:02:35 +08:00
|
|
|
@include border-right-radius(0);
|
|
|
|
|
2017-10-23 03:18:03 +08:00
|
|
|
.card-img-top,
|
|
|
|
.card-header {
|
2018-12-23 15:11:11 +08:00
|
|
|
// stylelint-disable-next-line property-blacklist
|
2015-09-07 00:36:19 +08:00
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
2017-10-23 03:18:03 +08:00
|
|
|
.card-img-bottom,
|
|
|
|
.card-footer {
|
2018-12-23 15:11:11 +08:00
|
|
|
// stylelint-disable-next-line property-blacklist
|
2015-09-07 00:36:19 +08:00
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
2015-05-29 05:07:34 +08:00
|
|
|
}
|
2017-08-14 05:53:24 +08:00
|
|
|
|
2018-12-23 15:19:07 +08:00
|
|
|
&:not(:first-child) {
|
2015-11-13 14:02:35 +08:00
|
|
|
@include border-left-radius(0);
|
2015-11-13 16:17:25 +08:00
|
|
|
|
2017-10-23 03:18:03 +08:00
|
|
|
.card-img-top,
|
|
|
|
.card-header {
|
2018-12-23 15:11:11 +08:00
|
|
|
// stylelint-disable-next-line property-blacklist
|
2015-09-07 00:36:19 +08:00
|
|
|
border-top-left-radius: 0;
|
|
|
|
}
|
2017-10-23 03:18:03 +08:00
|
|
|
.card-img-bottom,
|
|
|
|
.card-footer {
|
2018-12-23 15:11:11 +08:00
|
|
|
// stylelint-disable-next-line property-blacklist
|
2015-09-07 00:36:19 +08:00
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
2015-05-29 05:07:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-06 08:12:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-05 20:18:16 +08:00
|
|
|
//
|
|
|
|
// Accordion
|
|
|
|
//
|
|
|
|
|
|
|
|
.accordion {
|
2019-01-07 09:06:37 +08:00
|
|
|
> .card {
|
2018-10-21 14:49:05 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&:not(:first-of-type) {
|
|
|
|
.card-header:first-child {
|
2018-12-23 15:11:11 +08:00
|
|
|
@include border-radius(0);
|
2018-10-21 14:49:05 +08:00
|
|
|
}
|
2017-09-05 20:18:16 +08:00
|
|
|
|
2018-10-21 14:49:05 +08:00
|
|
|
&:not(:last-of-type) {
|
|
|
|
border-bottom: 0;
|
2018-12-23 15:11:11 +08:00
|
|
|
@include border-radius(0);
|
2018-10-21 14:49:05 +08:00
|
|
|
}
|
2017-09-05 20:18:16 +08:00
|
|
|
}
|
|
|
|
|
2019-02-27 04:06:46 +08:00
|
|
|
&:first-of-type:not(:last-of-type) {
|
2018-10-21 14:49:05 +08:00
|
|
|
border-bottom: 0;
|
2018-12-23 15:11:11 +08:00
|
|
|
@include border-bottom-radius(0);
|
2018-10-21 14:49:05 +08:00
|
|
|
}
|
2017-09-05 20:18:16 +08:00
|
|
|
|
2018-10-21 14:49:05 +08:00
|
|
|
&:last-of-type {
|
2018-12-23 15:11:11 +08:00
|
|
|
@include border-top-radius(0);
|
2018-10-21 14:49:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-header {
|
|
|
|
margin-bottom: -$card-border-width;
|
|
|
|
}
|
2017-09-05 20:18:16 +08:00
|
|
|
}
|
|
|
|
}
|