Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.

Commit 61c050c

Browse files
committed
Merge branch 'release/2.4.1'
2 parents 1e78095 + a435572 commit 61c050c

File tree

14 files changed

+25
-10
lines changed

14 files changed

+25
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ CHANGELOG
33

44
This changelog references the relevant changes and bug fixes.
55

6+
* 2.4.1 (2015-01-16)
7+
* #327 responsive adjustment
8+
* #264 add comment about carousel accessibility
9+
* #342 remove useless watch in gulp file set smaller max-width on title on screen-sm to avoid bug seen in #327
10+
611
* 2.4.0 (2015-01-05)
712
* #327 Anchor link for context information when placed at the bottom
813
* #319 [icons] Icon in download list are shown twice.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.0
1+
2.4.1

assets/pages/detail.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ <h2 id="br1" class="hidden">Breadcrumbs</h2>
416416
<div class="col-sm-8 col-md-9" id="content">
417417
<div class="row">
418418
<div class="col-md-8">
419-
<div class="visible-xs">
419+
<div class="visible-xs visible-sm">
420420
<p><a href="#context-sidebar" class="icon icon--before icon--root">Context sidebar</a></p>
421421
</div>
422422
<a href="#" onclick="window.print()" class="icon icon--before icon--print pull-right"></a>

assets/pages/forms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ <h2 id="br1" class="hidden">Breadcrumbs</h2>
419419

420420
<div class="col-md-8">
421421

422-
<div class="visible-xs">
422+
<div class="visible-xs visible-sm">
423423
<p><a href="#context-sidebar" class="icon icon--before icon--root">Context sidebar</a></p>
424424
</div>
425425

assets/pages/publications.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ <h2 id="br1" class="hidden">Breadcrumbs</h2>
416416
<div class="col-sm-8 col-md-9" id="content">
417417
<div class="row">
418418
<div class="col-md-8">
419-
<div class="visible-xs">
419+
<div class="visible-xs visible-sm">
420420
<p><a href="#context-sidebar" class="icon icon--before icon--root">Context sidebar</a></p>
421421
</div>
422422
<article>

assets/sass/components/carousel.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ In a rotating carousel a topic can be presented from different perspectives. The
2424
2525
The carousel consists of various information blocks, each of which contains a large image, an optional small image, a brief teaser headline, a text, and a "more" link.
2626
27+
**Accessibility issue**
28+
29+
The carousel component is not totally compliant with accessibility standards. If you need to be compliant, please consider other options for presenting your content.
30+
2731
```html_example
2832
<div class="row">
2933
<div class="col-sm-6 col-sm-offset-3">

assets/sass/layout/brand.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ The logo is a CD element. Its use is mandatory, and its representation may not b
6767
@media only screen and (max-width: $screen-md-max) {
6868
font-size: 0.85em;
6969
}
70+
@media only screen and (max-width: $screen-sm-max) {
71+
max-width: 210px;
72+
}
7073
line-height: 1.3;
7174
margin: 0;
7275
padding-left: 2.5em;

build/css/admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ gulp.task('serve', ['styles'], function () {
194194
},
195195
open: false
196196
});
197-
gulp.watch(['**/*.html'], reload);
198197
gulp.watch(['assets/sass/**/*.scss'], function() {
199198
runSequence('styles', 'print', 'styleguide', reload);
200199
});

styleguide/content_modules_-_teaser.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8642,6 +8642,10 @@ <h1 id="d-carousel">Carousel</h1>
86428642
<p>In a rotating carousel a topic can be presented from different perspectives. The various articles on the topic alternate automatically.</p>
86438643

86448644
<p>The carousel consists of various information blocks, each of which contains a large image, an optional small image, a brief teaser headline, a text, and a &quot;more&quot; link.</p>
8645+
8646+
<p><strong>Accessibility issue</strong></p>
8647+
8648+
<p>The carousel component is not totally compliant with accessibility standards. If you need to be compliant, please consider other options for presenting your content.</p>
86458649
<div class="codeExample"><div class="exampleOutput"><div class="row">
86468650
<div class="col-sm-6 col-sm-offset-3">
86478651

0 commit comments

Comments
 (0)