2014-08-05 17:12:24 -07:00
|
|
|
//
|
|
|
|
// Base styles
|
|
|
|
//
|
|
|
|
|
|
|
|
.card {
|
|
|
|
position: relative;
|
2016-12-22 16:41:28 -08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-01-20 22:23:05 +01:00
|
|
|
min-width: 0; // See https://github.com/twbs/bootstrap/pull/22740#issuecomment-305868106
|
2019-10-03 09:21:40 +02:00
|
|
|
height: $card-height;
|
2017-06-01 14:21:33 -07:00
|
|
|
word-wrap: break-word;
|
2015-09-23 09:40:34 +10:00
|
|
|
background-color: $card-bg;
|
2017-06-30 15:28:50 -07:00
|
|
|
background-clip: border-box;
|
2016-05-08 13:24:45 -07:00
|
|
|
border: $card-border-width solid $card-border-color;
|
2016-11-28 14:23:59 -07:00
|
|
|
@include border-radius($card-border-radius);
|
2017-10-02 05:23:16 +05:30
|
|
|
|
|
|
|
> hr {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2017-10-04 14:11:00 +03:00
|
|
|
|
2020-04-02 07:10:11 +02:00
|
|
|
> .list-group {
|
|
|
|
border-top: inherit;
|
|
|
|
border-bottom: inherit;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top-width: 0;
|
|
|
|
@include border-top-radius($card-inner-border-radius);
|
2017-10-04 14:11:00 +03:00
|
|
|
}
|
|
|
|
|
2020-04-02 07:10:11 +02:00
|
|
|
&:last-child {
|
|
|
|
border-bottom-width: 0;
|
|
|
|
@include border-bottom-radius($card-inner-border-radius);
|
2017-10-04 14:11:00 +03:00
|
|
|
}
|
|
|
|
}
|
2020-05-14 10:48:46 -07:00
|
|
|
|
|
|
|
// Due to specificity of the above selector (`.card > .list-group`), we must
|
|
|
|
// use a child selector here to prevent double borders.
|
|
|
|
> .card-header + .list-group,
|
|
|
|
> .list-group + .card-footer {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
2015-05-28 14:07:34 -07:00
|
|
|
}
|
|
|
|
|
2017-06-14 22:01:16 -07:00
|
|
|
.card-body {
|
2016-12-22 16: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-12-14 05:35:17 -08:00
|
|
|
padding: $card-spacer-y $card-spacer-x;
|
2019-01-20 22:38:29 +01:00
|
|
|
color: $card-color;
|
2014-08-05 17:12:24 -07:00
|
|
|
}
|
2015-05-28 14:07:34 -07:00
|
|
|
|
2014-08-05 17:12:24 -07:00
|
|
|
.card-title {
|
2019-12-14 05:35:17 -08:00
|
|
|
margin-bottom: $card-title-spacer-y;
|
2014-08-05 17:12:24 -07:00
|
|
|
}
|
2015-05-28 14:07:34 -07:00
|
|
|
|
|
|
|
.card-subtitle {
|
2021-06-14 09:35:30 -07:00
|
|
|
margin-top: -$card-title-spacer-y * .5;
|
2014-08-05 17:12:24 -07:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2015-05-28 14:07:34 -07:00
|
|
|
|
|
|
|
.card-text:last-child {
|
|
|
|
margin-bottom: 0;
|
2014-08-05 17:12:24 -07:00
|
|
|
}
|
2015-05-28 14:07:34 -07:00
|
|
|
|
2015-01-01 01:05:01 -08:00
|
|
|
.card-link {
|
2018-09-18 02:10:07 +03:00
|
|
|
&:hover {
|
2015-01-01 01:05:01 -08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-08-05 17:12:24 -07:00
|
|
|
|
2015-05-28 14:07:34 -07:00
|
|
|
+ .card-link {
|
2021-02-22 07:49:38 +01:00
|
|
|
margin-left: $card-spacer-x;
|
2015-05-28 14:07:34 -07:00
|
|
|
}
|
|
|
|
}
|
2014-08-05 17:12:24 -07:00
|
|
|
|
2015-05-27 19:00:11 -07:00
|
|
|
//
|
2015-05-28 14:07:34 -07:00
|
|
|
// Optional textual caps
|
2015-05-27 19:00:11 -07:00
|
|
|
//
|
|
|
|
|
2015-05-28 14:07:34 -07:00
|
|
|
.card-header {
|
2019-12-14 05:35:17 -08:00
|
|
|
padding: $card-cap-padding-y $card-cap-padding-x;
|
2016-09-12 08:32:51 +02:00
|
|
|
margin-bottom: 0; // Removes the default margin-bottom of <hN>
|
2018-10-21 04:05:54 -04:00
|
|
|
color: $card-cap-color;
|
2015-05-29 01:59:54 -07:00
|
|
|
background-color: $card-cap-bg;
|
2016-05-11 20:22:07 -07:00
|
|
|
border-bottom: $card-border-width solid $card-border-color;
|
2015-05-27 19:00:11 -07:00
|
|
|
|
2015-05-28 14:07:34 -07:00
|
|
|
&:first-child {
|
2017-06-01 15:51:31 -07:00
|
|
|
@include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
|
2015-05-28 14:07:34 -07:00
|
|
|
}
|
2015-05-27 19:00:11 -07:00
|
|
|
}
|
|
|
|
|
2015-05-28 14:07:34 -07:00
|
|
|
.card-footer {
|
2019-12-14 05:35:17 -08:00
|
|
|
padding: $card-cap-padding-y $card-cap-padding-x;
|
2020-04-06 15:59:29 +03:00
|
|
|
color: $card-cap-color;
|
2015-05-29 01:59:54 -07:00
|
|
|
background-color: $card-cap-bg;
|
2016-05-11 20:22:07 -07:00
|
|
|
border-top: $card-border-width solid $card-border-color;
|
2015-05-28 14:07:34 -07:00
|
|
|
|
|
|
|
&:last-child {
|
2017-06-01 15:51:31 -07:00
|
|
|
@include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);
|
2015-05-28 14:07:34 -07:00
|
|
|
}
|
2015-05-27 19:00:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-17 18:55:24 -08:00
|
|
|
//
|
|
|
|
// Header navs
|
|
|
|
//
|
|
|
|
|
|
|
|
.card-header-tabs {
|
2021-06-14 09:35:30 -07:00
|
|
|
margin-right: -$card-cap-padding-x * .5;
|
2019-12-14 05:35:17 -08:00
|
|
|
margin-bottom: -$card-cap-padding-y;
|
2021-06-14 09:35:30 -07:00
|
|
|
margin-left: -$card-cap-padding-x * .5;
|
2016-01-17 18:55:24 -08:00
|
|
|
border-bottom: 0;
|
2019-05-29 12:38:36 -04:00
|
|
|
|
|
|
|
@if $nav-tabs-link-active-bg != $card-bg {
|
|
|
|
.nav-link.active {
|
|
|
|
background-color: $card-bg;
|
|
|
|
border-bottom-color: $card-bg;
|
|
|
|
}
|
|
|
|
}
|
2016-01-17 18:55:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-header-pills {
|
2021-06-14 09:35:30 -07:00
|
|
|
margin-right: -$card-cap-padding-x * .5;
|
|
|
|
margin-left: -$card-cap-padding-x * .5;
|
2016-01-17 18:55:24 -08:00
|
|
|
}
|
|
|
|
|
2014-08-05 17:12:24 -07:00
|
|
|
// Card image
|
|
|
|
.card-img-overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2016-02-16 23:25:18 -08:00
|
|
|
padding: $card-img-overlay-padding;
|
2020-05-15 05:42:31 -07:00
|
|
|
@include border-radius($card-inner-border-radius);
|
2014-08-05 17:12:24 -07:00
|
|
|
}
|
|
|
|
|
2019-09-12 23:30:47 +09:00
|
|
|
.card-img,
|
|
|
|
.card-img-top,
|
|
|
|
.card-img-bottom {
|
2017-03-27 22:52:24 -07:00
|
|
|
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
|
|
|
}
|
2014-08-05 17:12:24 -07:00
|
|
|
|
2019-09-12 23:30:47 +09:00
|
|
|
.card-img,
|
2014-08-05 17:12:24 -07:00
|
|
|
.card-img-top {
|
2017-06-01 15:51:31 -07:00
|
|
|
@include border-top-radius($card-inner-border-radius);
|
2014-08-05 17:12:24 -07:00
|
|
|
}
|
2017-03-27 22:52:24 -07:00
|
|
|
|
2019-09-12 23:30:47 +09:00
|
|
|
.card-img,
|
2014-08-05 17:12:24 -07:00
|
|
|
.card-img-bottom {
|
2017-06-01 15:51:31 -07:00
|
|
|
@include border-bottom-radius($card-inner-border-radius);
|
2014-08-05 17:12:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Card groups
|
|
|
|
//
|
|
|
|
|
2017-08-13 14:53:24 -07:00
|
|
|
.card-group {
|
2017-11-16 07:41:48 -03:00
|
|
|
// The child selector allows nested `.card` within `.card-group`
|
|
|
|
// to display properly.
|
|
|
|
> .card {
|
2017-08-13 14:53:24 -07:00
|
|
|
margin-bottom: $card-group-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2019-04-25 21:10:55 +02:00
|
|
|
display: flex;
|
2016-12-21 20:26:17 -08:00
|
|
|
flex-flow: row wrap;
|
2017-11-16 07:41:48 -03:00
|
|
|
// The child selector allows nested `.card` within `.card-group`
|
|
|
|
// to display properly.
|
|
|
|
> .card {
|
2018-04-02 14:55:58 +03:00
|
|
|
// Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
|
2017-06-07 15:43:22 -04:00
|
|
|
flex: 1 0 0%;
|
2017-08-17 00:45:21 +02:00
|
|
|
margin-bottom: 0;
|
2015-05-28 14:07:34 -07:00
|
|
|
|
2015-09-06 09:36:19 -07:00
|
|
|
+ .card {
|
|
|
|
margin-left: 0;
|
|
|
|
border-left: 0;
|
2015-05-28 14:07:34 -07:00
|
|
|
}
|
2015-09-06 09:36:19 -07:00
|
|
|
|
|
|
|
// Handle rounded corners
|
|
|
|
@if $enable-rounded {
|
2018-12-23 08:19:07 +01:00
|
|
|
&:not(:last-child) {
|
2020-06-26 17:06:20 +03:00
|
|
|
@include border-end-radius(0);
|
2015-11-12 22:02:35 -08:00
|
|
|
|
2017-10-22 21:18:03 +02:00
|
|
|
.card-img-top,
|
|
|
|
.card-header {
|
2020-09-28 14:57:48 +03:00
|
|
|
// stylelint-disable-next-line property-disallowed-list
|
2015-09-06 09:36:19 -07:00
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
2017-10-22 21:18:03 +02:00
|
|
|
.card-img-bottom,
|
|
|
|
.card-footer {
|
2020-09-28 14:57:48 +03:00
|
|
|
// stylelint-disable-next-line property-disallowed-list
|
2015-09-06 09:36:19 -07:00
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
2015-05-28 14:07:34 -07:00
|
|
|
}
|
2017-08-13 14:53:24 -07:00
|
|
|
|
2018-12-23 08:19:07 +01:00
|
|
|
&:not(:first-child) {
|
2020-06-26 17:06:20 +03:00
|
|
|
@include border-start-radius(0);
|
2015-11-13 00:17:25 -08:00
|
|
|
|
2017-10-22 21:18:03 +02:00
|
|
|
.card-img-top,
|
|
|
|
.card-header {
|
2020-09-28 14:57:48 +03:00
|
|
|
// stylelint-disable-next-line property-disallowed-list
|
2015-09-06 09:36:19 -07:00
|
|
|
border-top-left-radius: 0;
|
|
|
|
}
|
2017-10-22 21:18:03 +02:00
|
|
|
.card-img-bottom,
|
|
|
|
.card-footer {
|
2020-09-28 14:57:48 +03:00
|
|
|
// stylelint-disable-next-line property-disallowed-list
|
2015-09-06 09:36:19 -07:00
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
2015-05-28 14:07:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-05 17:12:24 -07:00
|
|
|
}
|
|
|
|
}
|