Skip to content

Commit

Permalink
Merge branch 'release/2.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
jdelasoie committed May 8, 2019
2 parents 9904f0c + b8b391b commit 6aa57fa
Show file tree
Hide file tree
Showing 11 changed files with 5,192 additions and 2,929 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG

*2.0.3* (2019-05-08)
- 🛠 Fixes & other
- Fix breadcrumb x-scroll overflow (#383)
- Fix title for study plan (#383)
- Fix doc on font (#385)
- Update dependancies

*2.0.2* (2019-04-23)
- 🛠 Fixes & other
- Fix breadcrumb folding (#379)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.2
2.0.3
8 changes: 4 additions & 4 deletions assets/components/atoms/list/list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@

&:before {
content: '';
background: $red;
position: absolute;
top: 0.7rem;
right: calc(100% - 0.5rem);
font-size: 1.1rem;
line-height: $bullet-size;
position: absolute;
width: 6px;
height: 5px;
font-size: 1.1rem;
line-height: $bullet-size;
background: $red;
}
}

Expand Down
7 changes: 6 additions & 1 deletion assets/components/content-types/study-plan/study-plan.scss
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,17 @@
}
}

h4 {
h3, h4 {
grid-column: 1 / -1;
background-color: $body-bg;
margin-bottom: 0;
padding-bottom: $headings-margin-bottom;
}

.line-down + h3,
.line-down + h4 {
padding-top: 2em;
}

.first-line + .clear,
.line + .clear {
Expand Down
2 changes: 1 addition & 1 deletion assets/components/molecules/breadcrumb/breadcrumb.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

@include media-breakpoint-down(lg) {
//height: $mm-breadcrumbs-height;
overflow-x: scroll;
//overflow-x: scroll;
//white-space: nowrap;
margin: 0;
padding: $spacer * 0.64 0;
Expand Down
2 changes: 1 addition & 1 deletion assets/components/organisms/header/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
position: absolute;
top: 1em;
left: 0.8rem;
height: 6px;
width: 7px;
height: 6px;
background: $red;
opacity: 0;
transform: none;
Expand Down
6 changes: 4 additions & 2 deletions assets/config/bootstrap-variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,10 @@ $transition-collapse: height .35s ease !default;
// Font, line-height, and color for body text, headings, and more.

// stylelint-disable value-keyword-case
$font-family-sans-serif: "Open Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
// official font is Suisse Int'l, but the license only allow to host
// on a epfl domain, so we set it to Arial, the official fallback
$font-family-sans-serif: Arial, sans-serif, !default;
$font-family-monospace: monospace !default;
$font-family-base: $font-family-sans-serif !default;
// stylelint-enable value-keyword-case

Expand Down
8 changes: 4 additions & 4 deletions assets/config/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -320,10 +320,10 @@
"urlen": "https://www.epfl.ch/education/continuing-education/"
},
{
"namefr": "Mobilité",
"urlfr": "https://www.epfl.ch/education/mobility/fr/mobilite/",
"nameen": "Mobility",
"urlen": "https://www.epfl.ch/education/mobility/en/mobility/"
"namefr": "International",
"urlfr": "https://www.epfl.ch/education/international/fr/mobilite/",
"nameen": "International",
"urlen": "https://www.epfl.ch/education/international/en/mobility/"
},
{
"namefr": "Admission",
Expand Down
2 changes: 1 addition & 1 deletion docs/design/typography.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h1 class="my-2">Typography</h1>

<p class="mt-5">
Element use the <strong><a href="https://fonts.google.com/specimen/Open+Sans">Open Sans</a></strong> font familly directly from <a href="https://fonts.google.com/">Google Fonts</a>.
Element use the <strong>Suisse Int'l</strong> (see <a href="https://www.epfl.ch/campus/services/communication/wp-content/uploads/2019/03/EPFL-brand-guidelines.pdf">Brand Guidelines</a>), has nine weights and is suitable for all uses, from titles to legends. If you do not have access or wish to use an authorysed alternative, you must use Arial. On office materials, Arial is used exclusively, because it is available as a system font on all computers, making it easy to share editable documents.
</p>

<div class="row my-5">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "epfl-elements",
"version": "2.0.2",
"version": "2.0.3",
"license": "MIT",
"main": "index.html",
"repository": {
Expand Down
Loading

0 comments on commit 6aa57fa

Please sign in to comment.