Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2017-06-06 05:39:11 +0300
committerGleb Mazovetskiy <glex.spb@gmail.com>2017-06-06 05:39:11 +0300
commit7cdeca9a0e8db3bb7548d9fa5bdaad9b644fca32 (patch)
treec9c92874d55cfe2254ee837b083948afaae994ab /assets/stylesheets/bootstrap/_card.scss
parente92f95fb42ab938fd6f4d59e7b3b243e297ef58f (diff)
rake update[v4-dev]
Diffstat (limited to 'assets/stylesheets/bootstrap/_card.scss')
-rw-r--r--assets/stylesheets/bootstrap/_card.scss13
1 files changed, 7 insertions, 6 deletions
diff --git a/assets/stylesheets/bootstrap/_card.scss b/assets/stylesheets/bootstrap/_card.scss
index 7be2aaf..e45af7b 100644
--- a/assets/stylesheets/bootstrap/_card.scss
+++ b/assets/stylesheets/bootstrap/_card.scss
@@ -6,6 +6,8 @@
position: relative;
display: flex;
flex-direction: column;
+ min-width: 0;
+ word-wrap: break-word;
background-color: $card-bg;
border: $card-border-width solid $card-border-color;
@include border-radius($card-border-radius);
@@ -20,7 +22,6 @@
.card-title {
margin-bottom: $card-spacer-y;
- word-break: break-all;
}
.card-subtitle {
@@ -68,7 +69,7 @@
border-bottom: $card-border-width solid $card-border-color;
&:first-child {
- @include border-radius($card-border-radius-inner $card-border-radius-inner 0 0);
+ @include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
}
}
@@ -78,7 +79,7 @@
border-top: $card-border-width solid $card-border-color;
&:last-child {
- @include border-radius(0 0 $card-border-radius-inner $card-border-radius-inner);
+ @include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);
}
}
@@ -170,18 +171,18 @@
.card-img {
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
- @include border-radius($card-border-radius-inner);
+ @include border-radius($card-inner-border-radius);
}
// Card image caps
.card-img-top {
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
- @include border-top-radius($card-border-radius-inner);
+ @include border-top-radius($card-inner-border-radius);
}
.card-img-bottom {
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
- @include border-bottom-radius($card-border-radius-inner);
+ @include border-bottom-radius($card-inner-border-radius);
}