Skip to content

Commit c8ab0a5

Browse files
committed
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
2 parents 7d194a9 + e27e9d8 commit c8ab0a5

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ group :development, :test do
88
gem 'rouge', '~> 1.7.4'
99
gem 'sass', '~> 3.4.9'
1010
gem 'scss-lint', '~> 0.31'
11+
gem 'jekyll-redirect-from', '~> 0.8.0'
1112
end

docs/content/typography.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,13 @@ html {
255255

256256
@include media-breakpoint-up(md) {
257257
html {
258-
font-size: 28px;
258+
font-size: 20px;
259259
}
260260
}
261261

262262
@include media-breakpoint-up(lg) {
263263
html {
264-
font-size: 20px;
264+
font-size: 28px;
265265
}
266266
}
267267
{% endhighlight %}

docs/migration.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,20 @@ New to Bootstrap 4 is the Reboot, a new stylesheet that builds on Normalize with
9898

9999
Dropped entirely for the new card component.
100100

101+
#### Panels
102+
103+
- `.panel` to `.card`
104+
- `.panel-default` removed and no replacement
105+
- `.panel-heading` to `.card-header`
106+
- `.panel-title` to `.card-title`
107+
- `.panel-body` to `.card-block`
108+
- `.panel-footer` to `.card-footer`
109+
- `.panel-primary` to `.card-primary` and `.card-inverse`
110+
- `.panel-success` to `.card-success` and `.card-inverse`
111+
- `.panel-info` to `.card-info` and `.card-inverse`
112+
- `.panel-warning` to `.card-warning` and `.card-inverse`
113+
- `.panel-danger` to `.card-danger` and `.card-inverse`
114+
101115
### Carousel
102116

103117
- Renamed `.item` to `.carousel-item`.

scss/_dropdown.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@
2424
}
2525
}
2626

27+
.dropup {
28+
.dropdown-toggle {
29+
&:after {
30+
border-bottom: $caret-width solid;
31+
border-top: 0;
32+
}
33+
}
34+
}
35+
2736
// The dropdown menu (ul)
2837
.dropdown-menu {
2938
position: absolute;

0 commit comments

Comments
 (0)